@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; }
}

// ----------------------------------------------
*/
.clearfix:after, .form-field:after, .wrapper:after, .header-sticky-wrapper:after, .product-view .product-shop .product-info-line:after, .product-view .sharing-links:after, .product-collateral-wrapper:after, .store-locator-view-detail:after, .tabs .ui-tabs-panel:after, .md-content-wrapper:after, .opc-col-wrapper:after, .opc-address-form-billing-content:after, .opc-address-form-billing-content form:after, .opc-address-form-billing:after,
.opc-address-form-shipping:after, .discount-form-wrapper .field-wrapper:after, .success-page-top:after, .post-list:after {
  content: '';
  display: table;
  clear: both;
}

/*! 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 {
  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;
}

@font-face {
  font-family: 'Icons';
  src: url("https://skin.add.ua/skin/frontend/add/default/fonts/icomoon/icomoon.eot?");
  src: url("https://skin.add.ua/skin/frontend/add/default/fonts/icomoon/icomoon.eot?#iefix") format("embedded-opentype"), url("https://skin.add.ua/skin/frontend/add/default/fonts/icomoon/icomoon.woff") format("woff"), url("https://skin.add.ua/skin/frontend/add/default/fonts/icomoon/icomoon.ttf") format("truetype"), url("https://skin.add.ua/skin/frontend/add/default/fonts/icomoon/icomoon.svg?#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*@font-face {
    font-family: 'HelveticaLTStd';
    src: url('https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/HelveticaLTStdsteevoharvie.eot?');
    src: url('https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/HelveticaLTStdsteevoharvie.eot?#iefix') format('embedded-opentype'),
    url('https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/HelveticaLTStdsteevoharvie.woff') format('woff'),
    url('https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/HelveticaLTStdsteevoharvie.ttf')  format('truetype'),
    url('https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/HelveticaLTStdsteevoharvie.svg#HelveticaLTStdsteevoharvie') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
@font-face {
  font-family: 'HelveticaLTStd';
  src: url("https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/helveticaltstd-roman-webfont.eot?");
  src: url("https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/helveticaltstd-roman-webfont.eot?#iefix") format("embedded-opentype"), url("https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/helveticaltstd-roman-webfont.woff") format("woff"), url("https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/helveticaltstd-roman-webfont.ttf") format("truetype"), url("https://skin.add.ua/skin/frontend/add/default/fonts/HelveticaLTStd/helveticaltstd-roman-webfont.svg#helveticaltstd-roman-webfont") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
*:focus {
  outline: none;
}

a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body,
button,
input,
select,
table,
textarea {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  color: #666769;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #00a950;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #008f44;
  text-decoration: underline;
}
a:focus {
  outline: none;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #3399CC;
  font-family: "HelveticaLTStd", Verdana, Arial, 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: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, 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: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em;
}

.availability,
.free-shipping-yes {
  margin-bottom: 0;
}
.availability:before,
.free-shipping-yes:before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
}

.availability .label {
  display: none;
}

.availability.in-stock:before,
.free-shipping-yes:before {
  width: 17px;
  height: 13px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/in-stock.png");
}

.availability.available-soon:before,
.availability.out-of-stock:before {
  width: 17px;
  height: 17px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/out-of-stock.png");
}

.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: 31px;
  color: #666769;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 15px;
}

/* -------------------------------------------- *
 * Product Item
 */
.product-item {
  background: #fff;
  position: relative;
  overflow: visible;
  text-align: left;
}
.product-item .product-image {
  padding: 20px;
}
.product-item:after {
  content: '';
  display: table;
  clear: both;
}
.product-item .item {
  border: 1px solid #e8e8e8;
  margin: -1px 0 0 -1px;
}
.product-item .item.processed {
  position: relative;
  margin: -8px -5px -7px -6px;
  /*because of margin: -1px 0 0 -1px;*/
  padding: 7px 0;
  border-color: #5abd53;
  background: #fff;
  -webkit-box-shadow: 0 0 6px 0 rgba(22, 51, 20, 0.8);
  -moz-box-shadow: 0 0 6px 0 rgba(22, 51, 20, 0.8);
  box-shadow: 0 0 6px 0 rgba(22, 51, 20, 0.8);
  z-index: 1010;
}
.product-item .item.processed .product-image {
  padding: 20px 25px;
}
.product-item .item.processed .product-info {
  padding-left: 22px;
  padding-right: 22px;
  text-align: left;
}
.product-item .item.processed .product-name {
  height: 100% !important;
}
.product-item .item.processed .brand-name {
  white-space: normal;
}
.product-item .item:after {
  content: '';
  display: table;
  clear: both;
}
.product-item .item .product-name {
  height: 40px;
  min-height: 40px;
}

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px;
}

.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

.block-title {
  position: relative;
  border-bottom: 2px solid #50b948;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #666769;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: normal;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #A0A0A0;
}

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
}

.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, .block .actions .button-callback, .block .actions .button-oneclick, .block .actions .button-location {
  float: right;
}

.col-left .block .actions .button ~ a, .col-left .block .actions .button-callback ~ a, .col-left .block .actions .button-oneclick ~ a, .col-left .block .actions .button-location ~ a,
.col-right .block .actions .button ~ a,
.col-right .block .actions .button-callback ~ a,
.col-right .block .actions .button-oneclick ~ a,
.col-right .block .actions .button-location ~ a {
  line-height: 33px;
  margin-right: 5px;
}

.show-mobile {
  display: none;
}

.visible-mobile {
  display: none;
}

.hidden-mobile {
  display: inline-block;
}

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title, .block-blog-categories .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.block-account li, .block-blog-categories li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  margin: 7px 0;
}
.block-account li strong, .block-blog-categories li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #00a950;
}
.block-account li a, .block-blog-categories li a,
.block-cms-menu li a {
  color: #666769;
}
.block-account li a:hover, .block-blog-categories li a:hover,
.block-cms-menu li a:hover {
  color: #00a950;
}

.block-account, .block-blog-categories {
  padding: 0 22px 8px 20px;
  background: #f1f1f1;
  position: relative;
}
.block-account .block-title, .block-blog-categories .block-title {
  padding: 25px 0 27px;
  border-bottom: 0;
  font-size: 16px;
  color: #656567;
}
.block-account .block-content, .block-blog-categories .block-content {
  margin: 0;
}
.block-account .block-content > ul:after, .block-blog-categories .block-content > ul:after {
  content: '';
  display: table;
  clear: both;
}
.block-account .block-content > ul > li, .block-blog-categories .block-content > ul > li {
  margin: 0;
  border-top: 1px solid #e8e8e8;
}
.block-account .block-content > ul > li:after, .block-blog-categories .block-content > ul > li:after {
  content: '';
  display: table;
  clear: both;
}
.block-account .block-content > ul > li > a, .block-blog-categories .block-content > ul > li > a {
  position: relative;
  float: left;
  width: calc(100% + 42px);
  padding: 18px 22px 16px 62px;
  margin: 0 0 0 -20px;
  color: #656567;
  text-transform: none;
  font-size: 14px;
}
.block-account .block-content > ul > li > a:hover, .block-blog-categories .block-content > ul > li > a:hover {
  text-decoration: none;
}
.block-account .block-content > ul > li > a:before, .block-blog-categories .block-content > ul > li > a:before {
  content: "\e601";
  position: absolute;
  top: 13px;
  left: 20px;
  font-size: 21px;
  font-family: 'Icons';
}
.block-account .block-content > ul > li.account_edit a:before, .block-blog-categories .block-content > ul > li.account_edit a:before {
  content: '';
  width: 21px;
  height: 21px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -48px no-repeat;
  top: 18px;
}
.block-account .block-content > ul > li.address_book a:before, .block-blog-categories .block-content > ul > li.address_book a:before {
  content: '';
  width: 22px;
  height: 19px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -108px no-repeat;
  top: 19px;
}
.block-account .block-content > ul > li.orders a:before, .block-blog-categories .block-content > ul > li.orders a:before {
  content: '';
  width: 22px;
  height: 18px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -152px no-repeat;
  top: 20px;
}
.block-account .block-content > ul > li.reviews a:before, .block-blog-categories .block-content > ul > li.reviews a:before {
  content: '';
  width: 20px;
  height: 22px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -194px no-repeat;
  top: 17px;
}
.block-account .block-content > ul > li.list_my_drugs a:before, .block-blog-categories .block-content > ul > li.list_my_drugs a:before {
  content: '';
  width: 21px;
  height: 21px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -244px no-repeat;
  top: 18px;
}
.block-account .block-content > ul > li.pharmacist_advice a:before, .block-blog-categories .block-content > ul > li.pharmacist_advice a:before, .block-account .block-content > ul > li.category-pharmacist-advice a:before, .block-blog-categories .block-content > ul > li.category-pharmacist-advice a:before {
  content: '';
  width: 22px;
  height: 22px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -293px no-repeat;
  top: 18px;
}
.block-account .block-content > ul > li.my_drugstores a:before, .block-blog-categories .block-content > ul > li.my_drugstores a:before, .block-account .block-content > ul > li.category-drugstores a:before, .block-blog-categories .block-content > ul > li.category-drugstores a:before {
  content: '';
  width: 19px;
  height: 25px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -342px no-repeat;
  top: 17px;
}
.block-account .block-content > ul > li.my_loyalty_card a:before, .block-blog-categories .block-content > ul > li.my_loyalty_card a:before {
  content: '';
  width: 23px;
  height: 20px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -398px no-repeat;
  top: 15px;
}
.block-account .block-content > ul > li.newsletter a:before, .block-blog-categories .block-content > ul > li.newsletter a:before {
  content: '';
  width: 22px;
  height: 24px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -444px no-repeat;
}
.block-account .block-content > ul > li.logout a:before, .block-blog-categories .block-content > ul > li.logout a:before {
  content: '';
  width: 20px;
  height: 24px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -550px no-repeat;
  top: 15px;
}
.block-account .block-content > ul > li.category-contacts a:before, .block-blog-categories .block-content > ul > li.category-contacts a:before {
  content: '';
  width: 25px;
  height: 16px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 -113px no-repeat;
  top: 20px;
}
.block-account .block-content > ul > li.category-news a:before, .block-blog-categories .block-content > ul > li.category-news a:before {
  content: '';
  width: 21px;
  height: 21px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 0 no-repeat;
  top: 17px;
}
.block-account .block-content > ul > li.category-about-company a:before, .block-blog-categories .block-content > ul > li.category-about-company a:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 -74px no-repeat;
  top: 17px;
}
.block-account .block-content > ul > li.category-ato-help a:before, .block-blog-categories .block-content > ul > li.category-ato-help a:before {
  content: '';
  width: 20px;
  height: 21px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 -130px no-repeat;
  top: 17px;
}
.block-account .block-content > ul > li.category-loyalty-programm a:before, .block-blog-categories .block-content > ul > li.category-loyalty-programm a:before {
  content: '';
  width: 20px;
  height: 26px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 -47px no-repeat;
  top: 13px;
}
.block-account .block-content > ul > li.category-vacancies a:before, .block-blog-categories .block-content > ul > li.category-vacancies a:before {
  content: '';
  width: 21px;
  height: 17px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 -95px no-repeat;
  top: 19px;
}
.block-account .block-content > ul > li.category-specials a:before, .block-blog-categories .block-content > ul > li.category-specials a:before {
  content: '';
  width: 23px;
  height: 24px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/drugstore-sprite.png") 0 -21px no-repeat;
  top: 15px;
}
.block-account .block-content > ul > li.current a, .block-blog-categories .block-content > ul > li.current a, .block-account .block-content > ul > li:hover a, .block-blog-categories .block-content > ul > li:hover a {
  background: #50b948;
  color: #fff;
}
.block-account .block-content > ul > li.current a strong, .block-blog-categories .block-content > ul > li.current a strong, .block-account .block-content > ul > li:hover a strong, .block-blog-categories .block-content > ul > li:hover a strong {
  color: #fff;
}
.block-account .block-content > ul > li.current.account_edit a:before, .block-blog-categories .block-content > ul > li.current.account_edit a:before, .block-account .block-content > ul > li:hover.account_edit a:before, .block-blog-categories .block-content > ul > li:hover.account_edit a:before {
  background-position: 0 0;
}
.block-account .block-content > ul > li.current.address_book a:before, .block-blog-categories .block-content > ul > li.current.address_book a:before, .block-account .block-content > ul > li:hover.address_book a:before, .block-blog-categories .block-content > ul > li:hover.address_book a:before {
  background-position: 0 -130px;
}
.block-account .block-content > ul > li.current.orders a:before, .block-blog-categories .block-content > ul > li.current.orders a:before, .block-account .block-content > ul > li:hover.orders a:before, .block-blog-categories .block-content > ul > li:hover.orders a:before {
  background-position: 0 -173px;
}
.block-account .block-content > ul > li.current.reviews a:before, .block-blog-categories .block-content > ul > li.current.reviews a:before, .block-account .block-content > ul > li:hover.reviews a:before, .block-blog-categories .block-content > ul > li:hover.reviews a:before {
  background-position: 0 -219px;
}
.block-account .block-content > ul > li.current.list_my_drugs a:before, .block-blog-categories .block-content > ul > li.current.list_my_drugs a:before, .block-account .block-content > ul > li:hover.list_my_drugs a:before, .block-blog-categories .block-content > ul > li:hover.list_my_drugs a:before {
  background-position: 0 -268px;
}
.block-account .block-content > ul > li.current.pharmacist_advice a:before, .block-blog-categories .block-content > ul > li.current.pharmacist_advice a:before, .block-account .block-content > ul > li:hover.pharmacist_advice a:before, .block-blog-categories .block-content > ul > li:hover.pharmacist_advice a:before {
  background-position: 0 -318px;
}
.block-account .block-content > ul > li.current.my_drugstores a:before, .block-blog-categories .block-content > ul > li.current.my_drugstores a:before, .block-account .block-content > ul > li:hover.my_drugstores a:before, .block-blog-categories .block-content > ul > li:hover.my_drugstores a:before {
  background-position: 0 -370px;
}
.block-account .block-content > ul > li.current.my_loyalty_card a:before, .block-blog-categories .block-content > ul > li.current.my_loyalty_card a:before, .block-account .block-content > ul > li:hover.my_loyalty_card a:before, .block-blog-categories .block-content > ul > li:hover.my_loyalty_card a:before {
  background-position: 0 -421px;
}
.block-account .block-content > ul > li.current.newsletter a:before, .block-blog-categories .block-content > ul > li.current.newsletter a:before, .block-account .block-content > ul > li:hover.newsletter a:before, .block-blog-categories .block-content > ul > li:hover.newsletter a:before {
  background-position: 0 -471px;
}
.block-account .block-content > ul > li.current.logout a:before, .block-blog-categories .block-content > ul > li.current.logout a:before, .block-account .block-content > ul > li:hover.logout a:before, .block-blog-categories .block-content > ul > li:hover.logout a:before {
  background-position: 0 -577px;
}
.block-account .block-content li.level0:hover ul.level1, .block-blog-categories .block-content li.level0:hover ul.level1 {
  display: block;
}
.block-account .block-content ul.level0 ul.level1, .block-blog-categories .block-content ul.level0 ul.level1 {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-height: 100%;
  width: 100%;
  margin-left: -1px;
  background: #cfcfcf;
  padding: 20px;
  z-index: 1190;
}

.block-blog-categories .block-content ul.level0 > li:hover a,
.block-blog-categories .block-content ul.level0 > li.active a {
  background: #cfcfcf;
  color: #656567;
}

.block-account li ul.level1 a, .block-blog-categories li ul.level1 a {
  text-transform: none;
  padding: 4px 22px;
  line-height: 1.4;
  font-size: 14px;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.button.button-secondary, .button-secondary.button-callback, .button-secondary.button-oneclick, .button-secondary.button-location {
  background: #DDDDDD;
  color: #666769;
  padding: 7px 15px;
}
.button.button-secondary:hover, .button-secondary.button-callback:hover, .button-secondary.button-oneclick:hover, .button-secondary.button-location:hover {
  background: #d0d0d0;
  cursor: pointer;
}
.button.button-secondary:active, .button-secondary.button-callback:active, .button-secondary.button-oneclick:active, .button-secondary.button-location:active {
  background: #c4c4c4;
  color: #666769;
}
.button.button-secondary:focus, .button-secondary.button-callback:focus, .button-secondary.button-oneclick:focus, .button-secondary.button-location:focus {
  color: #666769;
  background: #c4c4c4;
  outline: none;
}

.sidebar .actions button.button, .sidebar .actions button.button-callback, .sidebar .actions button.button-oneclick, .sidebar .actions button.button-location {
  white-space: normal;
}

/* Primary Buttons */
.button, .button-callback, .button-oneclick, .button-location {
  background: transparent;
  border: 1px solid #cfcfcf;
  border-radius: 20px;
  display: inline-block;
  padding: 14px 17px;
  color: #3c3c3c;
  font-size: 12px;
  font-weight: normal;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
}
.button:hover, .button-callback:hover, .button-oneclick:hover, .button-location:hover {
  background: #50b948;
  cursor: pointer;
  color: #fff;
  border-color: #50b948;
}
.button:active, .button-callback:active, .button-oneclick:active, .button-location:active {
  background: #50b948;
  color: #FFFFFF;
  border-color: #50b948;
}
.button:focus, .button-callback:focus, .button-oneclick:focus, .button-location:focus {
  background-color: #50b948;
  outline: none;
  color: #FFFFFF;
  border-color: #50b948;
}

.button-green-outline, .button-callback, .button-oneclick, .button-location {
  border: 1px solid #50b948;
  color: #50b948;
}

.button-callback:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  font-size: 14px;
  margin-right: 5px;
}

.button-oneclick:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  font-size: 14px;
  margin-right: 10px;
}

.button-location {
  background: #fff;
}
.button-location:hover {
  background: #50b948;
  color: #fff;
}
.button-location:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  font-size: 22px;
  line-height: 0;
  margin-right: 5px;
  vertical-align: -5px;
}

.transparent-green-btn {
  border: 1px solid #50b948;
  border-radius: 5px;
  background: transparent;
  padding: 6px;
  text-align: center;
  color: #50b948;
  font-size: 12px;
  line-height: 21px;
  text-transform: uppercase;
}
.transparent-green-btn:hover {
  text-decoration: none;
  background: #50b948;
  color: #fff;
}

.link-remove {
  display: inline-block;
  margin-top: 18px;
  width: 100%;
  text-align: center;
  color: #656567;
}
.link-remove:hover {
  color: #656567;
}
.link-remove:before {
  display: inline-block;
  content: '';
  width: 24px;
  height: 21px;
  margin: 0 11px -6px 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/filter-checkboxes.png") 0 -24px no-repeat;
}

.dark-green-btn, .btn-proceed-checkout {
  border: 1px solid #50b948;
  border-radius: 5px;
  background: #00a950;
  padding: 6px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 21px;
  text-transform: uppercase;
}
.dark-green-btn:hover, .btn-proceed-checkout:hover {
  text-decoration: none;
  background: #50b948;
  color: #fff;
}

.light-green-btn {
  border: 1px solid #50b948;
  border-radius: 5px;
  background: #50b948;
  padding: 6px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 21px;
  text-transform: uppercase;
}
.light-green-btn:hover {
  text-decoration: none;
  background: #00a950;
  color: #fff;
}

.btn-proceed-checkout {
  border-radius: 18px;
  padding: 14px 22px;
  line-height: 1;
}
.btn-proceed-checkout:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  color: #fff;
  margin: 0 0 0 18px;
  font-size: 10px;
  line-height: 10px;
}
.btn-proceed-checkout:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  color: #fff;
  margin: 0 35px 0 0;
  font-size: 10px;
  line-height: 10px;
}

.add-address-btn:before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 25px;
  margin: 0 17px -10px 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -656px;
}

.edit-btn:before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 21px;
  margin: 0 16px -5px 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -24px;
}
.edit-btn:hover:before {
  background-position: 0 0;
}

.watch-btn:before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 15px;
  margin: 0 18px -3px 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -72px;
}
.watch-btn:hover:before {
  background-position: 0 -90px;
}

.save-btn {
  width: 100%;
}
.save-btn:before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: 0 22px -7px 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/my-account-sprite.png") 0 -630px;
}
.save-btn:hover:before {
  background-position: 0 -604px;
}

.ask-question-btn {
  padding-left: 32px;
  padding-right: 32px;
  margin-top: -7px;
}
.ask-question-btn:before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 24px;
  margin: 0 8px 0 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/ask-a-question.png") 0 0;
  vertical-align: middle;
}

.print-link {
  text-decoration: underline;
  color: inherit;
}
.print-link:hover {
  text-decoration: none;
}
.print-link:before {
  content: '';
  display: inline-block;
  vertical-align: text-bottom;
  width: 20px;
  height: 20px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/print.png") 0 0 no-repeat;
}

a.button, a.button-callback, a.button-oneclick, a.button-location {
  text-decoration: none;
}

a.button:hover, a.button-callback:hover, a.button-oneclick:hover, a.button-location:hover {
  color: #FFFFFF;
}

/* Disabled - class for anchor, state for form elements */
.button.disabled, .disabled.button-callback, .disabled.button-oneclick, .disabled.button-location,
.button:disabled,
.button-callback:disabled,
.button-oneclick:disabled,
.button-location:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Adjacent buttons */
.button + .button, .button-callback + .button, .button-oneclick + .button, .button-location + .button, .button + .button-callback, .button-callback + .button-callback, .button-oneclick + .button-callback, .button-location + .button-callback, .button + .button-oneclick, .button-callback + .button-oneclick, .button-oneclick + .button-oneclick, .button-location + .button-oneclick, .button + .button-location, .button-callback + .button-location, .button-oneclick + .button-location, .button-location + .button-location {
  margin-left: 5px;
}

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}
.button2.btn-continue {
  padding: 14px 22px;
  border: 1px solid #6cc465;
  border-radius: 18px;
  line-height: 12px !important;
  color: #00a950;
}
.button2.btn-continue:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  color: #6cc465;
  margin: 0 18px 0 0;
  font-size: 10px;
  line-height: 10px;
}
.button2.btn-continue span {
  height: 0;
  font-size: 12px;
  line-height: 12px;
  text-decoration: none;
  color: #00a950;
}
.button2.btn-continue:hover {
  background: #6cc465;
}
.button2.btn-continue:hover:before {
  color: #fff;
}
.button2.btn-continue:hover span {
  color: #fff;
}

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #00a950;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #246b8f;
}

/* -------------------------------------------- *
 * 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;
}

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
}
.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):not(.button-callback):not(.button-oneclick):not(.button-location) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
.buttons-set button.button, .buttons-set button.button-callback, .buttons-set button.button-oneclick, .buttons-set button.button-location {
  float: right;
  margin-left: 5px;
  min-width: 140px;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  padding-top: 20px;
  margin: 0 0 15px;
}
.breadcrumbs ul {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs li {
  display: inline-block;
  vertical-align: bottom;
  font-size: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  text-decoration: underline;
}
.breadcrumbs li.internet-apteka {
  text-decoration: none;
}
.breadcrumbs a {
  color: #00a950;
  text-decoration: underline;
}
.breadcrumbs a:after {
  content: '/';
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs strong {
  color: #666769;
  font-weight: normal;
}
.breadcrumbs span {
  padding: 0 5px;
}

/* -------------------------------------------- *
 * 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: #00a950;
  border-color: #00a950;
}

.btn-remove:after {
  content: 'X';
  color: #00a950;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-weight: bold;
}
.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

.btn-remove2 {
  border: none;
  vertical-align: top;
}
.btn-remove2:after {
  display: none;
}
.btn-remove2:hover {
  background-color: transparent;
  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 #00a950;
  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 #e8e8e8;
  background: #F4F4F4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 13px;
  line-height: 24px;
}

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px;
}
.main-container:after,
.footer:after {
  content: '';
  display: table;
  clear: both;
}

.main-container,
.footer {
  padding: 10px;
}

.footer {
  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%;
}

/* Content Columns */
.col2-set {
  width: 100%;
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
.top-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #E6E6E6;
  font-size: 11px;
}
.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("https://skin.add.ua/skin/frontend/add/default/images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #666769;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11B400;
}

.error {
  color: #DF280A;
  font-weight: bold;
}

.notice {
  color: #E26703;
  font-weight: bold;
}

/* -------------------------------------------- *
 * Messages
 */
.messages {
  margin-bottom: 10px;
}

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #F4F4F4;
  font-size: 15px;
}

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7;
}

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #DF280A;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6;
}

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #E26703;
  border-right: none;
}

.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #11B400;
  background-color: #EFF5EA;
}

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #11B400;
  border-right: none;
}

.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 #e8e8e8;
  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 #e8e8e8;
  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;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  text-indent: -999999px;
  font-size: 0;
}
.please-wait img {
  width: 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

.price-box p {
  margin-bottom: 0;
}

.price-notice {
  color: #A0A0A0;
}

.price-box .price {
  color: #666769;
  font-size: 16px;
}

.price-box .price,
.price {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

.price-box .price-label {
  color: #A0A0A0;
  white-space: nowrap;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #666769;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}
.price-box .minimal-price-link .label {
  color: #A0A0A0;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price,
.price-box .special-price {
  display: inline-block;
}
.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}
.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

.price-box .old-price .price {
  color: #A0A0A0;
  text-decoration: line-through;
}

.price-box .special-price {
  color: #666769;
  padding-left: 1em;
}
.price-box .special-price .price-label {
  color: #D84D3C;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}
.item-options dt:after {
  content: ': ';
}
.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
}

.truncated,
.truncated a.dots {
  cursor: help;
}

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}
.truncated a.details:hover {
  text-decoration: none;
}

.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #00a950;
  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 #00a950;
  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;
}

/* -------------------------------------------- *
 * 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;
}

/*.no-touch .product-image:hover {
    border-color: $c-module-border-highlight;
}*/
/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .rating-box {
  width: 100px;
  height: 14px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/stars-sprite.png") 0 -17px repeat-x transparent;
  overflow: hidden;
}
.ratings .rating-box .rating {
  font-size: 0;
  float: left;
  height: 14px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/stars-sprite.png") 0 0 repeat-x transparent;
}
.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: #A0A0A0;
  font-size: 13px;
}

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin: 5px 0 22px;
  border: 1px solid #e8e8e8;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}
.toolbar .view-mode, .toolbar .count-container, .toolbar .sort-by, .toolbar .pager {
  padding: 17px 21px 14px 16px;
}
.toolbar .view-mode, .toolbar .count-container, .toolbar .pager {
  border-left: 1px solid #e8e8e8;
}
.toolbar .grid-views li {
  display: inline-block;
}
.toolbar .grid-views .active strong span {
  width: 26px;
  height: 29px;
  border-color: #50b948;
  margin-left: 3px;
}
.toolbar .grid-views .active strong span:first-child {
  margin-left: 0;
}
.toolbar .grid-views .active:hover {
  cursor: default;
}
.toolbar .view-mode strong {
  display: inline-block;
  margin: 6px 14px 0 0;
}
.toolbar .view-mode strong span {
  display: inline-block;
  width: 20px;
  height: 22px;
  margin-left: 2px;
  border: 1px solid #c5c5c5;
  vertical-align: bottom;
}
.toolbar .view-mode strong span:first-child {
  margin-left: 0;
}
.toolbar .view-mode strong:hover {
  cursor: pointer;
}

.toolbar-bottom .toolbar {
  border: 0;
  margin-top: 22px;
}
.toolbar-bottom .toolbar .view-mode, .toolbar-bottom .toolbar .count-container, .toolbar-bottom .toolbar .sort-by {
  display: none;
}
.toolbar-bottom .toolbar .pager {
  padding: 0;
  border: 0;
}
.toolbar-bottom .toolbar .pager label {
  display: none;
}

.count-container {
  float: right;
}

.pager-no-toolbar {
  margin-bottom: 10px;
}

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

/*.toolbar,
.pager {
    font-family: $f-stack-special;
    color: $c-text;
    line-height: 30px;
    font-size: $f-size-xs;
}*/
.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
}

.sorter {
  float: left;
}
.sorter label {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
  line-height: 1;
  color: #666769;
  /*&:after {
      content: ':';
  }*/
}

.sorter > .sort-by {
  float: left;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}

.sorter > .view-mode {
  float: right;
}

.pager {
  float: right;
  overflow: hidden;
  /*.amount {
      float: left;
      font-family: $f-stack-sans;
      white-space: nowrap;
      margin: 0 15px 0 0;
  }*/
    /*.limiter {
        float: left;
        height: 30px;
        line-height: 30px;

        & > label {
            padding-right: 5px;

            &:after {
                content: ':';
            }
        }
    }*/
  /*.amount,
  .limiter,
  .pages {
      margin-bottom: 5px;
  }*/
}
.pager label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1;
  color: #666769;
}
.pager label .no-pages {
  display: inline-block;
  padding-bottom: 32px;
}

.pages {
  display: block;
  overflow: hidden;
  /*margin-left: 15px;*/
}
.pages strong {
  display: none;
}

.pages li {
  float: left;
  margin-left: 9px;
}
.pages li:first-child {
  margin-left: 0;
}

.pages a,
.pages .current {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #707070;
  border: 1px solid #50b948;
  border-radius: 6px;
}

.pages .current,
.pages .current:hover {
  color: #fff;
  background-color: #50b948;
  cursor: default;
}

.pages .next,
.pages .previous {
  font-size: 0;
}
.pages .next:after,
.pages .previous:after {
  font-size: 14px;
}
.pages .next:hover,
.pages .previous:hover {
  background: #50b948;
  color: #fff;
  text-decoration: none;
}

.pages .next {
  color: #50b948;
}
.pages .next:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}

.pages .previous {
  color: #50b948;
}
.pages .previous:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}

.category-products .toolbar .sorter {
  width: 100%;
}
.category-products .toolbar .view-mode, .category-products .toolbar .count-container, .category-products .toolbar .sort-by {
  float: left;
  width: 50%;
  border: 0;
}
.category-products .toolbar .pager {
  float: left;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  border-left: 0;
}
.category-products .toolbar-bottom .toolbar .pager {
  border: 0 !important;
}

.remodal-wrapper .remodal.remodal-storelocator {
  padding: 0 15px 35px;
  width: 100%;
}
.remodal-wrapper .remodal.remodal-storelocator .storelocator-map-sidebar {
  width: 100%;
  margin: 0 0 15px;
}
.remodal-wrapper .remodal.remodal-storelocator .storelocator-map-content {
  width: 100%;
  border-radius: 0;
}
.remodal-wrapper .remodal.remodal-storelocator .storelocator-map-content .product-name-details .price-box {
  margin-top: 6px;
}

.main-container .cart-totals-wrapper, .main-container .opc-totals-wrapper, .main-container .opc-totals-wrapper {
  width: 50%;
}
.main-container .opc-progress-bar ul li {
  line-height: 57px;
}

.storelocator .store-search-bar .fieldset, .storelocator .store-search-bar button {
  width: 31%;
}

.storelocator .store-search-bar button.light-green-btn {
  float: left !important;
}

.storelocator .stores-list {
  padding-top: 230px;
}

.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 #246b8f;
  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 #246b8f;
  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;
}

/* ============================================ *
 * Fake tabs revolution slider
 * ============================================ */
.tp-bullets {
  counter-reset: bullet;
}
.tp-bullets.custom {
  bottom: 0;
  display: flex;
  flex-direction: column;
}
.tp-bullets.custom .bullet {
  flex-grow: 1;
  padding: 6px 17px 10px;
  background: #e8e8e8;
  border-bottom: 1px solid #e3e3e3;
  font-size: 14px;
  line-height: 14px;
  color: #707070;
  text-align: center;
  cursor: pointer;
}
.tp-bullets.custom .bullet:before {
  counter-increment: bullet;
  content: counter(bullet);
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 7px;
  padding-top: 6px;
  color: #a9a9a9;
  font-size: 9px;
  line-height: 9px;
  border: 1px solid #a9a9a9;
  border-radius: 50%;
}
.tp-bullets.custom .bullet.selected {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
.tp-bullets.custom .bullet.selected:before {
  color: #fff;
  border-color: #fff;
}
.tp-bullets.custom .bullet:hover {
  background: #575757;
}

/*DIALOG*/
.remodal {
  background: #fff;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif !important;
}

.remodal * {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif !important;
}

a.remodal-close {
  left: auto;
  right: 15px;
  top: 15px;
  border: 1px solid #666769;
}
a.remodal-close:after {
  font-size: 21px;
  line-height: 26px;
  color: #666769;
}
a.remodal-close:hover {
  text-decoration: none;
  background: #50b948;
  border-color: #50b948;
}

.tp-bullets {
  z-index: 700;
}

.before-main {
  padding-bottom: 20px;
}

.after-main {
  padding-top: 20px;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
.box-account.full-width label {
  width: 16%;
  margin-right: 15px;
  text-align: right;
  word-break: break-all;
}
.box-account.full-width .input-box {
  display: inline-block;
  vertical-align: middle;
}
.box-account.full-width .address-current-state, .box-account.full-width .control, .box-account.full-width .buttons-set {
  margin-left: calc(16% + 19px);
}

.newsletter-manage-index .box-account.full-width .control, .newsletter-manage-index .box-account.full-width .buttons-set {
  margin-left: 0 !important;
}

/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin: -10px 0 5px 0;
  float: right;
  font-size: 12px;
}

.fieldset + .fieldset {
  margin-top: 5px;
}

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

/* -------------------------------------------- *
 * Input Box
 */
*:focus {
  outline: 0;
}

.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: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  margin-bottom: 8px;
  line-height: 1;
}

label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
}

label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #A0A0A0;
  font-size: 12px;
}

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px;
}

select + select {
  margin-left: 5px;
}

select[multiple] {
  width: 270px;
  border: 1px solid #eee;
  font-size: 15px;
  padding: 5px;
}

/* -------------------------------------------- *
 * Custom Select
 */
.css-select.with-remove-btn .input-box select {
  padding-left: 35px;
}
.css-select .input-box {
  display: block;
  position: relative;
  width: 365px;
  max-width: 100%;
  height: 34px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #50b948;
  border-radius: 3px;
}
.css-select .input-box:after {
  content: '\e602';
  font-family: "Icons";
  position: relative;
  float: right;
  height: 34px;
  width: 32px;
  padding-top: 5px;
  color: #fff;
  text-align: center;
  background: #50b948;
  pointer-events: none;
}
.css-select .input-box select {
  height: 32px;
  max-width: none;
  width: 390px;
  margin: 0;
  background: transparent;
  border: 0;
  position: absolute;
  left: 0;
  top: 0;
  appearance: none;
  cursor: pointer;
}
.css-select .input-box .link-remove {
  left: 5px;
  margin: 0;
  position: absolute;
  top: 6px;
  width: 24px;
  z-index: 101;
}

.toolbar .ui-selectmenu-button, .custom-select .ui-selectmenu-button, .product-service .map-service .map-select .ui-selectmenu-button, .product-view .add-to-cart .qty-wrapper .ui-selectmenu-button {
  border: 1px solid #50b948;
  border-radius: 3px;
  position: relative;
  min-width: 160px;
}
.toolbar .ui-selectmenu-button .ui-selectmenu-text, .custom-select .ui-selectmenu-button .ui-selectmenu-text, .product-service .map-service .map-select .ui-selectmenu-button .ui-selectmenu-text, .product-view .add-to-cart .qty-wrapper .ui-selectmenu-button .ui-selectmenu-text {
  padding: 10px 45px 10px 14px;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1;
  color: #666769;
}
.toolbar .ui-selectmenu-button .ui-icon, .custom-select .ui-selectmenu-button .ui-icon, .product-service .map-service .map-select .ui-selectmenu-button .ui-icon, .product-view .add-to-cart .qty-wrapper .ui-selectmenu-button .ui-icon {
  top: 0;
  bottom: 0;
  right: 0;
  width: 32px;
  background: #50b948;
  text-align: center;
}
.toolbar .ui-selectmenu-button .ui-icon:after, .custom-select .ui-selectmenu-button .ui-icon:after, .product-service .map-service .map-select .ui-selectmenu-button .ui-icon:after, .product-view .add-to-cart .qty-wrapper .ui-selectmenu-button .ui-icon:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.toolbar .ui-selectmenu-button .ui-icon:after, .custom-select .ui-selectmenu-button .ui-icon:after, .product-service .map-service .map-select .ui-selectmenu-button .ui-icon:after, .product-view .add-to-cart .qty-wrapper .ui-selectmenu-button .ui-icon:after {
  line-height: 34px;
  color: #e8f6e7;
}

.ui-selectmenu-button {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  max-width: 100%;
}
.ui-selectmenu-button .ui-selectmenu-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 40;
}
.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid #eee;
  max-height: 122px;
}
.ui-selectmenu-menu .ui-menu-item {
  cursor: pointer;
}
.ui-selectmenu-menu .ui-menu-item.ui-state-focus {
  background: #50b948;
}

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 365px;
  padding: 5px 10px;
  resize: none;
  border: 1px solid #eee;
  border-radius: 2px;
  color: #555;
  font-size: 14px;
}
textarea:focus, textarea:active {
  color: #50b948;
  border-color: #50b948;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #eee;
  background: #FFFFFF;
  font-size: 14px;
  color: #555;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.input-text.input-text-large {
  height: 44px;
  line-height: 44px;
}
.input-text:-webkit-autofill {
  background-color: #fff;
}
.input-text:focus {
  border: 1px solid #50b948;
  background-color: #fff;
  color: #50b948;
}

.input-text.validation-failed {
  border-color: #DF280A;
}

.input-text.validation-failed:focus {
  outline-color: #ef9384;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 33px;
  padding: 0 10px;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 365px;
  max-width: 100%;
}

@media only screen and (max-width: 468px) {
  .remodal input, .remodal select {
    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: #97a1aa;
}

input:-moz-placeholder {
  color: #97a1aa;
}

/* -------------------------------------------- *
 * 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: $f-size;
    font-weight: normal;
    vertical-align: top;
}*/
.custom-checkbox {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.custom-checkbox + label {
  position: relative;
  padding-left: 34px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.custom-checkbox + label:before {
  content: '';
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 24px;
  width: 24px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/filter-checkboxes.png") 0 -48px no-repeat;
}

.custom-checkbox:checked + label:before {
  background-position: 0 0;
}

.custom-radio {
  position: absolute;
  z-index: -1000;
  left: -1000px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.custom-radio + label {
  position: relative;
  padding-left: 34px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.custom-radio + label:before {
  content: '';
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  height: 21px;
  width: 21px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
}

.custom-radio:checked + label:before {
  border-color: #50b948;
  background-color: #50b948;
  box-shadow: inset 0 0 0 4px #fff;
}

/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  text-align: left;
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 13px;
}

/* ============================================ *
 * Form List
 * ============================================ */
.form-list {
  float: left;
  clear: both;
  width: 100%;
}
.form-list > li {
  margin-bottom: 30px;
}
.form-list > li.fields {
  margin-bottom: 0;
}
.form-list > li.fields .field {
  margin-bottom: 30px;
}
.form-list select {
  margin-top: 4px;
  width: 365px;
  max-width: 100%;
}
.form-list .input-range .input-text {
  width: 74px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.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,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control 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,
.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,
.product-options ul.options-list label {
  display: inline-block;
  width: auto;
  max-width: none;
  float: none;
  /*&:hover {
      background-color: $c-module-background-hover;
  }*/
}
.form-list .control .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .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: 30px;
}
.form-list .control label {
  float: none;
}
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

form .form-instructions {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

.form-field {
  margin-bottom: 15px;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%;
}

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #C0C0C0;
}

.data-table tbody td,
.data-table tfoot td {
  font-family: Georgia, Times, "Times New Roman", serif;
}

.data-table tfoot tr {
  background: #F4F4F4;
}

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}
.data-table tbody td .item-options dt:after {
  content: ':';
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
}
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

.info-table th,
.info-table td {
  vertical-align: top;
}

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

.info-table td {
  padding: 4px 0;
}

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #C0C0C0;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #C0C0C0;
  padding: 6px;
  background-color: transparent;
}
.zebra-table tr {
  background-color: #EEEDED;
}
.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
.linearize-table .linearize-collapse {
  display: none;
}

/* ============================================ *
 * Global
 * ============================================ */
html,
body {
  height: 100%;
}

.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* ============================================ *
 * Header
 * ============================================ */
.page-header-container {
  position: static;
}

.page-header {
  clear: both;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.page-header-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

.page-header-top {
  clear: both;
  text-align: right;
  padding-top: 5px;
}

.header-base-phone,
.header-user-nav {
  display: inline-block;
  vertical-align: middle;
}

.header-base-phone {
  color: #364b35;
  font-size: 18px;
  text-transform: uppercase;
}
.header-base-phone:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}

.header-user-nav {
  font-size: 0;
}
.header-user-nav .user-nav-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.header-user-nav .user-nav-item + .user-nav-item:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 12px;
  background-color: #4c694a;
}
.header-user-nav .user-nav-item--first {
  padding-left: 0;
}
.header-user-nav .user-nav-item--last {
  padding-right: 0;
}
.header-user-nav .user-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
  color: #364b35;
  font-size: 12px;
  line-height: 18px;
  padding: 10px 15px 11px;
  border-color: transparent;
  border-width: 1px 1px 0;
  border-style: solid;
}
.header-user-nav .user-nav-link:hover {
  color: #000000;
}
.header-user-nav .user-nav-link.skip-active {
  border-color: #e8e8e8;
  background: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.header-user-nav .about,
.header-user-nav .account,
.header-user-nav .phones {
  padding-left: 40px;
  padding-right: 40px;
}
.header-user-nav .about:before,
.header-user-nav .account:before,
.header-user-nav .phones:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.header-user-nav .about:after,
.header-user-nav .account:after,
.header-user-nav .phones:after {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.header-user-nav .about:after,
.header-user-nav .account:after,
.header-user-nav .phones:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  position: absolute;
  bottom: 11px;
  right: 15px;
  font-size: 12px;
}
.header-user-nav .about.skip-active:after,
.header-user-nav .account.skip-active:after,
.header-user-nav .phones.skip-active:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.header-user-nav .about:before,
.header-user-nav .account:before,
.header-user-nav .phones:before {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 21px;
}
.header-user-nav .phones {
  font-size: 18px;
  text-decoration: none;
}
.header-user-nav .phones:before {
  content: "";
}
.header-user-nav .phones span {
  font-size: 12px;
}
.header-user-nav .about {
  font-size: 12px;
}
.header-user-nav .about:before {
  content: "";
  font-size: 18px;
}
.header-user-nav .account {
  font-size: 12px;
}
.header-user-nav .account:before {
  content: "";
}
.header-user-nav .account.skip-active {
  background-color: #f1f1f1;
}
.header-user-nav .store-locator {
  padding-left: 40px;
}
.header-user-nav .store-locator:before {
  position: absolute;
  top: 8px;
  left: 15px;
  font-size: 21px;
  content: "";
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/location_dark_icon.png") no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: 15px;
  height: 21px;
  display: block;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .header-user-nav .store-locator:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("https://skin.add.ua/skin/frontend/add/default/images/icons/location_dark_icon@2x.png");
    background-size: 15px 21px;
  }
}

.page-header {
  background: #50b948;
}

/* ============================================ *
 * Fixed header
 * ============================================ */
.header-sticky--inner {
  font-size: 0;
}

.header-sticky {
  top: -60px;
}

.header-sticky--fixed {
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #50b948;
  transition: 0.5s all;
  opacity: 0.9;
  z-index: 1200;
}
.header-sticky--fixed:hover {
  opacity: 1;
}
.header-sticky--fixed .header-sticky--inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5px 10px;
}
.header-sticky--fixed .logo {
  min-height: 50px;
  max-width: 31%;
}
.header-sticky--fixed .header-search {
  width: 52%;
}
.header-sticky--fixed .account-cart-wrapper {
  width: 17%;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.form-language {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  text-align: center;
}
.form-language label {
  display: none;
}
.form-language select {
  width: 55px;
}
.form-language .ui-selectmenu-button {
  border: solid transparent;
  border-width: 1px 1px 0;
}
.form-language .ui-selectmenu-button[aria-expanded="true"] {
  background: #fff;
  border-radius: 8px 8px 0 0;
  border: solid #ccc;
  border-width: 1px 1px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  padding-top: 12px;
  margin-top: -12px;
}
.form-language .ui-selectmenu-text {
  color: #364b35;
  text-decoration: underline;
}
.form-language .ui-icon {
  display: none;
}
.form-language .ui-selectmenu-menu {
  right: 1px;
}
.form-language .ui-selectmenu-menu ul.ui-menu li {
  padding-right: 0;
  padding-left: 0;
}

.ui-selectmenu-open ul.ui-menu {
  border-radius: 0 0 8px 8px;
  border: solid #ccc;
  border-width: 0 1px 1px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
  padding: 0 0 5px 0;
}
.ui-selectmenu-open ul.ui-menu li {
  padding: 5px 37px 5px 18px;
  font-size: 12px;
  color: #666769;
}
.ui-selectmenu-open ul.ui-menu li:hover, .ui-selectmenu-open ul.ui-menu li.ui-state-focus {
  color: #fff;
}

.store-language-container {
  display: none;
}

/*@include bp(max-width, $bp-medium) {

    .header-language-background {
        display: none;
    }

}*/
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  min-width: 100px;
  min-height: 44px;
  text-align: center;
    /*

    .small {
        display: block;
    }

    .large {
        display: none;
    }*/
}
.logo img {
  max-width: 100%;
}

.logo {
  max-width: 35%;
  min-height: 55px;
}
.logo .small {
  display: none;
}
.logo .large {
  display: block;
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-link {
  position: relative;
}

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none;
}
.skip-content.skip-active {
  display: block;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
.account-cart-wrapper {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  width: 20%;
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav {
  width: 40%;
  /*    &:not(.skip-active):hover {
          text-decoration: none;
  
          .icon {
              background-position: -50px+4px ($toolbar-icon-padding-offset/2);
          }
      }*/
}

.skip-nav .label {
  display: inline;
}

.skip-nav {
  width: 25%;
}

.skip-nav {
  display: none;
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
.header-nav {
  clear: both;
}

.header-nav {
  display: block;
  /* Force visibility */
  margin: 10px 0 0;
}
.header-nav:before {
  content: '';
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary {
  position: relative;
}
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #666769;
  line-height: 16px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

.nav-dropdown--level1.show {
  display: block !important;
}

.nav-anchor--level1 {
  text-transform: uppercase;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
#nav {
  margin: 0 -10px;
}

.nav-primary {
  font-size: 0;
  display: table;
  width: 100%;
  /* 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 .nav-anchor--level1 {
  display: block;
  padding: 16px 10px 14px;
  color: #fff;
  font-size: 12px;
  margin: 0 -1px;
}
.nav-primary .active .nav-anchor--level1 {
  background: #fff;
  color: #00a950;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.nav-primary .nav-item--level1 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.nav-primary .nav-item--level1 + .nav-item--level1 .nav-anchor--level1:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 1px;
  top: 50%;
  left: 0;
  margin-top: -6px;
  height: 12px;
  background-color: #fff;
}
.nav-primary .nav-item--level2 {
  margin-bottom: 5px;
}
.nav-primary .nav-item--level2.active {
  background: #f1f1f1;
}
.nav-primary .nav-anchor--level2,
.nav-primary .subnav-anchor--level2,
.nav-primary .espot-cell a {
  padding: 4px 22px;
  line-height: 1.4;
}
.nav-primary .nav-dropdown--level1 {
  position: absolute;
  left: -1px;
  right: -2px;
  top: 100%;
  padding: 0 10px 10px;
  margin: 0 -10px 0;
  overflow-y: hidden;
  display: none;
  /* Hide until displayed. */
  z-index: 1100;
  text-align: left;
}
.nav-primary .nav-dropdown--level1-inner {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  background: #fff;
  border-bottom: 6px solid #50b948;
}
.nav-primary .nav-dropdown--level1-inner,
.nav-primary .subnav-wrapper--inner {
  display: table;
  width: 100%;
}
.nav-primary .nav-dropdown-column {
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
}
.nav-primary .nav-dropdown-column.nav-list--level2 {
  width: 320px;
  padding: 30px 0;
}
.nav-primary .subnav-column {
  display: table-cell;
  vertical-align: top;
}
.nav-primary .subnav-column--list {
  width: 300px;
  background: #f1f1f1;
  padding: 30px 10px;
}
.nav-primary .subnav-column--list h3 {
  display: none;
}
.nav-primary .subnav-column--list .subnav-anchor--level2 {
  padding-left: 10px;
  padding-right: 10px;
}
.nav-primary .subnav-column--list .subnav-anchor--level2:hover {
  background: #fff;
}
.nav-primary .subnav-column--content {
  padding: 52px 40px 52px 0;
}
.nav-primary .subnav-column--content h3 {
  display: none;
}
.nav-primary .subnav-column--content h3 {
  font-size: 13px;
}
.nav-primary .espot {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.nav-primary .espot-row {
  display: table-row;
}
.nav-primary .espot-cell {
  display: table-cell;
  width: 50%;
  vertical-align: top;
  padding: 0 0 80px 40px;
}
.nav-primary .espot-cell a {
  padding-left: 0;
  padding-right: 0;
}
.nav-primary .espot-cell a:hover {
  background: #f1f1f1;
}
.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 {
  display: none;
}

/* ============================================ *
 * Search - Skip Content
 * ============================================ */
.header-search {
  padding: 20px;
}

.header-search {
  display: inline-block;
  vertical-align: middle;
  width: 45%;
  padding: 0 10px;
}

/* ============================================ *
 * Search Input
 * ============================================ */
.search-mini-form {
  position: relative;
}
.search-mini-form .input-box {
  position: relative;
  padding-top: 0;
}
.search-mini-form label {
  display: none;
}
.search-mini-form .search-mini-input {
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 14px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 0 42px 0 30px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  color: #50b948;
}
.search-mini-form .search-mini-input::-webkit-input-placeholder {
  color: #50b948;
}
.search-mini-form .search-mini-input:-moz-placeholder {
  /* Firefox 18- */
  color: #50b948;
}
.search-mini-form .search-mini-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #50b948;
}
.search-mini-form .search-mini-input:-ms-input-placeholder {
  color: #50b948;
}
.search-mini-form .search-button {
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  background: #00a950;
}
.search-mini-form .search-button span {
  display: none;
}
.search-mini-form .search-button:hover:before {
  background: #364b35;
}
.search-mini-form .search-button:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 42px;
  font-size: 24px;
  color: #fff;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
.user-nav-dropdown {
  position: absolute;
  top: 100%;
  z-index: 200;
}
.user-nav-dropdown a {
  display: block;
  padding: 5px 10px;
  color: #666769;
  line-height: 2;
}
.user-nav-dropdown a:hover {
  color: #00a950;
}

.user-nav-dropdown--inner {
  background: #fff;
  border: solid 1px #e8e8e8;
  font-size: 14px;
}

.user-nav-dropdown {
  padding: 0 10px 10px;
  margin: 0 -10px;
  overflow-y: hidden;
}
.user-nav-dropdown a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}
.user-nav-dropdown a:hover {
  color: #00a950;
}

.user-nav-dropdown--inner {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top: 0;
}

.user-nav-dropdown-account--loggeout {
  right: -70px;
  max-width: 370px;
}
.user-nav-dropdown-account--loggeout .user-nav-dropdown--inner {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.user-account-mobile {
  display: none;
}

/* -------------------------------------------- *
 * Phones
 */
.user-nav-dropdown-phones,
.user-nav-dropdown-company,
.user-nav-dropdown-account--loggedin {
  left: 0;
  right: 0;
}
.user-nav-dropdown-phones li,
.user-nav-dropdown-company li,
.user-nav-dropdown-account--loggedin li {
  overflow: hidden;
  font-size: 14px;
  text-align: right;
  padding: 18px 0;
}
.user-nav-dropdown-phones li + li,
.user-nav-dropdown-company li + li,
.user-nav-dropdown-account--loggedin li + li {
  border-top: 1px solid #e8e8e8;
}
.user-nav-dropdown-phones li span,
.user-nav-dropdown-company li span,
.user-nav-dropdown-account--loggedin li span {
  float: left;
}
.user-nav-dropdown-phones .user-nav-dropdown--inner,
.user-nav-dropdown-company .user-nav-dropdown--inner,
.user-nav-dropdown-account--loggedin .user-nav-dropdown--inner {
  padding: 7px 15px 0;
}

.user-nav-dropdown-company,
.user-nav-dropdown-account--loggedin {
  margin: 0;
  padding: 0;
  width: 125%;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
}
.user-nav-dropdown-company .user-nav-dropdown--inner,
.user-nav-dropdown-account--loggedin .user-nav-dropdown--inner {
  padding: 7px 0 0;
}
.user-nav-dropdown-company .user-nav-dropdown--inner li,
.user-nav-dropdown-account--loggedin .user-nav-dropdown--inner li {
  width: 100%;
  padding: 0 17px;
  text-align: left;
  border: 0;
}
.user-nav-dropdown-company .user-nav-dropdown--inner li a,
.user-nav-dropdown-account--loggedin .user-nav-dropdown--inner li a {
  padding: 18px 0;
  text-align: left;
  line-height: 1;
}
.user-nav-dropdown-company .user-nav-dropdown--inner li a:hover,
.user-nav-dropdown-account--loggedin .user-nav-dropdown--inner li a:hover {
  margin: 0 -17px;
  padding: 18px 17px;
  text-decoration: none;
  background: #50b948;
  color: #fff;
}
.user-nav-dropdown-company .user-nav-dropdown--inner li + li a,
.user-nav-dropdown-account--loggedin .user-nav-dropdown--inner li + li a {
  border-top: 1px solid #e8e8e8;
}

.user-nav-dropdown-account--loggedin {
  left: 1px;
  right: 0;
}

.user-nav-dropdown-company {
  left: 1px;
  right: 0;
}

.user-nav-dropdown-company .user-nav-dropdown--inner li a {
  float: left;
  width: 100%;
}
.user-nav-dropdown-company .user-nav-dropdown--inner li a:hover {
  width: calc(100% + 34px);
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart {
  font-size: 12px;
}

.skip-cart {
  border-radius: 8px;
  display: block;
  border: 2px solid #fff;
  width: 100%;
  text-align: center;
  padding: 0;
  height: 42px;
  line-height: 38px;
  color: #fff;
}
.skip-cart:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  margin-right: 5px;
}
.skip-cart:hover {
  color: #fff;
}
.skip-cart.skip-active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #666769;
  background: #f1f1f1;
  border-color: #f1f1f1;
}

.header-cart.skip-active {
  padding: 0 10px 10px;
  margin: 0 -10px;
  overflow-y: hidden;
  display: block;
  position: absolute;
  z-index: 200;
  top: 100%;
  right: 0;
  width: 390px;
}
.header-cart .minicart-wrapper {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  border-radius: 12px;
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(0, 169, 80, 0.9);
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

.header-minicart .label {
  display: none;
}

.skip-cart {
  color: #fff;
  text-transform: uppercase;
}
.skip-cart:hover {
  text-decoration: none;
}
.skip-cart .count {
  border-radius: 0;
  position: static;
  background: none;
  margin-left: 0;
  font-size: 14px;
  width: auto;
}
.skip-cart .count:before {
  content: '(';
}
.skip-cart .count:after {
  content: ')';
}

/* -------------------------------------------- *
 * Mini Cart
 */
.cart-menu {
  /* Actions */
  /* Subtotal */
}
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}
.cart-menu .actions .button, .cart-menu .actions .button-callback, .cart-menu .actions .button-oneclick, .cart-menu .actions .button-location {
  float: left;
  width: 48%;
}
.cart-menu .actions .button + .button, .cart-menu .actions .button-callback + .button, .cart-menu .actions .button-oneclick + .button, .cart-menu .actions .button-location + .button, .cart-menu .actions .button + .button-callback, .cart-menu .actions .button-callback + .button-callback, .cart-menu .actions .button-oneclick + .button-callback, .cart-menu .actions .button-location + .button-callback, .cart-menu .actions .button + .button-oneclick, .cart-menu .actions .button-callback + .button-oneclick, .cart-menu .actions .button-oneclick + .button-oneclick, .cart-menu .actions .button-location + .button-oneclick, .cart-menu .actions .button + .button-location, .cart-menu .actions .button-callback + .button-location, .cart-menu .actions .button-oneclick + .button-location, .cart-menu .actions .button-location + .button-location {
  margin-left: 4%;
}
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
  /* Too full - additional items will be shown in cart */
}
.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #e8e8e8;
  font-size: 13px;
  line-height: 1.35;
}
.mini-cart-list .product-name {
  display: inline-block;
}
.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}
.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}
.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #A0A0A0;
  font-size: 12px;
}
.mini-cart-list .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #e8e8e8;
  font-size: 13px;
}

.header-block-login {
  margin-bottom: 0;
}
.header-block-login .block-title {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding: 25px 20px 15px;
  text-transform: uppercase;
  margin-bottom: 0;
  background: #f1f1f1;
  border: 0;
  text-align: left;
}
.header-block-login .block-content {
  padding: 20px;
}
.header-block-login .block-bottom {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 10px;
  text-align: center;
  background: #f1f1f1;
}
.header-block-login .block-bottom a {
  display: inline-block;
  vertical-align: middle;
  color: #00a950;
}
.header-block-login .remember-me-box {
  float: left;
}
.header-block-login .remember-me-box .link-tip {
  display: none;
}
.header-block-login .forgot-password-box {
  float: right;
}
.header-block-login .forgot-password-box a {
  font-size: 13px;
  padding: 0;
  color: #00a950;
}
.header-block-login .form-actions {
  margin: 30px 0;
}
.header-block-login .form-actions .button, .header-block-login .form-actions .button-callback, .header-block-login .form-actions .button-oneclick, .header-block-login .form-actions .button-location {
  color: #fff;
  border: 0;
  width: 100%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #00a950;
}
.header-block-login .or {
  position: relative;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.header-block-login .or:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  height: 1px;
  background: #eee;
}
.header-block-login .or span {
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 5px;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer-container {
  max-width: 100%;
  background: #2f2f2f;
  padding: 32px 0 60px;
}

.footer,
.footer button {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  color: #ababab;
}

.footer {
  clear: both;
}
.footer .footer-blocks-wrapper {
  display: table;
  table-layout: fixed;
  margin-bottom: 60px;
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #666769;
}
.footer .links {
  float: left;
  width: 17%;
  padding: 0 10px 0 0;
  margin-bottom: 10px;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
.footer .links a {
  color: #666769;
}
.footer .links a:hover {
  color: #00a950;
}
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 10px;
}
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .form-subscribe-header label {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 13px;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 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, .footer .block-subscribe .actions .button-callback, .footer .block-subscribe .actions .button-oneclick, .footer .block-subscribe .actions .button-location {
  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 .copyright, .footer .created {
  color: #5a5a5a;
  text-align: left;
  font-size: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.footer .copyright {
  float: left;
}
.footer .created {
  float: right;
}
.footer .learn-more {
  float: left;
  width: 100%;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #414243;
  color: #5a5a5a;
}
.footer .learn-more .learn-more-text {
  float: left;
  width: 78%;
}
.footer .learn-more .learn-more-text.collapsed {
  height: 21px;
  overflow: hidden;
}
.footer .learn-more .learn-more-btn {
  float: left;
  margin-right: 20px;
  padding-right: 31px;
  position: relative;
}
.footer .learn-more .learn-more-btn:hover {
  cursor: pointer;
}
.footer .learn-more .learn-more-btn:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  line-height: 1.4;
}
.footer .learn-more .learn-more-btn.expand:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.footer .footer-sign {
  float: left;
  margin-top: 55px;
  width: 100%;
  text-align: center;
}
.footer .footer-sign img {
  display: inline-block;
  max-width: 100%;
}

.footer-block {
  display: table-cell;
  border-left: 1px solid #3c3c3c;
  width: 20%;
  padding: 0 10px 0 20px;
}
.footer-block.last-block {
  min-width: 320px;
}
.footer-block h6 {
  line-height: 1;
  margin-bottom: 20px;
  color: #fffefe;
  font-weight: normal;
}
.footer-block ul {
  max-width: 90%;
}
.footer-block ul li {
  margin-top: 15px;
  padding-left: 15px;
  position: relative;
}
.footer-block ul li:first-child {
  margin-top: 0;
}
.footer-block ul li:before {
  content: "";
  width: 2px;
  height: 2px;
  background: #a2a2a2;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}
.footer-block ul li a {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  color: #ababab;
}
.footer-block ul.socials-links {
  max-width: 100%;
}
.footer-block ul.socials-links li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 18px 0 0;
  padding: 0;
}
.footer-block ul.socials-links li:before {
  display: none;
}
.footer-block ul.socials-links li a {
  font-size: 24px;
  color: #fff;
}
.footer-block ul.socials-links li a:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.footer-block ul.socials-links li a:hover {
  opacity: 0.8;
}
.footer-block ul.socials-links li a.facebook:before {
  content: "";
}
.footer-block ul.socials-links li a.twitter:before {
  content: "";
}
.footer-block ul.socials-links li a.google:before {
  content: "";
}
.footer-block ul.socials-links li a.rss:before {
  content: "";
}
.footer-block ul.socials-links li a.vk:before {
  content: "";
}
.footer-block ul.socials-links li a.ok:before {
  content: "";
}
.footer-block ul.socials-links li a:hover {
  text-decoration: none;
}
.footer-block form .block-content {
  margin: 0 0 20px 0;
}
.footer-block form .input-box {
  padding: 0;
}
.footer-block form .input-box input {
  border-radius: 0;
  border: 1px solid #7e7e7e;
  padding: 8px;
  height: 35px;
  background: none;
  color: #ababab;
  font-size: 14px;
}
.footer-block form .input-box input:focus, .footer-block form .input-box input:active {
  outline: 0;
}

/* ================================================= *
 * 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 {
  /*display: none;*/
  /*temp style*/
  margin-bottom: 1.5em;
}

.products-list .action .button, .products-list .action .button-callback, .products-list .action .button-oneclick, .products-list .action .button-location,
.products-grid .actions .button,
.products-grid .actions .button-callback,
.products-grid .actions .button-oneclick,
.products-grid .actions .button-location {
  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: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, 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: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #666769;
}
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: #00a950;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name,
.product-tab-carousel .product-name {
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.products-grid .product-name a,
.products-list .product-name a,
.product-tab-carousel .product-name a {
  font-weight: 500;
  color: #555;
  line-height: 18px;
}
.products-grid .product-name a:hover,
.products-list .product-name a:hover,
.product-tab-carousel .product-name a:hover {
  color: #555;
}

.products-grid .product-name,
.product-tab-carousel .product-name {
  max-width: 55%;
  text-transform: none;
  color: #555;
  overflow: hidden;
}

.products-grid a.brand-name,
.products-list a.brand-name,
.product-tab-carousel a.brand-name {
  color: #50b948;
}

.products-grid .brand-name,
.products-list .brand-name,
.product-tab-carousel .brand-name {
  display: block;
  clear: left;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  color: #555;
}
.products-grid .brand-name:hover,
.products-list .brand-name:hover,
.product-tab-carousel .brand-name:hover {
  color: #555;
  text-decoration: none;
}
.products-grid .brand-name img,
.products-list .brand-name img,
.product-tab-carousel .brand-name img {
  display: none;
}
.products-grid .brand-name p,
.products-list .brand-name p,
.product-tab-carousel .brand-name p {
  margin: 0;
  padding: 0;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
}

.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

/*.products-grid {
    &.products-grid--max-4-col {
        .product-item {
            height: 445px;
        }
    }
    &.products-grid--max-3-col {
        .product-item {
            height: 500px;
        }
    }
}*/
.products-grid .product-image,
.product-tab-carousel .product-image {
  width: 100%;
  margin-bottom: 10px;
}

.products-grid .product-image img,
.product-tab-carousel .product-image img {
  width: 100%;
  height: auto;
}
.products-grid .product-image img:hidden,
.product-tab-carousel .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,
.product-tab-carousel .product-info {
  float: left;
  width: 100%;
  position: relative;
  padding-left: 17px;
  padding-right: 17px;
  padding-bottom: 35px;
}

.products-grid .actions,
.product-tab-carousel .actions {
  padding-top: 10px;
  clear: both;
}

.products-grid .ratings,
.product-tab-carousel .ratings {
  float: left;
  margin: 8px 0 0 0;
  width: 100%;
  line-height: 14px;
}

.products-grid .ratings .rating-box,
.product-tab-carousel .ratings .rating-box {
  margin: 0;
  display: inline-block;
}

.products-grid .ratings .amount,
.product-tab-carousel .ratings .amount {
  display: inline-block;
  margin: 0;
  line-height: 14px;
}
.products-grid .ratings .amount a,
.product-tab-carousel .ratings .amount a {
  float: left;
  font-size: 14px;
  color: #555;
}
.products-grid .ratings .amount a:focus,
.product-tab-carousel .ratings .amount a:focus {
  outline: 0;
}

.products-grid .price-box,
.product-tab-carousel .price-box {
  float: right;
  color: #A0A0A0;
  font-size: 13px;
  margin: 0 0 5px 5px;
  position: relative;
}
.products-grid .price-box .old-price, .products-grid .price-box .special-price,
.product-tab-carousel .price-box .old-price,
.product-tab-carousel .price-box .special-price {
  float: right;
  clear: both;
}
.products-grid .price-box .old-price,
.product-tab-carousel .price-box .old-price {
  position: absolute;
  right: 0;
  bottom: 0;
}
.products-grid .price-box .old-price .price,
.product-tab-carousel .price-box .old-price .price {
  color: #A1A1A1;
  font-size: 14px;
}
.products-grid .price-box .special-price,
.product-tab-carousel .price-box .special-price {
  padding: 0 0 16px 0;
}
.products-grid .price-box .price,
.product-tab-carousel .price-box .price {
  color: #000;
  font-size: 18px;
  line-height: 1;
}

.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 47.72727%;
}

.products-grid > li:nth-child(odd) {
  clear: left;
}

.products-grid > li:nth-child(even) {
  margin-right: 0;
}

.products-grid .product-image,
.product-tab-carousel .product-image {
  border: solid #e8e8e8;
  border-width: 0 0 1px 0;
}
.products-grid .product-image:before, .products-grid .product-image:after,
.product-tab-carousel .product-image:before,
.product-tab-carousel .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.products-grid .product-image:before,
.product-tab-carousel .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.products-grid .product-image:after,
.product-tab-carousel .product-image:after {
  background-image: url("https://skin.add.ua/skin/frontend/add/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.products-grid .product-image.loading,
.product-tab-carousel .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after,
.product-tab-carousel .product-image.loading:before,
.product-tab-carousel .product-image.loading:after {
  display: block;
}

/* 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 {
  width: 33.33333%;
}
.products-grid > li:nth-child(3n+1) {
  clear: left;
}
.products-grid > li:nth-child(3n) {
  margin-right: 0;
}

/* 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;
}

/* Set column config */
.products-grid--max-4-col > li {
  width: 25%;
}

.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;
}

/* Set column config */
.products-grid--max-5-col > li {
  width: 20%;
}

.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;
}

/* Set column config */
.products-grid--max-6-col > li {
  width: 16.66667%;
}

.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: 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;
}

.products-list .product-name a {
  font-size: 18px;
}

.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%;
}

/* ============================================ *
 * 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 #e8e8e8;
  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: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  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: 0;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e8e8;
  position: relative;
  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 #00a950;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #fcfcfc;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  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: 0;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e8e8;
  position: relative;
  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 #00a950;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #fcfcfc;
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #e8e8e8;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #A0A0A0;
}
.block-layered-nav dl dd ol {
  height: auto;
}
.block-layered-nav dl dd ol.collapsed {
  height: 189px;
  overflow: hidden;
}
.block-layered-nav dl dd .filters-toggle {
  margin: 0 -24px -29px -16px;
  padding: 23px 24px 20px 16px;
  border-top: 1px solid #e8e8e8;
  line-height: 1;
  position: relative;
}
.block-layered-nav dl dd .filters-toggle:hover {
  cursor: pointer;
}
.block-layered-nav dl dd .filters-toggle.processed:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.block-layered-nav dl dd .filters-toggle:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  position: absolute;
  bottom: auto;
  top: 24px;
  right: 15px;
  font-size: 12px;
}

.block-layered-nav .block-content > dl > dt {
  margin-top: 21px;
  padding: 20px;
  font-size: 16px;
  line-height: 1;
  color: #666769;
  background: #fff;
  border: solid #e8e8e8;
  border-width: 1px 1px 0 1px;
  letter-spacing: 4.7px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background: #fff;
}

.block-layered-nav .block-content > dl > dd {
  padding: 0 24px 29px 16px;
  border: solid #e8e8e8;
  border-width: 0 1px 1px 1px;
  /*&.last {
      padding: 0 36px 77px 28px;
  }*/
}
.block-layered-nav .block-content > dl > dd ol li a {
  padding: 0;
  color: #666769;
  line-height: 1;
}
.block-layered-nav .block-content > dl > dd ol li a .value-wrapper {
  width: 87%;
  display: inline-block;
  padding: 10px 0;
  border-top: 1px solid #e8e8e8;
  margin-left: 33px;
}
.block-layered-nav .block-content > dl > dd ol li a .value-wrapper .count {
  color: #666769;
}
.block-layered-nav .block-content > dl > dd ol li a:hover {
  text-decoration: none;
}
.block-layered-nav .block-content > dl > dd ol li a input {
  display: none;
}
.block-layered-nav .block-content > dl > dd ol li a input + .value-wrapper:before {
  content: "";
  float: left;
  width: 25px;
  height: 21px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/filter-checkboxes.png") 0 -48px no-repeat;
  margin: -4px 0 0 -33px;
}
.block-layered-nav .block-content > dl > dd ol li a input:checked + .value-wrapper:before {
  background-position: 0 0;
}
.block-layered-nav .block-content > dl > dd ol li:first-child a .value-wrapper {
  border-top: 0;
}
.block-layered-nav .block-content > dl > dd ol li.selected, .block-layered-nav .block-content > dl > dd ol li:hover {
  margin: 0 -24px 0 -16px;
  background: #f4f4f4;
}
.block-layered-nav .block-content > dl > dd ol li.selected a, .block-layered-nav .block-content > dl > dd ol li:hover a {
  padding: 0 24px 0 16px;
}
.block-layered-nav .block-content > dl > dd .price-slider {
  background-image: none;
  background-color: #fff;
  height: 9px;
  border: 1px solid #9d9d9d;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle {
  background-image: none;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border: 2px solid #505050;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff;
  position: relative;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle:hover {
  cursor: pointer;
  border: 3px solid #50b948;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle:hover .price-slider-value {
  border: 2px solid #50b948;
  color: #50b948;
  bottom: -49px;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle:hover .price-slider-value:after {
  /*margin-left: -11px;*/
  border-bottom: 11px solid #50b948;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle .price-slider-value {
  position: absolute;
  bottom: -47px;
  left: 50%;
  transform: translate(-50%);
  padding: 5px 8px;
  border: 1px solid #9e9e9e;
  font-size: 18px;
  line-height: 1;
  color: #848485;
  background: #fff;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle .price-slider-value:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-bottom: 10px solid #9e9e9e;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle .price-slider-value:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-bottom: 9px solid #fff;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  z-index: 10;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle.price-slider-from {
  margin: -9px 0 0 -12px;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle.price-slider-from .price-slider-value {
  margin-left: 2px;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle.price-slider-from:hover .price-slider-value {
  margin-left: 0;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle.price-slider-to {
  margin: -25px 0 0 0;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle.price-slider-to .price-slider-value {
  margin-left: -2px;
}
.block-layered-nav .block-content > dl > dd .price-slider .filter-handle.price-slider-to:hover .price-slider-value {
  margin-left: -4px;
}
.block-layered-nav .block-content > dl > dd .filter-track.price-slider {
  margin: 0 0 50px 14px;
}

.block-layered-nav .block-content dd.category-list,
.block-layered-nav .block-content dl.category-list {
  padding: 0 24px 29px 16px;
}
.block-layered-nav .block-content dd.category-list ol li a,
.block-layered-nav .block-content dl.category-list ol li a {
  display: inline-block;
  padding: 10px 0;
  border-top: 1px solid #e8e8e8;
  width: 100%;
}
.block-layered-nav .block-content dd.category-list ol li a .count,
.block-layered-nav .block-content dl.category-list ol li a .count {
  color: #666769;
}
.block-layered-nav .block-content dd.category-list ol li:first-child a,
.block-layered-nav .block-content dl.category-list ol li:first-child a {
  border: 0;
}
.block-layered-nav .block-content dd.category-list ol li:hover a,
.block-layered-nav .block-content dl.category-list ol li:hover a {
  width: calc(100% - 40px);
  margin: 0 24px 0 16px;
  padding: 10px 0;
}
.block-layered-nav .block-content dd.category-list.last,
.block-layered-nav .block-content dl.category-list.last {
  padding: 0 24px 29px 16px;
}

.block-layered-nav .block-content > dl > dt {
  /*padding-left: 10px;*/
}
.block-layered-nav .block-content > dl > dt:after {
  display: none;
}

.block-layered-nav .currently {
  border: solid #e8e8e8;
  border-width: 1px 1px 0 1px;
  padding: 18px 23px 14px 16px;
}
.block-layered-nav .currently .block-subtitle {
  display: block;
  /*@include h4;*/
  margin: 0 0 25px 5px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  color: #666769;
  text-transform: uppercase;
}
.block-layered-nav .currently ol {
  /*padding-left: $box-spacing;
  margin-bottom: $box-spacing;*/
}
.block-layered-nav .currently ol li {
  /*margin-bottom: 5px;*/
}
.block-layered-nav .currently ol li .label {
  display: none;
}
.block-layered-nav .currently ol li .value {
  display: inline-block;
  width: 87%;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px solid #e8e8e8;
  /*font-weight: bold;*/
}
.block-layered-nav .currently ol li:first-child .value {
  border-top: 0;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}
.block-layered-nav .currently .btn-remove {
  float: left;
  margin: 10px 8px 0 0;
  width: 25px;
  height: 21px;
  border: 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/filter-checkboxes.png") 0 -24px no-repeat;
}
.block-layered-nav .currently .btn-remove:after {
  display: none;
}

.block-layered-nav .actions {
  margin: 0;
  padding: 18px 23px 18px 16px;
  background: #e8e8e8;
  border: solid #e8e8e8;
  border-width: 0 1px 1px 1px;
}
.block-layered-nav .actions a {
  font-size: 14px;
  line-height: 21px;
  color: #656567;
  text-transform: capitalize;
}
.block-layered-nav .actions a:before {
  content: "";
  float: left;
  width: 25px;
  height: 21px;
  margin: 0 8px 0 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/filter-checkboxes.png") 0 -24px no-repeat;
}
.block-layered-nav .actions.bottom-actions {
  margin-top: 28px;
}

.productlabel {
  background-repeat: no-repeat !important;
}

.productlabel > span {
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.productlabel.position-TL span {
  transform: rotate(-45deg);
}

.productlabel.position-TR span {
  transform: rotate(45deg);
}

.productlabel.productlabel-product-top-label > span {
  text-align: center;
  vertical-align: top;
  padding: 13px 0;
}

.item.processed .productlabel-product-top-label.position-TL, .item.processed .productlabel-product-top-label.position-TR {
  top: -7px;
}
.item.processed .productlabel-product-top-label.position-BR, .item.processed .productlabel-product-top-label.position-BL {
  right: 5px;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.catalog-product-view {
  overflow-x: hidden;
}

.product-view .product-essential .ratings .rating-box,
.product-view .product-essential .ratings .rating-links {
  display: inline-block;
  vertical-align: baseline;
  margin: 0;
}
.product-view .product-essential .ratings .rating-links a {
  color: #666769;
  text-decoration: underline;
}
.product-view .product-essential .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 {
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-service {
  float: right;
  width: 25.8%;
  margin-left: 20px;
}
.product-view .product-shop {
  overflow: hidden;
}
.product-view .product-shop .brand-name {
  display: inline-block;
  background: #e8e8e8;
  padding: 7px 25px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-view .product-shop .product-name {
  display: none;
}
.product-view .product-shop .product-name .h1 {
  display: block;
  font-size: 31px;
  text-transform: none;
  margin-bottom: 5px;
}
.product-view .product-shop .product-sku {
  float: left;
}
.product-view .product-shop .price-info {
  float: left;
  min-width: 100px;
  margin-top: 13px;
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}
.product-view .product-shop .ratings, .product-view .product-shop .no-rating {
  margin: 0 0 0 30px;
  float: left;
}
.product-view .product-shop .ratings:before, .product-view .product-shop .no-rating:before {
  content: '';
  width: 1px;
  height: 10px;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 20px;
  background: #666769;
}
.product-view .product-shop .price-box {
  margin: 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 {
  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: #666769;
}
.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: #666769;
}
.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 .availability {
  margin: 20px 0 0 40px;
  float: left;
}

.product-service {
  border-radius: 8px;
  padding: 5px 20px;
  border: 1px solid #EDEDED;
}
.product-service h4 {
  font-size: 12px;
}
.product-service .product-service-block {
  padding: 15px 0;
}
.product-service .product-service-block + .product-service-block {
  border-top: 1px solid #e8e8e8;
}
.product-service .callback-service, .product-service .oneclick-service {
  text-align: center;
}
.product-service .callback-phone-field {
  padding: 0 22px;
  margin-bottom: 14px;
}
.product-service .callback-phone-input {
  font-size: 18px;
  border: 1px solid #89898a;
  border-radius: 4px;
  color: #000;
  background: #fff url("https://skin.add.ua/skin/frontend/add/default/images/icons/oneclick-bg.png") 95% 0 no-repeat;
}
.product-service .callback-phone-input::-webkit-input-placeholder {
  color: #000;
}
.product-service .callback-phone-input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
}
.product-service .callback-phone-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
}
.product-service .callback-phone-input:-ms-input-placeholder {
  color: #000;
}
.product-service .button-oneclick {
  min-width: 80%;
}
.product-service .oneclickorder-fields {
  margin-bottom: 15px;
}
.product-service .map-service {
  text-align: center;
}
.product-service .map-service .map-header {
  padding-left: 34px;
  position: relative;
  text-align: left;
}
.product-service .map-service .map-header:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  position: absolute;
  font-size: 20px;
  color: #89898a;
  left: 0;
  top: 0;
}
.product-service .map-service .map-select {
  margin-bottom: -5px;
  text-align: left;
}
.product-service .map-service .map-select .ui-selectmenu-button,
.product-service .map-service .map-select select {
  width: 100%;
}
.product-service .map-service .map {
  border: 1px solid #50b948;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/map.jpg") 0 0 no-repeat;
  min-height: 80px;
  -webkit-background-size: cover;
  background-size: cover;
}
.product-service .map-service .button-location {
  margin-top: -21px;
}

.product-img-box {
  width: 37.8%;
  float: left;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 20px;
}
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 460px;
  margin: 0 auto;
}

.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://skin.add.ua/skin/frontend/add/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

.product-image-thumbs li {
  float: left;
  margin: 0 10px;
}
.product-image-thumbs a {
  display: block;
  text-align: center;
  border: 1px solid #EDEDED;
}

.no-touch .product-image-thumbs a:hover, .no-touch .product-image-thumbs a.active {
  border-color: #50b948;
}

.product-img-box {
  padding-right: 20px;
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

.product-view {
  padding-top: 17px;
  /* Set a min-height so that the floated elements break appropriately
  .add-to-cart .qty-wrapper,
  .product-options-bottom .price-box,
  .add-to-cart-buttons {
      min-height: 40px;
  } */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-box {
  margin-top: 15px;
}
.product-view .add-to-box .zblock {
  clear: both;
}
.product-view .add-to-cart .qty-wrapper {
  float: left;
  margin-right: 45px;
}
.product-view .add-to-cart .qty-wrapper label {
  display: block;
  clear: both;
}
.product-view .add-to-cart .qty-wrapper .ui-selectmenu-button {
  min-width: 95px;
}
.product-view .add-to-cart-buttons {
  float: left;
  max-width: 100%;
  margin-top: 11px;
}
.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-cart,
.product-view .add-to-cart-buttons .button-order {
  min-height: 47px;
  line-height: 47px;
  border: 0;
  padding: 0 30px 0 0;
  font-size: 16px;
  background: #50b948;
  color: #fff;
  border-radius: 50px;
}
.product-view .add-to-cart-buttons .button-cart:before,
.product-view .add-to-cart-buttons .button-order:before {
  background: #00a950;
  height: 47px;
  min-width: 60px;
  margin-right: 10px;
  float: left;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.product-view .add-to-cart-buttons .button-cart:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  font-size: 14px;
}
.product-view .add-to-cart-buttons .button-order:before {
  content: '';
  background: #00a950 url("https://skin.add.ua/skin/frontend/add/default/images/icons/order_icon.png") 50% 50% no-repeat;
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

/* 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: 15px;
  margin-left: 140px;
  float: left;
}
.product-view .add-to-links a {
  display: inline-block;
  text-decoration: underline;
  color: #666769;
}
.product-view .add-to-links .add-to-dlist:before {
  content: "";
  display: inline-block;
  vertical-align: text-bottom;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/list_icon.png");
  height: 19px;
  width: 18px;
  margin-right: 5px;
  text-decoration: none;
}

.product-view .sharing-links {
  float: left;
  clear: both;
  margin-top: 10px;
}
.product-view .sharing-links li {
  float: left;
  padding: 5px;
  margin-left: 10px;
}
.product-view .sharing-links a {
  display: block;
  text-decoration: none;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}
.product-view .sharing-links a:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.product-view .sharing-links a.link-facebook {
  background: #3b5998;
}
.product-view .sharing-links a.link-facebook:before {
  content: "";
}
.product-view .sharing-links a.link-twitter {
  background: #3cf;
}
.product-view .sharing-links a.link-twitter:before {
  content: "";
}
.product-view .sharing-links a.link-google {
  background: #c74b46;
}
.product-view .sharing-links a.link-google:before {
  content: "";
}
.product-view .sharing-links a.link-pinterest {
  background: #e85061;
}
.product-view .sharing-links a.link-pinterest:before {
  content: "";
}
.product-view .sharing-links a.link-vk {
  background: #45668e;
}
.product-view .sharing-links a.link-vk:before {
  content: "";
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}

.box-reviews-header {
  padding-bottom: 10px;
}
.box-reviews-header .ask-question-btn {
  margin-top: 0;
  background: #50b948;
}

.product-collateral-wrapper {
  margin-top: 20px;
}

.product-collateral {
  clear: both;
}

.collateral-tabs dd h2 {
  display: none;
}

.box-collateral {
  clear: both;
}

.product-collateral {
  overflow: hidden;
}
.product-collateral .toggle-tabs {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #e8e8e8;
}
.product-collateral .toggle-tabs li {
  float: left;
  border-right: 1px solid #e8e8e8;
}
.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;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
}
.product-collateral .toggle-tabs li.current {
  border-bottom: 1px solid #50b948;
}
.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: #00a950;
}
.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 #e8e8e8;
  border-top: 0;
  max-height: 450px;
  overflow-y: auto;
}
.product-collateral > dl > dd.current {
  display: block;
}
.product-collateral.tabs {
  clear: none;
}

.product-collateral-ad {
  float: right;
  width: 25.8%;
  margin-left: 20px;
  text-align: center;
}
.product-collateral-ad img {
  margin: 0 auto;
}

.product-view .product-shop .product-name {
  display: block;
}

.product-img-box .product-name {
  display: none;
}

#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;
}

.grouped-items-table .name-wrapper {
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  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;
}

.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;
  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: #666769;
  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: #666769;
}

/* "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;
}

.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: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  margin-bottom: 0;
}
.block-related .block-subtitle {
  margin-bottom: 7px;
}
.block-related .product {
  margin-left: 20px;
  position: relative;
}
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
.block-related .product-details {
  margin-left: 90px;
}
.block-related .product-name {
  margin-bottom: 3px;
}
.block-related .product-details .price-box {
  margin: 2px 0 3px;
}
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px;
}
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  margin-left: 0;
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
}
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px;
}
.box-up-sell .ratings {
  display: none;
}

@media screen and (min-width: 495px) {
  .services-bottom .product-service {
    margin: 0;
    width: 100%;
  }
  .services-bottom .product-service .product-service-block {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    border: none;
  }
}
.services-bottom .product-service {
  margin: 0;
  width: 100%;
}

.remodal-callback {
  max-width: 500px;
  text-align: left;
}
.remodal-callback .time-picker select {
  width: 90px;
}
.remodal-callback .time-picker .to {
  padding: 0 10px;
}
.remodal-callback .ui-selectmenu-button {
  min-width: 105px;
}
.remodal-callback h2, .remodal-callback .remodal-close {
  text-align: center;
}

/* ============================================ *
 * 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 #e8e8e8;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
.map-popup.map-popup-right {
  left: 10px !important;
}
.map-popup.map-popup-left {
  left: auto !important;
  right: 10px !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;
}
.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;
}
.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, .map-popup .map-popup-checkout .button-callback, .map-popup .map-popup-checkout .button-oneclick, .map-popup .map-popup-checkout .button-location {
  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;
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
.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.display-single-price {
  padding-bottom: 10px;
}

.cart-table {
  float: left;
  width: 100%;
  border: 1px solid #d2d2d2;
  margin-bottom: 0 !important;
}

.cart .button, .cart .button-callback, .cart .button-oneclick, .cart .button-location {
  white-space: normal;
}

.cart-forms,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

.cart-totals-wrapper, .opc-totals-wrapper {
  float: right;
  clear: right;
  width: 30%;
}
.cart-totals-wrapper .cart-totals, .opc-totals-wrapper .cart-totals, .cart-totals-wrapper .opc-totals, .opc-totals-wrapper .opc-totals {
  padding: 35px;
  background: #e8e8e8;
  margin: 0;
}
.cart-totals-wrapper .cart-totals table, .opc-totals-wrapper .cart-totals table, .cart-totals-wrapper .opc-totals table, .opc-totals-wrapper .opc-totals table {
  border-bottom: 1px solid #d2d2d2;
  margin-bottom: 15px;
}
.cart-totals-wrapper .cart-totals table tbody tr td, .opc-totals-wrapper .cart-totals table tbody tr td, .cart-totals-wrapper .opc-totals table tbody tr td, .opc-totals-wrapper .opc-totals table tbody tr td {
  padding: 0 0 15px 0 !important;
  text-transform: capitalize;
  font-size: 14px;
}
.cart-totals-wrapper .cart-totals table tbody tr td:first-child, .opc-totals-wrapper .cart-totals table tbody tr td:first-child, .cart-totals-wrapper .opc-totals table tbody tr td:first-child, .opc-totals-wrapper .opc-totals table tbody tr td:first-child {
  padding: 0 5px 15px 75px !important;
  text-align: left;
}
.cart-totals-wrapper .cart-totals table tfoot, .opc-totals-wrapper .cart-totals table tfoot, .cart-totals-wrapper .opc-totals table tfoot, .opc-totals-wrapper .opc-totals table tfoot {
  display: none;
}
.cart-totals-wrapper .cart-totals form, .opc-totals-wrapper .cart-totals form, .cart-totals-wrapper .opc-totals form, .opc-totals-wrapper .opc-totals form, .cart-totals-wrapper .cart-totals .discount-form-wrapper, .opc-totals-wrapper .cart-totals .discount-form-wrapper, .cart-totals-wrapper .opc-totals .discount-form-wrapper, .opc-totals-wrapper .opc-totals .discount-form-wrapper {
  position: relative;
  padding: 0 0 15px 75px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d2d2d2;
  /*&:before {
      content: '';
      position: absolute;
      top: -5px;
      left: 0;
      width: 28px;
      height: 28px;
      background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/question-mark.png") 0 0 no-repeat;
  }*/
}
.cart-totals-wrapper .cart-totals form h2, .opc-totals-wrapper .cart-totals form h2, .cart-totals-wrapper .opc-totals form h2, .opc-totals-wrapper .opc-totals form h2, .cart-totals-wrapper .cart-totals .discount-form-wrapper h2, .opc-totals-wrapper .cart-totals .discount-form-wrapper h2, .cart-totals-wrapper .opc-totals .discount-form-wrapper h2, .opc-totals-wrapper .opc-totals .discount-form-wrapper h2 {
  display: none;
}
.cart-totals-wrapper .cart-totals form label, .opc-totals-wrapper .cart-totals form label, .cart-totals-wrapper .opc-totals form label, .opc-totals-wrapper .opc-totals form label, .cart-totals-wrapper .cart-totals .discount-form-wrapper label, .opc-totals-wrapper .cart-totals .discount-form-wrapper label, .cart-totals-wrapper .opc-totals .discount-form-wrapper label, .opc-totals-wrapper .opc-totals .discount-form-wrapper label {
  display: block;
  font-size: 14px;
  text-align: left;
  text-transform: capitalize;
}
.cart-totals-wrapper .cart-totals form .field-wrapper input, .opc-totals-wrapper .cart-totals form .field-wrapper input, .cart-totals-wrapper .opc-totals form .field-wrapper input, .opc-totals-wrapper .opc-totals form .field-wrapper input, .cart-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper input, .opc-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper input, .cart-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper input, .opc-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper input {
  float: left;
  width: 55%;
  border: 1px solid #50b948;
  border-radius: 3px 0 0 3px;
}
.cart-totals-wrapper .cart-totals form .field-wrapper .button-wrapper, .opc-totals-wrapper .cart-totals form .field-wrapper .button-wrapper, .cart-totals-wrapper .opc-totals form .field-wrapper .button-wrapper, .opc-totals-wrapper .opc-totals form .field-wrapper .button-wrapper, .cart-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper .button-wrapper, .opc-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper .button-wrapper, .cart-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper .button-wrapper, .opc-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper .button-wrapper {
  float: left;
  width: 45%;
}
.cart-totals-wrapper .cart-totals form .field-wrapper .button-wrapper .button2, .opc-totals-wrapper .cart-totals form .field-wrapper .button-wrapper .button2, .cart-totals-wrapper .opc-totals form .field-wrapper .button-wrapper .button2, .opc-totals-wrapper .opc-totals form .field-wrapper .button-wrapper .button2, .cart-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2, .opc-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2, .cart-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2, .opc-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2 {
  width: 100%;
  padding: 9px 12px 10px;
  background: #50b948;
  border-radius: 0 3px 3px 0;
  line-height: 1;
  text-align: center;
}
.cart-totals-wrapper .cart-totals form .field-wrapper .button-wrapper .button2 span, .opc-totals-wrapper .cart-totals form .field-wrapper .button-wrapper .button2 span, .cart-totals-wrapper .opc-totals form .field-wrapper .button-wrapper .button2 span, .opc-totals-wrapper .opc-totals form .field-wrapper .button-wrapper .button2 span, .cart-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2 span, .opc-totals-wrapper .cart-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2 span, .cart-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2 span, .opc-totals-wrapper .opc-totals .discount-form-wrapper .field-wrapper .button-wrapper .button2 span {
  height: auto;
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 14px;
}
.cart-totals-wrapper .cart-totals .grand-total, .opc-totals-wrapper .cart-totals .grand-total, .cart-totals-wrapper .opc-totals .grand-total, .opc-totals-wrapper .opc-totals .grand-total {
  float: left;
  width: 100%;
  font-size: 18px;
  padding-left: 75px;
  text-align: left;
  text-transform: uppercase;
}
.cart-totals-wrapper .cart-totals .grand-total .price, .opc-totals-wrapper .cart-totals .grand-total .price, .cart-totals-wrapper .opc-totals .grand-total .price, .opc-totals-wrapper .opc-totals .grand-total .price {
  float: right;
}

.tooltip-question {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 28px;
  height: 28px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/question-mark.png") 0 0 no-repeat;
  cursor: pointer;
}

.tooltip-box {
  display: none;
  position: absolute;
  width: 300px;
  padding: 8px;
  color: #666769;
  background: #FFFFFF;
  border: 1px solid #666769;
  text-align: left;
  border-radius: 4px;
  left: -34px;
}
.tooltip-box.show {
  display: block;
}
.tooltip-box:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 37px;
  width: 0;
  height: 0;
  border-top: 9px solid #666769;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}
.tooltip-box:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 38px;
  width: 0;
  height: 0;
  border-top: 8px solid #FFFFFF;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: #F4F4F4;
  border: 1px solid #e8e8e8;
}

.cart-table,
.cart-totals,
.opc-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 .opc-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .opc-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 28px;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h6 {
  font-size: 16px;
  border-bottom: none;
  margin-bottom: 0;
}
.cart .page-title .cart-items-counter {
  margin-bottom: 25px;
}
.cart .page-title .cart-items-counter span {
  color: #50b948;
}

.checkout-types {
  position: relative;
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
.checkout-types .needs-for-free-delivery {
  position: absolute;
  right: 0;
  top: -37px;
  font-size: 14px;
  line-height: 26px;
  color: #555;
  padding-right: 18px;
  border-bottom: 1px solid #ababab;
}
.checkout-types .needs-for-free-delivery span {
  color: #50b948;
  line-height: 26px;
}
.checkout-types .needs-for-free-delivery span.free-delivery {
  position: relative;
  text-transform: uppercase;
  padding-right: 40px;
  display: inline-block;
  height: 26px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/shipping_icon.png") right 5px no-repeat;
}
.checkout-types .needs-for-free-delivery span.free-delivery:before {
  content: '';
  position: absolute;
  top: 100%;
  right: 8px;
  width: 0;
  height: 0;
  border-top: 7px solid #ababab;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.checkout-types .needs-for-free-delivery span.free-delivery:after {
  content: '';
  position: absolute;
  top: 100%;
  right: 9px;
  width: 0;
  height: 0;
  margin: -1px 0 0 0;
  border-top: 6px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.checkout-types.bottom .needs-for-free-delivery {
  top: auto;
  bottom: -37px;
  border-top: 1px solid #ababab;
  border-bottom: 0;
}
.checkout-types.bottom .needs-for-free-delivery .free-delivery:before {
  content: '';
  position: absolute;
  bottom: 100%;
  top: auto;
  right: 8px;
  border-top: 0;
  border-bottom: 7px solid #ababab;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}
.checkout-types.bottom .needs-for-free-delivery .free-delivery:after {
  content: '';
  position: absolute;
  bottom: 100%;
  top: auto;
  right: 9px;
  border-top: 0;
  margin: -1px 0 0 0;
  border-bottom: 6px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
}
.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;
}

.checkout-types.bottom .paypal-or {
  text-align: right;
  padding-right: 70px;
}

.cart-totals .checkout-types .btn-checkout, .opc-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

.cart-table {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
  text-transform: none;
  font-size: 14px;
  line-height: 1;
  color: #555;
}
.cart-table h2 {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 25px !important;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.cart-table tr {
  border-bottom: 1px solid #d2d2d2;
}
.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: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links {
  display: none;
}
.cart-table .product-cart-info {
  width: 40%;
}
.cart-table .product-cart-image {
  min-width: 210px;
}
.cart-table .product-cart-image .btn-remove {
  display: inline-block;
  margin: 45px 29px 0 0;
  content: "";
  width: 13px;
  height: 13px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/remove-btn.png") 0 0 no-repeat;
}
.cart-table .product-cart-image .product-image {
  border: 0;
  display: inline-block;
}
.cart-table .product-cart-image .product-image img {
  max-width: 105px;
  min-width: 105px;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-add-to {
  width: 17%;
}
.cart-table .product-cart-add-to a {
  color: #555;
  text-decoration: underline;
}
.cart-table .product-cart-add-to a:before {
  content: "";
  float: left;
  margin: 0 11px 12px 0;
  width: 18px;
  height: 19px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/paper-list-icon.png") 0 0 no-repeat;
}
.cart-table .product-cart-actions .button, .cart-table .product-cart-actions .button-callback, .cart-table .product-cart-actions .button-oneclick, .cart-table .product-cart-actions .button-location {
  border: 0;
  background: #50b948;
  border-radius: 50%;
  padding: 5px;
}
.cart-table .product-cart-actions .button:before, .cart-table .product-cart-actions .button-callback:before, .cart-table .product-cart-actions .button-oneclick:before, .cart-table .product-cart-actions .button-location:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  font-size: 14px;
  color: #fff;
}
.cart-table .product-cart-actions .button span, .cart-table .product-cart-actions .button-callback span, .cart-table .product-cart-actions .button-oneclick span, .cart-table .product-cart-actions .button-location span {
  display: none;
}
.cart-table .product-cart-sku {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #666769;
  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 #666769;
  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: #eee;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
.cart-table .product-cart-actions .button, .cart-table .product-cart-actions .button-callback, .cart-table .product-cart-actions .button-oneclick, .cart-table .product-cart-actions .button-location {
  margin-bottom: 5px;
}
.cart-table .item-options {
  padding-left: 15px;
}

.cart-footer-actions {
  float: left;
  width: 100%;
  margin: 25px 0 40px;
}

/* ============================================ *
 * 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 #eee;
}
.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: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
.shipping #co-shipping-method-form .buttons-set .button, .shipping #co-shipping-method-form .buttons-set .button-callback, .shipping #co-shipping-method-form .buttons-set .button-oneclick, .shipping #co-shipping-method-form .buttons-set .button-location {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #e8e8e8;
  background-color: #fcfcfc;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: white;
}

.cart .cart-totals, .cart .opc-totals {
  text-align: right;
}
.cart .cart-totals:after, .cart .opc-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table, .cart .opc-totals table {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td, .cart .opc-totals table td {
  padding: 2px 0px;
}
.cart .cart-totals table td:first-child, .cart .opc-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td, .cart .opc-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th,
.cart .opc-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table tfoot, .cart .opc-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td, .cart .opc-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span, .cart .opc-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price,
.cart .opc-totals table tfoot span.price {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong, .cart .opc-totals table tfoot strong {
  font-weight: 400;
}

.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

.cart .giftcard {
  width: 100%;
}
.cart .giftcard h2 {
  display: none;
}
.cart .giftcard label {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
.cart .giftcard .field-wrapper {
  display: inline-block;
}
.cart .giftcard .validation-advice {
  display: inline;
}
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
.cart .giftcard .button-wrapper > button {
  float: left;
}
.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;
}

.section.confirmation {
  overflow: hidden;
  margin: 25px 0;
}
.section.confirmation .section-header div {
  float: left;
  margin: 10px 0;
}
.section.confirmation .button2.btn-continue {
  float: left;
  margin-top: 15px;
}
.section.confirmation .cart-table tr td {
  text-align: left;
}
.section.confirmation .cart-table tr td.a-center {
  text-align: center;
}
.section.confirmation .cart-table tr td.a-right {
  text-align: right;
}
.section.confirmation .cart-totals-wrapper .cart-totals table, .section.confirmation .opc-totals-wrapper .cart-totals table, .section.confirmation .cart-totals-wrapper .opc-totals table, .section.confirmation .opc-totals-wrapper .opc-totals table {
  margin-bottom: 0;
  border: 0;
}
.section.confirmation .cart-totals-wrapper .cart-totals table tr td:first-child, .section.confirmation .opc-totals-wrapper .cart-totals table tr td:first-child, .section.confirmation .cart-totals-wrapper .opc-totals table tr td:first-child, .section.confirmation .opc-totals-wrapper .opc-totals table tr td:first-child {
  padding-left: 55px !important;
}
.section.confirmation .cart-totals-wrapper .cart-totals table tr td .last, .section.confirmation .opc-totals-wrapper .cart-totals table tr td .last, .section.confirmation .cart-totals-wrapper .opc-totals table tr td .last, .section.confirmation .opc-totals-wrapper .opc-totals table tr td .last {
  vertical-align: bottom;
}
.section.confirmation .cart-totals-wrapper .cart-totals table .grand_total, .section.confirmation .opc-totals-wrapper .cart-totals table .grand_total, .section.confirmation .cart-totals-wrapper .opc-totals table .grand_total, .section.confirmation .opc-totals-wrapper .opc-totals table .grand_total {
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  font-weight: normal;
  border-top: 1px solid #d2d2d2;
}
.section.confirmation .cart-totals-wrapper .cart-totals table .grand_total td, .section.confirmation .opc-totals-wrapper .cart-totals table .grand_total td, .section.confirmation .cart-totals-wrapper .opc-totals table .grand_total td, .section.confirmation .opc-totals-wrapper .opc-totals table .grand_total td {
  padding-top: 22px !important;
  padding-bottom: 0 !important;
  text-transform: uppercase;
}
.section.confirmation .cart-totals-wrapper .cart-totals table .grand_total td strong, .section.confirmation .opc-totals-wrapper .cart-totals table .grand_total td strong, .section.confirmation .cart-totals-wrapper .opc-totals table .grand_total td strong, .section.confirmation .opc-totals-wrapper .opc-totals table .grand_total td strong {
  font-weight: normal;
}

/* ============================================ *
 * 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 */
/* ============================================ *
 * 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;
}

.success-product-image img {
  max-width: none;
}

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after, .form-field:after, .wrapper:after, .header-sticky-wrapper:after, .product-view .product-shop .product-info-line:after, .product-view .sharing-links:after, .product-collateral-wrapper:after, .store-locator-view-detail:after, .tabs .ui-tabs-panel:after, .md-content-wrapper:after, .opc-col-wrapper:after, .opc-address-form-billing-content:after, .opc-address-form-billing-content form:after, .opc-address-form-billing:after,
.opc-address-form-shipping:after, .discount-form-wrapper .field-wrapper:after, .success-page-top:after, .post-list: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: #666769;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #e8e8e8;
  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://skin.add.ua/skin/frontend/add/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
}

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
.configurable-swatch-list .not-available .x {
  display: block;
}
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #3399CC;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #e8e8e8;
  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;
}

.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: #e8e8e8;
  cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #3399CC;
}

.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;
}

.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: #666769;
  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 {
  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,
.customer-account-login .col2-set .buttons-set .button-callback,
.customer-account-login .col2-set .buttons-set .button-oneclick,
.customer-account-login .col2-set .buttons-set .button-location {
  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;
}
.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;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 0;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 20px;
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

.remember-me-box a.hide {
  display: none;
}
.remember-me-box .link-tip {
  position: relative;
  top: -3px;
  font-size: 13px;
  padding-left: 10px;
}

.remember-me-popup {
  display: none;
  border: 1px solid #e8e8e8;
  padding: 10px;
  position: relative;
  float: left;
  margin: -10px 0 25px;
}
.remember-me-popup:before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 35px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e8e8e8;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.remember-me-popup:after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 36px;
  width: 0;
  height: 0;
  margin-bottom: -1px;
  border-bottom: 9px solid #fff;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create {
  /*.buttons-set {
      max-width: 455px;
  }*/
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 10px;
}
.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;
  margin-bottom: 20px;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button, body.customer-account .my-account .title-buttons .button-callback, body.customer-account .my-account .title-buttons .button-oneclick, body.customer-account .my-account .title-buttons .button-location {
  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;
}
body.customer-account .my-account .fieldset {
  margin-top: 10px;
  margin-bottom: 10px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 10px;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 10px;
}
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: 10px;
}
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, .fake-dashboard {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.dashboard .box-head, .fake-dashboard .box-head {
  margin-top: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.dashboard .box-head h2, .fake-dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a, .fake-dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title.title-with-btn, .fake-dashboard .box-title.title-with-btn {
  float: left;
  clear: both;
  width: 100%;
}
.dashboard .box-title.title-with-btn h3, .fake-dashboard .box-title.title-with-btn h3 {
  float: left;
  max-width: 80%;
}
.dashboard .box-title.title-with-btn a, .dashboard .box-title.title-with-btn .button, .dashboard .box-title.title-with-btn .button-callback, .dashboard .box-title.title-with-btn .button-oneclick, .dashboard .box-title.title-with-btn .button-location, .fake-dashboard .box-title.title-with-btn a, .fake-dashboard .box-title.title-with-btn .button, .fake-dashboard .box-title.title-with-btn .button-callback, .fake-dashboard .box-title.title-with-btn .button-oneclick, .fake-dashboard .box-title.title-with-btn .button-location {
  float: right;
  margin-left: 10px;
}
.dashboard .box-title a,
.dashboard .box-head a, .fake-dashboard .box-title a,
.fake-dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 12px;
}
.dashboard .box-title h3, .dashboard .box-head h3, .fake-dashboard .box-title h3, .fake-dashboard .box-head h3 {
  font-size: 16px;
  font-weight: normal;
  color: #707070;
  margin-bottom: 22px;
  letter-spacing: 2.5px;
}
.dashboard .box-account, .fake-dashboard .box-account {
  width: 300px;
  padding: 27px 22px !important;
  border-bottom: 0;
  margin-bottom: 30px;
  background: #fafafa;
}
.dashboard .box-account.full-width, .fake-dashboard .box-account.full-width {
  width: 100%;
}
.dashboard .box-account.full-width .save-btn, .fake-dashboard .box-account.full-width .save-btn {
  float: left;
  width: auto;
}
.dashboard .box-account.half-width, .fake-dashboard .box-account.half-width {
  width: 48%;
}
.dashboard .box-account.half-width .save-btn, .fake-dashboard .box-account.half-width .save-btn {
  float: left;
  width: auto;
}
.dashboard .box-account.half-width .forgot-pass-link, .fake-dashboard .box-account.half-width .forgot-pass-link {
  margin-left: 10px;
}
.dashboard .box-account .box-content, .fake-dashboard .box-account .box-content {
  padding: 32px 16px 25px 20px;
  border-top: 2px solid #50b948;
  background: #fff;
  overflow: hidden;
}
.dashboard .box-account .box-content p.required, .fake-dashboard .box-account .box-content p.required {
  margin: -20px 0 5px;
  text-align: right;
}
.dashboard .box-account .box-content p, .fake-dashboard .box-account .box-content p {
  margin-bottom: 30px;
}
.dashboard .box-account .box-content p.back-link, .fake-dashboard .box-account .box-content p.back-link {
  margin: 0;
}
.dashboard .box-account .box-content .buttons-set .button.dark-green-btn, .dashboard .box-account .box-content .buttons-set .dark-green-btn.button-callback, .dashboard .box-account .box-content .buttons-set .button-callback.btn-proceed-checkout, .dashboard .box-account .box-content .buttons-set .dark-green-btn.button-oneclick, .dashboard .box-account .box-content .buttons-set .button-oneclick.btn-proceed-checkout, .dashboard .box-account .box-content .buttons-set .dark-green-btn.button-location, .dashboard .box-account .box-content .buttons-set .button-location.btn-proceed-checkout, .dashboard .box-account .box-content .buttons-set .button.btn-proceed-checkout, .fake-dashboard .box-account .box-content .buttons-set .button.dark-green-btn, .fake-dashboard .box-account .box-content .buttons-set .dark-green-btn.button-callback, .fake-dashboard .box-account .box-content .buttons-set .button-callback.btn-proceed-checkout, .fake-dashboard .box-account .box-content .buttons-set .dark-green-btn.button-oneclick, .fake-dashboard .box-account .box-content .buttons-set .button-oneclick.btn-proceed-checkout, .fake-dashboard .box-account .box-content .buttons-set .dark-green-btn.button-location, .fake-dashboard .box-account .box-content .buttons-set .button-location.btn-proceed-checkout, .fake-dashboard .box-account .box-content .buttons-set .button.btn-proceed-checkout {
  margin-top: 3px;
}
.dashboard .box-account .box-content .label, .dashboard .box-account .box-content .value, .fake-dashboard .box-account .box-content .label, .fake-dashboard .box-account .box-content .value {
  display: inline-block;
  line-height: 1;
  margin-bottom: 15px;
}
.dashboard .box-account .box-content .label, .fake-dashboard .box-account .box-content .label {
  width: 20%;
  text-align: right;
  margin-right: 15px;
}
.dashboard .box-account .box-content .value, .fake-dashboard .box-account .box-content .value {
  width: 68%;
}
.dashboard .box-account .box-content .edit-btn, .fake-dashboard .box-account .box-content .edit-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
}
.dashboard .box-account .box-content .green-text-caption, .fake-dashboard .box-account .box-content .green-text-caption {
  color: #50b948;
}
.dashboard .box-account .box-content .box-row, .fake-dashboard .box-account .box-content .box-row {
  margin-bottom: 15px;
}
.dashboard .box-account .box-content .card-bonus-amount, .fake-dashboard .box-account .box-content .card-bonus-amount {
  font-size: 16px;
}
.dashboard .box-account .box-content .card-creation-date, .fake-dashboard .box-account .box-content .card-creation-date {
  font-size: 16px;
}
.dashboard .box-account .box-content .card-status, .fake-dashboard .box-account .box-content .card-status {
  padding-left: 26px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/in-stock.png") 0 3px no-repeat;
}
.dashboard .box-account .box-content .card-status.passive, .fake-dashboard .box-account .box-content .card-status.passive {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/out-of-stock.png") 0 3px no-repeat;
}
.dashboard .box-account .box-content .card-image-wrapper, .fake-dashboard .box-account .box-content .card-image-wrapper {
  display: inline-block;
  position: relative;
  width: 208px;
  height: 131px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/card-amount.png") 0 0 no-repeat;
}
.dashboard .box-account .box-content .card-image-wrapper .card-number, .fake-dashboard .box-account .box-content .card-image-wrapper .card-number {
  position: absolute;
  bottom: 15px;
  left: 20px;
  padding: 12px 13px;
  background: #00a950;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  border-radius: 6px;
}
.dashboard .box-account .box-content .favorite-addresses, .fake-dashboard .box-account .box-content .favorite-addresses {
  margin: -32px -16px 0 -20px;
}
.dashboard .box-account .box-content .favorite-addresses li, .fake-dashboard .box-account .box-content .favorite-addresses li {
  padding: 23px 19px 20px;
  border-bottom: 1px solid #e8e8e8;
  line-height: 16px;
  vertical-align: middle;
}
.dashboard .box-account .box-content .favorite-addresses li:before, .fake-dashboard .box-account .box-content .favorite-addresses li:before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 16px;
  margin-right: 12px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/simple-location-mark.png") 0 0 no-repeat;
}
.dashboard .box-account .box-content .favorite-addresses li a, .fake-dashboard .box-account .box-content .favorite-addresses li a {
  color: #707070;
  text-decoration: none;
}
.dashboard .box-account .box-content .favorite-addresses li a:hover, .fake-dashboard .box-account .box-content .favorite-addresses li a:hover {
  color: #50b948;
}
.dashboard .box-account .box-content #map-canvas, .fake-dashboard .box-account .box-content #map-canvas {
  min-height: 600px;
}
.dashboard .box-account .box-content #list-store, .fake-dashboard .box-account .box-content #list-store {
  display: block;
}
.dashboard .box-account .box-content #list-store table, .fake-dashboard .box-account .box-content #list-store table {
  min-width: 100%;
  width: 100%;
}
.dashboard .box-account .box-content #list-store.stores-list, .fake-dashboard .box-account .box-content #list-store.stores-list {
  padding: 0;
  margin: 20px 0;
}
.dashboard .box-account .box-content #list-store.stores-list .col2, .fake-dashboard .box-account .box-content #list-store.stores-list .col2 {
  min-width: 25%;
}
.dashboard .box-account .box-content #list-store.stores-list .col3, .fake-dashboard .box-account .box-content #list-store.stores-list .col3 {
  min-width: 20%;
}
.dashboard .box-account .box-content #list-store.stores-list .store-schedule::before, .fake-dashboard .box-account .box-content #list-store.stores-list .store-schedule::before {
  background-image: none;
  float: none;
  height: 0;
  margin: 0;
  vertical-align: middle;
  width: 0;
}
.dashboard .box-account .box-content #list-store.stores-list .store-phone::before, .fake-dashboard .box-account .box-content #list-store.stores-list .store-phone::before {
  background-image: none;
  clear: none;
  float: none;
  height: 0;
  margin: 0;
  width: 0;
}
.dashboard .box-account.box-recent, .dashboard .box-account.box-account-druglist, .fake-dashboard .box-account.box-recent, .fake-dashboard .box-account.box-account-druglist {
  width: 100%;
}
.dashboard .box-recent .box-head, .dashboard .box-account-druglist .box-head, .fake-dashboard .box-recent .box-head, .fake-dashboard .box-account-druglist .box-head {
  content: '';
  display: table;
  clear: both;
  width: 100%;
}
.dashboard .box-recent .box-head h3, .dashboard .box-account-druglist .box-head h3, .fake-dashboard .box-recent .box-head h3, .fake-dashboard .box-account-druglist .box-head h3 {
  float: left;
  max-width: 80%;
}
.dashboard .box-recent .box-head a, .dashboard .box-account-druglist .box-head a, .fake-dashboard .box-recent .box-head a, .fake-dashboard .box-account-druglist .box-head a {
  float: right;
  margin-top: -8px;
}
.dashboard .box-recent .box-content, .dashboard .box-account-druglist .box-content, .fake-dashboard .box-recent .box-content, .fake-dashboard .box-account-druglist .box-content {
  overflow: visible;
  padding: 0 0 22px 0;
}
.dashboard .box-account-druglist, .fake-dashboard .box-account-druglist {
  overflow: hidden;
}
.dashboard .box-account-druglist .box-content, .fake-dashboard .box-account-druglist .box-content {
  padding: 32px 16px 25px 20px !important;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2, .fake-dashboard .col2-set .col-1,
.fake-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, .fake-dashboard .col2-set .col-1 .box-title,
.fake-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, .fake-dashboard .col2-set .col-1 .box-title h2,
.fake-dashboard .col2-set .col-1 .box-title h3,
.fake-dashboard .col2-set .col-2 .box-title h2,
.fake-dashboard .col2-set .col-2 .box-title h3 {
  font-size: 14px;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a, .fake-dashboard .col2-set .col-1 .box-title a,
.fake-dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .box-reviews.box-account, .fake-dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li, .fake-dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child, .fake-dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number, .fake-dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details, .fake-dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings, .fake-dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong, .fake-dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box, .fake-dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

.card-info {
  display: inline-block;
  margin-left: 40px;
  vertical-align: top;
}
.card-info .card-number {
  margin-bottom: 15px;
  padding: 0 25px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  letter-spacing: 2px;
  background: #50b948;
  text-transform: uppercase;
  text-align: center;
}
.card-info .card-name {
  font-size: 14px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.add-card-form {
  margin-bottom: 25px;
}
.add-card-form label {
  text-align: left !important;
}

.add-card-static {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #555;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 10px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}

/* ============================================ *
 * Order View
 * ============================================ */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 10px;
}
.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: "HelveticaLTStd", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: Georgia, Times, "Times New Roman", serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: Georgia, Times, "Times New Roman", serif;
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 10px;
}
.order-info-box .box-content strong {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

#my-orders-table {
  margin: 0;
  color: #555;
}
#my-orders-table th {
  background: none;
  text-transform: none;
}
#my-orders-table th, #my-orders-table td {
  padding: 18px 20px;
  border: 0;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
#my-orders-table td.view a {
  text-transform: none;
  text-decoration: underline;
  color: #555;
}
#my-orders-table .status.complete {
  color: #50b948;
}
#my-orders-table .status.closed, #my-orders-table .status.canceled {
  color: #e94d4d;
}
#my-orders-table .status.holded {
  color: #d4d648;
}
#my-orders-table .status.novaya_pochta_nalogka, #my-orders-table .status.novaya_pochta_predoplata, #my-orders-table .status.processing, #my-orders-table .status.payment_review, #my-orders-table .status.fraud {
  color: #009bc6;
}
#my-orders-table .total {
  text-align: right;
}
#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;
}

.order-additional {
  margin: 40px 0;
}

.order-gift-message dd {
  margin-top: 10px;
}

.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2, .fake-dashboard .col2-set .col-1,
.fake-dashboard .col2-set .col-2 {
  padding-right: 10px;
  padding-bottom: 0;
}

body.customer-account .data-table td.view a {
  white-space: normal;
}

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin: 0;
}
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
body.newsletter-manage-index .my-account .form-list {
  border-top: 0;
  padding-top: 0;
}

/* ============================================ *
 * Social login
 * ============================================ */
.inchoo-socialconnect-register .inchoo-socialconnect-register-facebook,
.inchoo-socialconnect-register .inchoo-socialconnect-register-vk,
.inchoo-socialconnect-register .inchoo-socialconnect-register-twitter {
  margin-top: 27px;
}

.customer-account-login .inchoo-socialconnect-login.box-account {
  background: #fafafa;
  border-bottom: 0 none;
  margin-bottom: 30px;
  padding: 27px 22px !important;
}
.customer-account-login .inchoo-socialconnect-login.box-account.full-width {
  width: 100%;
}
.customer-account-login .inchoo-socialconnect-login.box-account .box-content {
  background: #fff;
  border-top: 2px solid #50b948;
  overflow: hidden;
  padding: 32px 16px 25px 20px;
}

/* ============================================ *
 * Question/Advice
 * ============================================ */
.dialog-wrapper {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  color: #555;
}
.dialog-wrapper .question {
  float: left;
  width: 100%;
  margin-bottom: 45px;
}
.dialog-wrapper .advice {
  float: right;
  width: 90%;
  padding: 25px;
  background: #f1f1f1;
}
.dialog-wrapper .picture {
  float: left;
  width: 57px;
  height: 57px;
  margin-top: -6px;
}
.dialog-wrapper .picture.user-pic {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/user-pic.png") 0 0 no-repeat;
}
.dialog-wrapper .picture.pharmacist-pic {
  width: 58px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/provizor-pic.png") 0 0 no-repeat;
}
.dialog-wrapper .question-content,
.dialog-wrapper .advice-content {
  float: left;
  margin-left: 28px;
  max-width: 86%;
}
.dialog-wrapper .dialog-title {
  margin-bottom: 30px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.dialog-wrapper .name {
  margin-bottom: 15px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  color: #555;
}
.dialog-wrapper .date {
  margin-bottom: 15px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #a1a1a1;
}
.dialog-wrapper .date:before, .dialog-wrapper .date:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 0;
  border-top: 1px solid #a1a1a1;
  margin-bottom: 4px;
}
.dialog-wrapper .date:before {
  margin-right: 7px;
}
.dialog-wrapper .date:after {
  margin-left: 7px;
}
.dialog-wrapper .title {
  margin-bottom: 5px;
  font-size: 15px;
}

/* ============================================ *
 * Reviews
 * ============================================ */
.review-item {
  float: left;
  padding: 18px 16px 18px 20px;
  margin: 0 0 0 -20px;
  width: calc(100% + 36px);
  border-bottom: 1px solid #e8e8e8;
}
.review-item:last-child {
  padding-bottom: 0;
  border: 0;
}
.review-item .product {
  float: left;
  width: 30%;
  margin-right: 2%;
  border: 1px solid #e8e8e8;
}
.review-item .product .image {
  float: left;
  width: 100%;
  margin: 16px 0;
  text-align: center;
}
.review-item .product .image img {
  display: inline-block;
}
.review-item .product .product-info {
  float: left;
  width: 100%;
  padding: 16px;
  border-top: 1px solid #e8e8e8;
}
.review-item .product .product-info .product-name {
  float: left;
  max-width: 57%;
  color: #555;
  margin-bottom: 10px;
}
.review-item .product .product-info .product-name:hover {
  text-decoration: none;
}
.review-item .product .product-info .price {
  float: right;
  max-width: 41%;
  font-size: 18px;
  color: #000;
}
.review-item .product .product-info .brand-name {
  float: left;
  width: 100%;
}
.review-item .product .product-info .ratings {
  float: left;
  width: 100%;
}
.review-item .review-content {
  float: left;
  width: 68%;
}
.review-item .date {
  margin-bottom: 15px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #a1a1a1;
}
.review-item .date:before, .review-item .date:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 0;
  border-top: 1px solid #a1a1a1;
  margin-bottom: 4px;
}
.review-item .date:before {
  margin-right: 7px;
}
.review-item .date:after {
  margin-left: 7px;
}

/* ============================================ *
 * Druglist
 * ============================================ */
.my-druglist .products-grid .brand-name {
  display: block;
  float: none;
  clear: none;
}
.my-druglist .products-grid .link-remove {
  font-size: 14px;
  text-align: left;
}
.my-druglist .tabs {
  background: transparent;
}
.my-druglist .tabs .owl-theme .owl-controls .owl-next {
  margin-left: -24px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 10px;
  max-width: 435px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}

/* ============================================ *
 * PayPal
 * ============================================ */
.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;
}

.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, .opc-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

.bml-ad.large {
  display: block;
}

div.paypal-logo {
  text-align: center;
  margin: 10px 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 #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  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: "HelveticaLTStd", Verdana, Arial, 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: #666769;
}
#customer-reviews h3 {
  font-family: "HelveticaLTStd", Verdana, Arial, 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 #e8e8e8;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #e8e8e8;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #e8e8e8;
  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: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #3399CC;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.tab-content .product-reviews-list {
  margin: 0 -15px;
}

.product-reviews-list .product-review-item {
  position: relative;
  padding: 30px 30px 30px 106px;
}
.product-reviews-list .product-review-item:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  position: absolute;
  font-size: 50px;
  color: #555555;
  left: 20px;
  top: 0;
}
.product-reviews-list .product-review-item:nth-child(2n) {
  background: #f1f1f1;
}
.product-reviews-list .product-review-item .ratings, .product-reviews-list .product-review-item .name {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.product-reviews-list .product-review-item .name {
  text-transform: uppercase;
}
.product-reviews-list .product-review-item .title {
  margin-bottom: 10px;
}
.product-reviews-list .product-review-item .date {
  color: #afafaf;
  font-size: 12px;
}
.product-reviews-list .product-review-item .date:before, .product-reviews-list .product-review-item .date:after {
  content: '---';
}

.review-summary-table {
  border-bottom: 1px solid #e8e8e8;
  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;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  float: left;
  height: 13px;
  text-indent: -9999px;
}

/* ============================================ *
 * 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%;
}

.box-reviews-header .ask-question-btn:before {
  display: none;
}

#review-form {
  text-align: left;
}

.remodal-add-review-form {
  max-width: 500px;
}
.remodal-add-review-form .product-review-table {
  width: auto;
}
.remodal-add-review-form .product-review-table thead {
  display: none;
}
.remodal-add-review-form .product-review-table td, .remodal-add-review-form .product-review-table th {
  border: 0;
  padding-left: 0;
  background: none;
}
.remodal-add-review-form .product-review-table .form-list {
  padding-top: 10px;
}
.remodal-add-review-form .product-review-table .fit {
  width: 1px;
}

.js-loader-overlay {
  position: relative;
}
.js-loader-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}
.js-loader-overlay:before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -22px;
  margin-top: -22px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/ajax-loader.gif") no-repeat 0 0;
}

/* ============================================ *
 * 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: #2e8ab8;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #297aa3;
}
.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 {
  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 #2e8ab8 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 #2e8ab8;
}

.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: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
#wishlist-table .product-name a {
  color: #00a950;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #eee;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #50b948;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button, #wishlist-table .item-manage .button-callback, #wishlist-table .item-manage .button-oneclick, #wishlist-table .item-manage .button-location {
  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, #wishlist-table td.customer-wishlist-item-cart .button-callback, #wishlist-table td.customer-wishlist-item-cart .button-oneclick, #wishlist-table td.customer-wishlist-item-cart .button-location {
  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-callback, #wishlist-table td .button-oneclick, #wishlist-table td .button-location,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #666769;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #00a950;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #00a950;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

#wishlist-table.clean-table td {
  padding-left: 10px;
  padding-right: 10px;
}

/* ============================================ *
 * 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 {
  position: relative;
  display: block;
  font-size: 14px;
}
.header-minicart .minicart-message {
  font-size: 14px;
  display: block;
  padding: 10px;
}
.header-minicart .empty {
  background: #fff;
  padding: 10px;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.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://skin.add.ua/skin/frontend/add/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .minicart-wrapper.loading {
  overflow: hidden;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  border-top-left-radius: 8px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding: 25px 20px 15px;
  text-transform: uppercase;
  margin-bottom: 0;
  background: #f1f1f1;
  /*.close {
      width: 40px;
      float: right;
      display: block;
      color: $c-text;
      text-decoration: none;
      font-weight: normal;
      font-size: 30px;
      position: absolute;
      top: -8px;
      right: $box-spacing - 13px;
  }*/
}
.header-minicart .mini-products-list {
  padding: 0 10px;
  margin-bottom: 0;
  background: #fff;
  overflow: hidden;
}
.header-minicart .mini-products-list li {
  margin: 0;
  padding: 8px 5px 8px 11px;
  position: relative;
}
.header-minicart .mini-products-list li + li {
  border-top: 1px solid #DDDDDD;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
.header-minicart .mini-products-list--scroll {
  overflow-y: auto;
  max-height: 270px;
}
.header-minicart .minicart-promotion {
  background: #fff;
}
.header-minicart .product-details {
  margin-left: 85px;
  padding-right: 35px;
}
.header-minicart .product-details .product-name {
  padding-top: 0;
}
.header-minicart .product-details .product-name a {
  color: #666769;
}
.header-minicart .product-details .product-price-line {
  color: #50b948;
}
.header-minicart .block-content {
  margin: 0;
  padding: 0 20px;
  background: #fff;
}
.header-minicart .subtotal {
  border-top: 1px solid #ddd;
  padding: 18px 25px;
  background: #fff;
  text-align: left;
}
.header-minicart .subtotal .label {
  color: #666769;
  font-size: 12px;
  text-transform: uppercase;
}
.header-minicart .subtotal .price {
  float: right;
  color: #50b948;
  font-size: 14px;
}
.header-minicart .minicart-actions {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 10px 10px 10px 40px;
  margin-top: 0;
  overflow: hidden;
  position: relative;
  background: #f1f1f1;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
  float: right;
  color: #fff;
  border: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background: #00a950;
}
.header-minicart .minicart-actions .cart-link {
  float: left;
  margin-top: 14px;
  text-transform: uppercase;
  font-size: 12px;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart .minicart-error-message {
  text-align: center;
  color: #fff;
  background: #CF5050;
  display: none;
}
.header-minicart .minicart-success-message {
  text-align: center;
  color: #fff;
  background: #11B400;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}
.header-minicart .remove {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  line-height: 20px;
  text-decoration: none;
  color: #a5a5a5;
}
.header-minicart .remove:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  font-size: 20px;
}
.header-minicart .remove:hover {
  color: #00a950;
}

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  right: 0;
  width: 100% !important;
  z-index: 200;
}
.search-autocomplete ul {
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #00a950;
  padding-left: 0;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #00a950;
  cursor: pointer;
  font-size: 12px;
  padding: 10px 27px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: #008f44;
}
.search-autocomplete ul li.selected {
  background-color: #00a950;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  padding: 10px;
}
.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #e8e8e8;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  font-weight: 400;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 13px;
}

.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: #666769;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #666769;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #666769;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #666769;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

.cms-no-route .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: "HelveticaLTStd", Verdana, Arial, sans-serif;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #666769;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  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: 0;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e8e8;
  position: relative;
  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 #00a950;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
#accordion > dl > dt:hover {
  background-color: #fcfcfc;
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #e8e8e8;
}
#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;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
.notice-cookie .notice-text p {
  padding-bottom: 14.5px;
  line-height: 1.3;
}
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm button {
  margin-top: 5px;
  margin-bottom: 10px;
}

#addTagForm .form-add {
  margin-top: 10px;
}

.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #e8e8e8;
  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, .my-tag-edit .btn-remove.button-callback, .my-tag-edit .btn-remove.button-oneclick, .my-tag-edit .btn-remove.button-location {
  padding: 0;
}
.my-tag-edit .button.btn-remove:after, .my-tag-edit .btn-remove.button-callback:after, .my-tag-edit .btn-remove.button-oneclick:after, .my-tag-edit .btn-remove.button-location:after {
  color: white;
}

/* ============================================ *
 * 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.
 * ============================================ */
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}

.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: 10px;
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button, body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button-callback, body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button-oneclick, body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button-location {
  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: 10px;
}
.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, .billing-agreements .info-box .button-callback, .billing-agreements .info-box .button-oneclick, .billing-agreements .info-box .button-location {
  float: right;
  margin-top: 7px;
}
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

/* ============================================ *
 * 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%;
  max-width: 100px;
}

.widget {
  clear: both;
}

.widget .pager {
  float: none;
  width: 100%;
}

.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 {
  width: 25%;
}
.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 {
  width: 20%;
}
.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 #e8e8e8;
  border-right: 1px solid #e8e8e8;
  margin-bottom: 10px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button, body[class*="checkout-multishipping-"] .page-title .button-callback, body[class*="checkout-multishipping-"] .page-title .button-oneclick, body[class*="checkout-multishipping-"] .page-title .button-location {
  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 #e8e8e8;
  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 #e8e8e8;
  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;
}

.social-login {
  text-align: justify;
  font-size: 0;
}
.social-login:after {
  content: '';
  display: inline-block;
  width: 100%;
}
.social-login a {
  padding: 0;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}
.social-login a:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.social-login a:before {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
}
.social-login a:hover {
  color: inherit;
  text-decoration: none;
}
.social-login .social-login-facebook {
  color: #425f9f;
}
.social-login .social-login-vk {
  color: #43749d;
}
.social-login .social-login-google {
  color: #cf5d46;
}
.social-login .social-login-twitter {
  color: #4099FF;
}

.social-login-facebook:before {
  content: "";
  background: #425f9f;
  border-radius: 6px;
  color: #fff;
}

.social-login-vk:before {
  content: "";
  color: #43749d;
  font-size: 26px;
}

.social-login-google:before {
  content: "";
  background: #cf5d46;
  border-radius: 6px;
  color: #fff;
}

.social-login-twitter:before {
  content: "";
}

#map_place {
  width: 920px;
  max-width: 100%;
  height: 625px;
  margin: 0;
  padding: 0;
}

#map-canvas {
  min-height: 835px;
  margin: 0;
  padding: 0;
}

#list-store {
  display: none;
}

#store-map-canvas {
  width: 895px;
  height: 700px;
  margin: 0;
  padding: 0;
}

#map-canvas img {
  max-width: none;
  max-height: none;
}

.main-container.storelocator {
  padding: 0;
}

.store-search-bar {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  padding: 30px 20px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 0 8px rgba(225, 225, 225, 0.87);
}
.store-search-bar .fieldset, .store-search-bar button {
  width: 23.9%;
}
.store-search-bar button {
  float: right;
  margin-top: 24px;
}
.store-search-bar .fieldset {
  float: left;
  margin: 0 16px 0 0 !important;
}
.store-search-bar .fieldset label {
  width: 100%;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  color: #707070;
}
.store-search-bar .fieldset .css-select .input-box select {
  width: 110%;
}

.stores-list {
  float: left;
  clear: both;
  width: 100%;
  margin: 20px 0 100px;
  padding: 170px 10px 0;
  overflow: auto;
}
.stores-list table {
  width: 100%;
  min-width: 1280px;
  color: #707070;
}
.stores-list table a {
  color: #707070;
  text-decoration: none;
}
.stores-list table a:hover {
  color: #50b948;
}
.stores-list table thead td {
  padding: 16px 10px 16px 50px;
  border-bottom: 3px solid #00a950;
}
.stores-list table thead td.col5 {
  width: 25%;
}
.stores-list table tbody tr:nth-child(2n+1) {
  background: #f4f4f4;
}
.stores-list table tbody tr td {
  padding: 30px 10px 20px 50px;
  border-bottom: 1px solid #c3c3c3;
  vertical-align: top;
}
.stores-list table tbody tr td.col5 {
  overflow: hidden;
}
.stores-list table tbody tr td.col5 > div:first-child {
  clear: both;
  float: left;
  margin-top: -7px;
}
.stores-list table tbody tr td.col5 > div {
  width: 100%;
}
.stores-list table tbody tr td .store-address:before {
  content: '';
  float: left;
  margin: -4px 20px 9px -20px;
  width: 26px;
  height: 29px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/storelocator.png") 0 0 no-repeat;
}
.stores-list table tbody tr td .store-schedule:before {
  content: '';
  float: left;
  margin: 0 15px 0 -15px;
  width: 38px;
  height: 31px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/storelocator.png") 0 -32px no-repeat;
  vertical-align: middle;
}
.stores-list table tbody tr td .store-schedule.around-the-clock:before {
  float: none;
  display: inline-block;
  margin-bottom: 0;
  width: 38px;
  height: 31px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/storelocator.png") 0 -109px no-repeat;
}
.stores-list table tbody tr td .store-phone, .stores-list table tbody tr td .store-secondary-phone {
  display: block;
  margin-bottom: 8px;
  min-height: 29px;
  white-space: nowrap;
}
.stores-list table tbody tr td .store-phone:before, .stores-list table tbody tr td .store-secondary-phone:before {
  content: '';
  float: left;
  clear: left;
  margin: -7px 10px 9px -10px;
  width: 24px;
  height: 29px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/storelocator.png") 0 -77px no-repeat;
}
.stores-list table tbody tr td .store-special-tag-icon {
  float: left;
  clear: left;
  margin: 0 8px 10px 0;
}
.stores-list table tbody tr td .store-special-tag-name {
  line-height: 32px;
}

.remodal.remodal-storelocator {
  width: 85%;
  max-width: 1280px;
  padding: 0 0 0 35px;
}
.remodal.remodal-storelocator #map_place img {
  max-width: none;
  max-height: none;
}
.remodal.remodal-storelocator .storelocator-map-sidebar {
  float: left;
  width: 24%;
  margin-right: 2%;
  padding-top: 35px;
  text-align: left;
}
.remodal.remodal-storelocator .storelocator-map-sidebar h6 {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 14px;
  color: #555;
}
.remodal.remodal-storelocator .storelocator-map-sidebar .css-select label {
  color: #707070;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  width: 100%;
}
.remodal.remodal-storelocator .storelocator-map-sidebar .css-select .input-box {
  height: 36px;
}
.remodal.remodal-storelocator .storelocator-map-sidebar .css-select .input-box .link-remove:before {
  margin-bottom: -5px;
}
.remodal.remodal-storelocator .storelocator-map-sidebar .css-select select {
  font-size: 14px;
}
.remodal.remodal-storelocator .storelocator-map-sidebar ul {
  max-height: 545px;
  overflow: auto;
  margin-top: 20px;
  border: 1px solid #cacaca;
  border-radius: 3px;
  padding: 5px 25px 5px 5px;
}
.remodal.remodal-storelocator .storelocator-map-sidebar ul li {
  padding: 17px 0;
  border-top: 1px solid #d6d6d6;
  font-size: 14px;
  line-height: 14px;
  color: #666769;
}
.remodal.remodal-storelocator .storelocator-map-sidebar ul li:first-child {
  border: 0;
}
.remodal.remodal-storelocator .storelocator-map-sidebar ul li a {
  font-size: 14px;
  line-height: 14px;
  color: #666769;
}
.remodal.remodal-storelocator .storelocator-map-content {
  float: left;
  width: 74%;
  background: #f1f1f1;
  border-radius: 0 6px 6px 0;
  text-align: left;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name {
  margin: 0;
  padding: 25px 50px 25px 25px;
  font-size: 31px;
  line-height: 31px;
  color: #666769;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details {
  padding: 0 15px 15px 25px;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details:after {
  content: '';
  display: table;
  clear: both;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .price-box {
  float: left;
  margin: 5px 0 0 0;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .price-box .price {
  font-size: 24px;
  line-height: 24px;
  color: #555;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .add-to-cart {
  float: right;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .add-to-cart .qty-wrapper {
  margin: 6px 23px 0 0;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .add-to-cart .qty-wrapper label {
  display: inline-block;
  font-size: 14px;
  color: #707070;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .add-to-cart .availability {
  float: left;
  margin: 13px 15px 0 0;
  font-size: 14px;
  color: #555;
}
.remodal.remodal-storelocator .storelocator-map-content .product-name-details .add-to-cart .add-to-cart-buttons {
  margin: 0;
  float: right;
}

.storelocator-index-view .product-collateral .button.ask-question-btn:before, .storelocator-index-view .product-collateral .ask-question-btn.button-callback:before, .storelocator-index-view .product-collateral .ask-question-btn.button-oneclick:before, .storelocator-index-view .product-collateral .ask-question-btn.button-location:before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 20px;
  margin: 0 8px 0 0;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/send-comment.png") 0 0;
  vertical-align: middle;
}

.store-locator-view-detail {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 0 0 20px;
  background: #f1f1f1;
  border-radius: 8px;
}
.store-locator-view-detail .store-col-left {
  float: left;
  width: 28%;
  margin-right: 2%;
}
.store-locator-view-detail .store-col-left #add-to-favorite {
  margin-bottom: 18px;
}
.store-locator-view-detail .store-col-left #add-to-favorite button {
  padding: 6px 23px;
  width: 100%;
}
.store-locator-view-detail .store-col-left #add-to-favorite button:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 19px;
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/add-to-fav.png") 0 0 no-repeat;
  margin: 0 10px -5px 0;
}
.store-locator-view-detail .store-col-left .stores-photos .owl-item {
  text-align: center;
}
.store-locator-view-detail .store-col-left .stores-photos .owl-item img {
  display: inline-block;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls {
  margin: 0;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev, .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next {
  position: absolute;
  width: 62px;
  height: 62px;
  line-height: 62px;
  background-color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 0;
  opacity: 1;
  margin-top: -31px;
  top: 50%;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev:before, .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev:before, .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next:before {
  color: #999999;
  font-size: 30px;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev.disabled, .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next.disabled {
  display: none;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev:hover, .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next:hover {
  color: #50b948;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev {
  right: 100%;
  margin-right: -42px !important;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev:before {
  content: "";
}
@media only screen and (min-width: 1350px) {
  .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-prev {
    margin-right: -20px;
  }
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next {
  left: 100%;
  margin-left: -35px !important;
}
@media only screen and (min-width: 1350px) {
  .store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next {
    margin-left: -20px;
  }
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-next:before {
  content: "";
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-pagination {
  display: none;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-pagination .owl-page span {
  width: 17px;
  height: 17px;
  border: 1px solid #666769;
  background: #fff;
  opacity: 1;
}
.store-locator-view-detail .store-col-left .stores-photos.owl-theme .owl-controls .owl-pagination .owl-page.active span {
  background: #50b948;
  border-color: #50b948;
}
.store-locator-view-detail .store-col-left .store-special-tags {
  margin-top: 45px;
}
.store-locator-view-detail .store-col-left .store-special-tags > div {
  padding: 15px 0 15px 14px;
  border-top: 1px solid #cdcdcd;
}
.store-locator-view-detail .store-col-left .store-special-tags .store-special-tag-icon {
  float: left;
  clear: left;
  margin: 0 8px 5px 0;
}
.store-locator-view-detail .store-col-left .store-special-tags .store-special-tag-name {
  line-height: 32px;
}
.store-locator-view-detail .store-col-main {
  float: left;
  width: 70%;
}
.store-locator-view-detail .store-col-main #store-map-canvas {
  max-width: 100%;
}
.store-locator-view-detail .store-locator-header {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 18px;
}
.store-locator-view-detail .store-locator-header .store-locator-item-name {
  float: left;
  font-size: 14px;
  line-height: 33px;
  color: #00a950;
  font-weight: 600;
}
.store-locator-view-detail .store-locator-header button {
  float: right;
  margin-right: 20px;
}

.tabs {
  clear: both;
}
.tabs .ui-tabs-nav {
  border: 1px solid #e8e8e8;
}
.tabs .ui-tabs-nav li + li .ui-tabs-anchor {
  margin-left: 0;
}
.tabs .ui-tabs-anchor {
  position: relative;
  text-transform: uppercase;
  color: #707070;
  display: block;
  border: 1px solid #e8e8e8;
  margin: -1px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-align: center;
  font-size: 12px;
}
.tabs .ui-tabs-active .ui-tabs-anchor {
  color: #50b948;
  border-bottom: 2px solid #50b948;
}
.tabs .ui-tabs-panel > h2 {
  display: none;
}
.tabs .empty {
  padding: 20px;
  font-size: 14px;
  border: 1px solid #e8e8e8;
  margin-top: -1px;
}
.tabs .owl-item:hover {
  position: relative;
  z-index: 300;
  background: #fff;
}
.tabs .owl-wrapper {
  padding: 10px 0;
}
.tabs .owl-wrapper-outer {
  overflow: visible !important;
}
.tabs .owl-wrapper-outer .owl-item {
  opacity: 0;
  visibility: hidden;
}
.tabs .owl-wrapper-outer .owl-item.active {
  opacity: 1;
  visibility: visible;
}
.tabs .owl-item {
  position: relative;
  font-size: 0;
}
.tabs .owl-wrapper-outer {
  margin: -10px 0;
}
.tabs .owl-theme .owl-controls {
  margin: 0;
}
.tabs .owl-theme .owl-controls .owl-prev, .tabs .owl-theme .owl-controls .owl-next {
  position: absolute;
  width: 62px;
  height: 62px;
  line-height: 62px;
  background-color: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 0;
  opacity: 1;
  top: 300px;
}
.tabs .owl-theme .owl-controls .owl-prev:before, .tabs .owl-theme .owl-controls .owl-next:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.tabs .owl-theme .owl-controls .owl-prev:before, .tabs .owl-theme .owl-controls .owl-next:before {
  color: #999999;
  font-size: 30px;
}
.tabs .owl-theme .owl-controls .owl-prev.disabled, .tabs .owl-theme .owl-controls .owl-next.disabled {
  display: none;
}
.tabs .owl-theme .owl-controls .owl-prev:hover, .tabs .owl-theme .owl-controls .owl-next:hover {
  color: #50b948;
}
.tabs .owl-theme .owl-controls .owl-prev {
  right: 100%;
  margin-right: -62px;
}
.tabs .owl-theme .owl-controls .owl-prev:before {
  content: "";
}
@media only screen and (min-width: 1350px) {
  .tabs .owl-theme .owl-controls .owl-prev {
    margin-right: -20px;
  }
}
.tabs .owl-theme .owl-controls .owl-next {
  left: 100%;
  margin-left: -62px;
}
@media only screen and (min-width: 1350px) {
  .tabs .owl-theme .owl-controls .owl-next {
    margin-left: -20px;
  }
}
.tabs .owl-theme .owl-controls .owl-next:before {
  content: "";
}

.md-perspective body {
  background: #222;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  perspective: 600px;
}

.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 305px;
  min-width: 305px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.md-show {
  visibility: visible;
}

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all .3s ease-out-moz;
  -moz-transition: all .3s;
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}

.md-content {
  background: #fff;
  position: relative;
  border-radius: 3px;
  margin: 0 auto;
}

.md-content-wrapper {
  padding: 0 20px;
}
.md-content-wrapper p {
  margin-bottom: 30px;
}

.md-content h3 {
  text-align: center;
  font-size: 2.4em;
  font-weight: 300;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px 3px 0 0;
  margin: 0;
  padding: 0.4em;
}

.md-effect-7 {
  backface-visibility: inherit;
  -webkit-backface-visibility: inherit;
  top: 10%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.md-effect-7 .md-content {
  -webkit-transform: translateY(-200%);
  -moz-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: all .3s ease-out-moz;
  -moz-transition: all .3s;
  transition: all .3s;
  opacity: 0;
}

.md-show.md-effect-7 .md-content {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  border-radius: 3px;
  opacity: 1;
}

.md-modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
  overflow: hiden;
}

.md-modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 0;
}

.md-modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.md-modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.md-modal-footer a {
  font-size: 12px;
  margin-top: 9px;
  text-decoration: none;
}

.md-modal-header h4 {
  padding: 20px;
}

.md-modal-header .close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  text-decoration: none;
  top: 10px;
  z-index: 1000;
  display: block;
  height: 10px;
  width: 10px;
  text-indent: -999em;
  border: none;
}

.signin .md-modal-header .close {
  height: 10px !important;
  width: 10px !important;
}

#agreement-modal-body {
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
}

.move-columns {
  margin-bottom: 15px;
}

#floatingCirclesG {
  position: relative;
  width: 64px;
  height: 64px;
  -moz-transform: scale(0.6);
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  margin: 0 auto;
  top: 50%;
}

.f_circleG {
  position: absolute;
  background-color: #FFFFFF;
  height: 12px;
  width: 12px;
  -moz-border-radius: 6px;
  -moz-animation-name: f_fadeG;
  -moz-animation-duration: 0.72s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-border-radius: 6px;
  -webkit-animation-name: f_fadeG;
  -webkit-animation-duration: 0.72s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
  -ms-border-radius: 6px;
  -ms-animation-name: f_fadeG;
  -ms-animation-duration: 0.72s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: linear;
  -o-border-radius: 6px;
  -o-animation-name: f_fadeG;
  -o-animation-duration: 0.72s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: linear;
  border-radius: 6px;
  animation-name: f_fadeG;
  animation-duration: 0.72s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

#frotateG_01 {
  left: 0;
  top: 26px;
  -moz-animation-delay: 0.27s;
  -webkit-animation-delay: 0.27s;
  -ms-animation-delay: 0.27s;
  -o-animation-delay: 0.27s;
  animation-delay: 0.27s;
}

#frotateG_02 {
  left: 8px;
  top: 8px;
  -moz-animation-delay: 0.36s;
  -webkit-animation-delay: 0.36s;
  -ms-animation-delay: 0.36s;
  -o-animation-delay: 0.36s;
  animation-delay: 0.36s;
}

#frotateG_03 {
  left: 26px;
  top: 0;
  -moz-animation-delay: 0.45s;
  -webkit-animation-delay: 0.45s;
  -ms-animation-delay: 0.45s;
  -o-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

#frotateG_04 {
  right: 8px;
  top: 8px;
  -moz-animation-delay: 0.54s;
  -webkit-animation-delay: 0.54s;
  -ms-animation-delay: 0.54s;
  -o-animation-delay: 0.54s;
  animation-delay: 0.54s;
}

#frotateG_05 {
  right: 0;
  top: 26px;
  -moz-animation-delay: 0.63s;
  -webkit-animation-delay: 0.63s;
  -ms-animation-delay: 0.63s;
  -o-animation-delay: 0.63s;
  animation-delay: 0.63s;
}

#frotateG_06 {
  right: 8px;
  bottom: 8px;
  -moz-animation-delay: 0.72s;
  -webkit-animation-delay: 0.72s;
  -ms-animation-delay: 0.72s;
  -o-animation-delay: 0.72s;
  animation-delay: 0.72s;
}

#frotateG_07 {
  left: 26px;
  bottom: 0;
  -moz-animation-delay: 0.81s;
  -webkit-animation-delay: 0.81s;
  -ms-animation-delay: 0.81s;
  -o-animation-delay: 0.81s;
  animation-delay: 0.81s;
}

#frotateG_08 {
  left: 8px;
  bottom: 8px;
  -moz-animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-moz-keyframes f_fadeG {
  0% {
    background-color: #50b948;
  }
  100% {
    background-color: #FFFFFF;
  }
}
@-webkit-keyframes f_fadeG {
  0% {
    background-color: #50b948;
  }
  100% {
    background-color: #FFFFFF;
  }
}
@-ms-keyframes f_fadeG {
  0% {
    background-color: #50b948;
  }
  100% {
    background-color: #FFFFFF;
  }
}
@-o-keyframes f_fadeG {
  0% {
    background-color: #50b948;
  }
  100% {
    background-color: #FFFFFF;
  }
}
@keyframes f_fadeG {
  0% {
    background-color: #50b948;
  }
  100% {
    background-color: #FFFFFF;
  }
}
.shipping-block-methods,
.payment-block,
.opc-totals-wrapper {
  position: relative;
}

.opc-ajax-loader {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url("https://skin.add.ua/skin/frontend/add/default/images/ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  display: none;
  z-index: 1100;
}

.opc-progress-bar {
  margin: 35px 0 39px;
}
.opc-progress-bar ul {
  text-align: left;
}

/** BASE OPC ELEMENTS **/
.opc-col-wrapper {
  margin-left: -1.25%;
}
.opc-col-wrapper h3 {
  font-size: 14px;
}

.opc-wrapper-opc .opc-col-left,
.opc-wrapper-opc .opc-col-center,
.opc-wrapper-opc .opc-col-right {
  float: left;
  width: 32.083%;
  margin-left: 1.25%;
}

.opc-comment-block {
  border: 1px solid #50b948;
  padding: 20px 16px;
}

.opc-address-form-billing-content {
  border: 1px solid #d2d2d2;
  padding: 20px 16px;
}

.opc-address-form-billing-header {
  overflow: hidden;
  margin: 0;
  border: 1px solid #e8e8e8;
}
.opc-address-form-billing-header li {
  list-style: none;
  float: left;
  width: 50%;
  position: relative;
  top: 0;
  border-bottom-width: 0;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.opc-address-form-billing-header li + li span {
  margin-left: 0;
}
.opc-address-form-billing-header li.active span {
  color: #50b948;
  border-bottom: 2px solid #50b948;
}
.opc-address-form-billing-header span {
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  color: #707070;
  display: block;
  border: 1px solid #e8e8e8;
  margin: -1px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  text-align: center;
  font-size: 12px;
}

.opc-address-form-billing-content {
  margin-top: -1px;
}

.opc-address-form-shipping .form-list {
  border: 1px solid #d2d2d2;
  padding: 20px 16px;
}

.opc-address-form-billing .form-list > li,
.opc-address-form-shipping .form-list > li {
  margin-bottom: 0;
}
.opc-address-form-billing .form-list .control,
.opc-address-form-shipping .form-list .control {
  margin: 13px 0 13px 31.2%;
}
.opc-address-form-billing .form-list .ultra-wide,
.opc-address-form-shipping .form-list .ultra-wide {
  margin-bottom: 30px;
}
.opc-address-form-billing .form-list .ultra-wide .css-select .input-box,
.opc-address-form-shipping .form-list .ultra-wide .css-select .input-box {
  width: 100%;
}
.opc-address-form-billing .form-list .ultra-wide .css-select select,
.opc-address-form-shipping .form-list .ultra-wide .css-select select {
  width: 120%;
}
.opc-address-form-billing .form-list .ultra-wide .notice,
.opc-address-form-shipping .form-list .ultra-wide .notice {
  font-weight: 400;
  color: #364b35;
  line-height: 1.3;
}
.opc-address-form-billing .field, .opc-address-form-billing .wide,
.opc-address-form-shipping .field,
.opc-address-form-shipping .wide {
  overflow: hidden;
  margin-bottom: 13px;
}
.opc-address-form-billing .field label, .opc-address-form-billing .wide label,
.opc-address-form-shipping .field label,
.opc-address-form-shipping .wide label {
  float: left;
  width: 31.2%;
  text-align: right;
  padding-right: 7px;
  padding-top: 10px;
}
.opc-address-form-billing .field .css-select,
.opc-address-form-billing .field .input-box, .opc-address-form-billing .wide .css-select,
.opc-address-form-billing .wide .input-box,
.opc-address-form-shipping .field .css-select,
.opc-address-form-shipping .field .input-box,
.opc-address-form-shipping .wide .css-select,
.opc-address-form-shipping .wide .input-box {
  overflow: hidden;
}
.opc-address-form-billing .wide label + .input-box,
.opc-address-form-shipping .wide label + .input-box {
  margin-left: 0;
}
.opc-address-form-billing .wide .input-box,
.opc-address-form-shipping .wide .input-box {
  margin-left: 31.2%;
}

.opc-address-form-billing,
.opc-address-form-shipping,
.shipping-block-methods,
.payment-block-methods {
  margin-bottom: 30px;
}

.shipping-block h3 {
  padding-top: 10px;
}

.opc-col-right .review-title {
  padding-top: 10px;
}

.shipping_method_logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.shipping_method_logo_aid_novaposhta,
.shipping_method_logo_flatrate {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/novaposchta_logo.png") 0 0 no-repeat transparent;
}

.shipping_method_logo_freeshipping {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/shipping_logo.png") 0 0 no-repeat transparent;
}

.shipping_method_logo_storepickup {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/storepickup_logo.png") 0 0 no-repeat transparent;
}

.shipping-block-methods dt, .shipping-block-methods dd,
.payment-block-methods dt,
.payment-block-methods dd {
  padding: 16px;
  border: 1px solid #d2d2d2;
  margin-top: -1px;
}
.shipping-block-methods dt:first-of-type, .shipping-block-methods dd:first-of-type,
.payment-block-methods dt:first-of-type,
.payment-block-methods dd:first-of-type {
  margin: 0;
}
.shipping-block-methods dt label, .shipping-block-methods dd label,
.payment-block-methods dt label,
.payment-block-methods dd label {
  margin-bottom: 0;
}

.price-inline {
  display: inline;
}

/** LOGIN FORM **/
.opc-wrapper-opc .text-login {
  font-size: 14px;
  font-weight: 400;
}

.opc-wrapper-opc .text-login a {
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/** GIFT CARD **/
.opc-wrapper-opc .giftcard {
  margin-bottom: 20px;
}

.opc-wrapper-opc .giftcard #giftcard-form {
  display: none;
}

.opc-wrapper-opc .giftcard .v-fix {
  float: none;
  margin-bottom: 10px;
}

.opc-wrapper-opc .giftcard .button.btn-remove-gift span span, .opc-wrapper-opc .giftcard .btn-remove-gift.button-callback span span, .opc-wrapper-opc .giftcard .btn-remove-gift.button-oneclick span span, .opc-wrapper-opc .giftcard .btn-remove-gift.button-location span span {
  padding: 0 20px;
}

.opc-wrapper-opc .giftcard .check-gc-status {
  margin-bottom: 0;
  float: right;
}

.opc-wrapper-opc .giftcard .check-gc-status span {
  background: none repeat scroll 0 0 transparent !important;
  color: #000000 !important;
  font-size: 11px !important;
  font-weight: normal !important;
  padding: 0 !important;
  text-transform: none !important;
  text-shadow: none !important;
}

/** GIFT MESSAGES BLOCK */
.opc-wrapper-opc .gift-messages {
  margin-top: 40px;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list .field {
  /*width:170px;*/
  width: 100%;
  padding: 0;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list .input-box {
  /*width:170px;*/
  width: 100%;
  padding: 0;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list li.wide .input-box {
  /*width:168px;*/
  width: 100%;
  padding: 0;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list textarea {
  border: 1px solid #d8d8d8;
  height: 80px;
  padding: 0;
  /*width:163px;*/
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list li.wide textarea {
  border: 1px solid #d8d8d8;
  height: 80px;
  padding: 0;
  /*width:167px;*/
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list .input-box {
  /*width:170px;*/
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form .item .details .form-list input[type="text"] {
  /*width:163px;*/
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form .item .number {
  font-weight: normal;
}

.opc-wrapper-opc .gift-messages-form li.wide .input-box {
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form li.wide textarea {
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form li .field {
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form li .input-box {
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form li input {
  width: 100%;
}

.opc-wrapper-opc .gift-messages-form li textarea {
  width: 100%;
}

/** CUSTOMER OPC MESSAGE BLOCK **/
.opc-message-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

.opc-messages {
  padding: 30px;
  position: absolute;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  color: #404040;
  display: block;
  font-size: 16px;
  left: 50%;
  margin-left: -205px;
  margin-top: -20px;
  text-align: left;
  top: 30%;
  width: 410px;
  -webkit-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.2);
  background-color: #fefefe;
  font-weight: normal;
  z-index: 1002;
}

.opc-message-container {
  text-align: center;
}

.opc-messages-action {
  text-align: center;
  margin-top: 20px;
}

.opc-menu {
  overflow: hidden;
  clear: both;
  padding: 26px 0;
}

.opc-totals:after {
  content: '';
  display: table;
  clear: both;
}
.opc-totals table {
  width: 100%;
}

.opc-totals-wrapper {
  width: 100%;
  float: none;
}

.opc-menu-right {
  float: right;
}

.opc-wrapper-opc .opc-menu .paypal-logo {
  float: left;
  margin-bottom: 0;
  margin-right: 30px;
  margin-top: 7px;
}

.opc-wrapper-opc .opc-menu .paypal-logo .paypal-or {
  display: none;
}

.opc-wrapper-opc .opc-menu .paypal-logo + li {
  display: none;
}

/** COMMENT BLOCK **/
.opc-wrapper-opc .comment-block textarea {
  width: 100%;
  height: 71px;
  resize: none;
}

.opc-wrapper-opc .comment-block .comment {
  margin-top: 10px;
}

#p_method_paypal_express + label img,
#p_method_paypal_express + label a {
  display: none;
}

#p_method_paypal_standard + label img,
#p_method_paypal_standard + label a {
  display: none;
}

#p_method_paypal_express + label {
  font-size: 28px;
  font-style: italic;
  text-transform: none !important;
}

/** review block **/
.cvv-what-is-this {
  display: none;
}

.sp-methods dt {
  display: none;
}

.shipping_method_data .css-select .input-box {
  width: 100%;
}
.shipping_method_data .css-select .input-box select {
  width: 120%;
}

.opc-totals-wrapper .opc-totals.first {
  padding-bottom: 0;
}
.opc-totals-wrapper .opc-totals.mid {
  padding-top: 5px;
  padding-bottom: 5px;
}
.opc-totals-wrapper .opc-totals.last {
  padding-top: 0;
}

.discount-form-wrapper {
  position: relative;
  padding: 0 0 15px 75px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d2d2d2;
}
.discount-form-wrapper .field-wrapper + .field-wrapper {
  margin-top: 5px;
}
.discount-form-wrapper > .button-wrapper {
  margin-top: 10px;
}

@media (max-width: 1250px) {
  .opc-wrapper-opc .opc-col-left .fields .field:first-child {
    margin-right: 20px;
  }
}
@media (max-width: 1180px) {
  .opc-wrapper-opc .opc-col-left .fields .field:first-child {
    margin-right: 15px;
  }
}
@media (max-width: 980px) {
  .opc-col-wrapper {
    margin: 0;
  }

  .opc-wrapper-opc .opc-col-left,
  .opc-wrapper-opc .opc-col-center,
  .opc-wrapper-opc .opc-col-right {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .opc-wrapper-opc .opc-col-left .fields .field {
    float: right;
  }

  .opc-wrapper-opc .opc-col-left .fields .field:first-child {
    float: left;
  }

  .opc-wrapper-opc .opc-data-table {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 305px;
    margin: 30px auto;
  }

  #agreement-dialog .modal-dialog {
    width: 600px;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (max-width: 768px) {
  #checkout-review-table thead > tr > th {
    display: table-cell;
  }

  .opc-wrapper-opc .giftcard .check-gc-status {
    float: none !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .opc-wrapper-opc .payment-block select {
    box-sizing: border-box !important;
  }
}
@media (max-width: 767px) {
  .opc-wrapper-opc .opc-menu .paypal-logo {
    margin: 0 30px 10px 0;
  }
}
@media (max-width: 320px) {
  .opc-wrapper-opc .giftcard .check-gc-status {
    float: none !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .opc-wrapper-opc .input-box .v-fix {
    width: 45%;
  }

  .opc-wrapper-opc .input-box .v-fix + .v-fix {
    float: right;
  }

  .opc-wrapper-opc .input-box .v-fix {
    margin-right: 0;
  }

  .opc-wrapper-opc .payment-block select {
    box-sizing: border-box !important;
  }

  .opc-wrapper-opc .opc-menu .paypal-logo {
    margin: 0 0 10px;
  }
}
.opc-col-wrapper .opc-data-table {
  border: 1px solid #d2d2d2;
}
.opc-col-wrapper .mini-products-list {
  max-height: 500px;
  overflow: auto;
}
.opc-col-wrapper .mini-products-list li {
  margin-bottom: 0;
  padding: 15px;
}
.opc-col-wrapper .mini-products-list li + li {
  border-top: 1px solid #d2d2d2;
}
.opc-col-wrapper .mini-products-list .product-details {
  margin-left: 130px;
}
.opc-col-wrapper .mini-products-list .product-details .product-name {
  padding: 0;
  text-transform: uppercase;
  margin-bottom: 19px;
}
.opc-col-wrapper .mini-products-list .product-details .product-qty-line {
  margin-bottom: 19px;
}

.success-page-top {
  padding: 25px 0;
  text-align: left;
}
.success-page-top .success-page-left {
  float: left;
  width: 25%;
  border-right: 1px solid #d2d2d2;
  padding-right: 25px;
}
.success-page-top .success-page-left h1 {
  font-size: 16px;
  border: 0;
}
.success-page-top .success-page-right {
  float: left;
  width: 75%;
  padding-left: 25px;
}
.success-page-top .success-page-right .sub-title {
  font-size: 16px;
}

.success-page-order {
  background: #e8e8e8;
  padding: 25px;
  font-size: 16px;
  text-transform: uppercase;
}

.opc-newsletter {
  margin-top: -1px;
  border-top-color: #fff;
}
.opc-newsletter .control {
  margin: 0;
}
.opc-newsletter label:before {
  top: -4px;
}

.login-trigger.signin-modal {
  display: none;
}

.checkout-onepage-success .print-link {
  float: right;
  margin: 10px 0;
}

.sp-methods .shipping_method_logo {
  display: inline-block;
  vertical-align: middle;
}
.sp-methods label + p, .sp-methods label + div {
  padding-top: 10px;
}
.sp-methods .custom-radio + label {
  display: block;
  clear: both;
}
.sp-methods .custom-radio + label:before {
  margin-top: 13px;
}

.opc-address-form-billing .field,
.opc-address-form-billing .wide,
.opc-address-form-shipping .field,
.opc-address-form-shipping .wide {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  clear: both;
}
.opc-address-form-billing .field label,
.opc-address-form-billing .wide label,
.opc-address-form-shipping .field label,
.opc-address-form-shipping .wide label {
  float: none;
  width: 100%;
  text-align: left;
}
.opc-address-form-billing .field input,
.opc-address-form-billing .wide input,
.opc-address-form-shipping .field input,
.opc-address-form-shipping .wide input {
  width: 100%;
}
.opc-address-form-billing .field .input-box,
.opc-address-form-billing .wide .input-box,
.opc-address-form-shipping .field .input-box,
.opc-address-form-shipping .wide .input-box {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  clear: both;
}

.opc-progress-bar {
  margin: 35px 0 15px;
}
.opc-progress-bar ul {
  padding: 19px 24px 14px;
  background: #e8e8e8;
}
.opc-progress-bar ul li {
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  color: #787878;
  letter-spacing: 2px;
}
.opc-progress-bar ul li:after {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
  display: inline-block;
  margin: 0 25px;
  font-size: 15px;
  color: #787878;
}
.opc-progress-bar ul li.step-three:after {
  display: none;
}
.opc-progress-bar ul li:before {
  content: '';
  display: inline-block;
  width: 49px;
  height: 49px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  margin: -5px 9px 0 0;
  vertical-align: middle;
}
.opc-progress-bar ul li.step-one:before {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/step-1.png") center -27px no-repeat;
}
.opc-progress-bar ul li.step-two:before {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/step-2.png") center -30px no-repeat;
}
.opc-progress-bar ul li.step-three:before {
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/step-3.png") center -23px no-repeat;
}

.checkout-cart-index ul li.step-one {
  color: #00a950;
}
.checkout-cart-index ul li.step-one:after {
  color: #00a950;
}
.checkout-cart-index ul li.step-one:before {
  border-color: #00a950;
  background-position: center 12px;
}

.opc-index-index .opc-progress-bar {
  margin: 35px 0 39px;
}
.opc-index-index ul li.step-two {
  color: #00a950;
}
.opc-index-index ul li.step-two:after {
  color: #00a950;
}
.opc-index-index ul li.step-two:before {
  border-color: #00a950;
  background-position: center 10px;
}

.checkout-onepage-success ul li.step-three {
  color: #00a950;
}
.checkout-onepage-success ul li.step-three:after {
  color: #00a950;
}
.checkout-onepage-success ul li.step-three:before {
  border-color: #00a950;
  background-position: center 12px;
}

.wp-sidebar .block-blog-search,
.wp-sidebar .block-recent-posts,
.wp-sidebar .block-blog-archives,
.wp-sidebar .block-blog-meta {
  display: none;
}

.wp-page-title h1 {
  font-size: 16px;
  letter-spacing: 2.5px;
  padding-bottom: 23px;
  margin-bottom: 0;
  border-bottom: 2px solid #50b948;
}

.wordpress-post-category-view .rev_slider_wrapper + .page-title {
  margin-top: 20px;
}

.post-list {
  background: #fafafa;
  padding: 12px;
  margin-bottom: 20px;
}
.post-list ul {
  clear: both;
}
.post-list .pager {
  clear: both;
  float: none;
}
.post-list .amount--has-pages {
  display: none;
}
.post-list .item {
  background: #fff;
  width: 300px;
  margin-bottom: 30px;
  border: 1px solid #e8e8e8;
}
.post-list .item .featured-image {
  border-bottom: 1px solid #e8e8e8;
}
.post-list .item .featured-image a {
  display: block;
}
.post-list .item .featured-image img {
  margin: 0 auto;
}
.post-list .item .post-date {
  display: block;
  margin-bottom: 0.5em;
}
.post-list .item .post-entry {
  padding: 22px;
  font-size: 14px;
  color: #707070;
}
.post-list .item .post-entry a {
  color: inherit;
}
.post-list .item .post-entry h2 {
  font-size: 16px;
}
.post-list .item .post-entry img {
  display: none;
}

.post-view-wrapper {
  background: #fafafa;
  padding: 10px;
  margin-bottom: 10px;
}
.post-view-wrapper .wp-page-title {
  margin-top: 13px;
}

.post-view {
  background: #fff;
  padding: 10px;
}
.post-view .post-date {
  margin-bottom: 10px;
}
.post-view .comments-wrapper {
  padding-top: 20px;
  max-width: 768px;
}
.post-view .comments-wrapper .legend {
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #666769;
  letter-spacing: 2px;
}
.post-view .comments-wrapper .buttons-set .button, .post-view .comments-wrapper .buttons-set .button-callback, .post-view .comments-wrapper .buttons-set .button-oneclick, .post-view .comments-wrapper .buttons-set .button-location {
  float: left;
}
.post-view .featured-image {
  display: none;
  border: 1px solid #ddd;
  margin: 4px 10px 2px 0;
  padding: 1px;
}
.post-view .featured-image.left {
  float: left;
}
.post-view .featured-image.right {
  float: right;
  margin: 2px 0 4px 10px;
}

.post-entry {
  overflow: hidden;
}

.post-skips {
  clear: both;
  display: block;
}

/**
 * PinterestRssWidget plugin
 *
 */
.block-blog-pinterest li.item {
  text-align: center;
}

.block-blog-pinterest .follow {
  text-align: center;
  margin: 10px 0 15px;
}

.shortcode-pinterest ul {
  height: 1%;
  overflow: hidden;
}

.shortcode-pinterest li {
  list-style: none;
  padding: 0;
  margin: 0 10px 10px;
  float: left;
}

/**
 * Alignment and captions
 * Taken from default WordPress CSS file
 *
 */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.625em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.625em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img[class*="align"],
img[class*="wp-image-"],
.gallery .gallery-icon img {
  /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
  /*border: 1px solid #ddd;*/
  padding: 6px;
}

img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

img.size-full,
img.size-large {
  max-width: 97.5%;
  width: auto;
  /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
  height: auto;
  /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 1.625em;
}

.wp-caption {
  margin-top: 0.4em;
}

.wp-caption {
  background: #eee;
  margin-bottom: 1.625em;
  max-width: 96%;
  padding: 9px;
}

.wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 98%;
  border-color: #eee;
}

.wp-caption .wp-caption-text {
  color: #666;
  font-family: Georgia, serif;
  font-size: 12px;
}

.wp-caption .wp-caption-text {
  margin-bottom: 0.6em;
  padding: 10px 0 5px 40px;
  position: relative;
}

.wp-caption .wp-caption-text:before {
  color: #666;
  content: '\2014';
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  margin-right: 5px;
  position: absolute;
  left: 10px;
  top: 7px;
}

.wp-caption img {
  border-color: #eee;
}

.wp-caption a:focus img,
.wp-caption a:active img,
.wp-caption a:hover img {
  background: #fff;
  border-color: #ddd;
}

.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
  font-style: italic;
  font-size: 12px;
  font-size: 0.857142857rem;
  line-height: 2;
  color: #757575;
}

div.gallery {
  height: 1%;
  overflow: hidden;
}

.gallery-columns-2 dl.gallery-item {
  width: 50%;
}

.gallery-columns-3 dl.gallery-item {
  width: 33%;
}

.gallery-columns-4 dl.gallery-item {
  width: 25%;
}

.gallery-columns-5 dl.gallery-item {
  width: 20%;
}

dl.gallery-item {
  float: left;
}

dl.gallery-item .gallery-icon {
  overflow: hidden;
}

.post-view ul.form-list {
  list-style: none outside none;
}

/*
 * WP Calendar
 */
#wp-calendar {
  margin: 0;
  width: 100%;
  padding: 5px 10px;
}

#wp-calendar th {
  font-weight: bold;
}

#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
  text-align: left;
}

#wp-calendar #next {
  text-align: right;
}

/**
 * Yarpp thumbnails
 * This is taken directly from the Yarpp plugin
 */
.yarpp-thumbnails-horizontal .yarpp-thumbnail, .yarpp-thumbnail-default, .yarpp-thumbnail-title {
  display: inline-block;
  *display: inline;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail {
  border: 1px solid rgba(127, 127, 127, 0.1);
  width: 130px;
  height: 170px;
  margin: 5px;
  margin-left: 0px;
  vertical-align: top;
}

.yarpp-thumbnail > img, .yarpp-thumbnail-default {
  width: 120px;
  height: 120px;
  margin: 5px;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail > img, .yarpp-thumbnails-horizontal .yarpp-thumbnail-default {
  margin-bottom: 0px;
  display: block;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail-title {
  font-size: 1em;
  max-height: 2.8em;
  line-height: 1.4em;
  margin: 7px;
  margin-top: 0px;
  width: 120px;
  text-decoration: inherit;
  overflow: hidden;
}

.yarpp-thumbnail-default {
  overflow: hidden;
}

.yarpp-thumbnail-default > img.yarpp-thumbnail-default-wide {
  height: 120px;
  max-width: none;
}

.yarpp-thumbnail-default > img.yarpp-thumbnail-default-tall {
  width: 120px;
  max-height: none;
}

#recipress_recipe {
  clear: both;
}

/**
 * Product shortcode
 */
.std ul.mini-products-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.std ul.mini-products-list ul.item {
  list-style: none;
}

img.max-width {
  max-width: 100%;
}

.tparrows.default {
  position: absolute;
  width: 62px;
  height: 62px;
  line-height: 62px;
  background: #fff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 0;
  top: 300px;
}
.tparrows.default:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.tparrows.default:before {
  color: #999999;
  font-size: 30px;
}
.tparrows.default.disabled {
  display: none;
}
.tparrows.default:hover {
  color: #50b948;
}

.tp-leftarrow {
  right: 100%;
  margin-right: -62px;
}
.tp-leftarrow:before {
  content: "";
}
@media only screen and (min-width: 1350px) {
  .tp-leftarrow {
    margin-right: -20px;
  }
}

.tp-rightarrow {
  left: 100%;
  margin-left: -62px;
}
@media only screen and (min-width: 1350px) {
  .tp-rightarrow {
    margin-left: -20px;
  }
}
.tp-rightarrow:before {
  content: "";
}

.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-selected {
  background: #F0F0F0;
}

.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}

.autocomplete-group {
  padding: 2px 5px;
}

.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

.brand-banner {
  clear: both;
}
.brand-banner img {
  width: 100%;
}

.brand-information {
  clear: both;
  padding: 25px 0;
  text-align: justify;
}
.brand-information .brand-logo {
  float: left;
  width: 150px;
  margin: 0 20px 20px 0;
}
.brand-information .brand-logo img {
  width: 100%;
}
.brand-information .brand-description {
  clear: both;
}
.brand-information .brand-description p {
  margin-bottom: 10px;
}

.brand .brand-left-col {
  float: left;
  width: 25%;
}
.brand .brand-left-col img {
  width: 100%;
}
.brand .brand-right-col {
  margin-left: 28%;
}
.brand .brand-right-col h3 {
  color: #50b948;
  font-size: 18px;
  text-transform: none;
}
.brand .brand-right-col .brand-page-link {
  color: #50b948;
  text-align: right;
  margin-top: 20px;
  display: block;
}

/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate;
}
div.calendar table td.button, div.calendar table td.button-callback, div.calendar table td.button-oneclick, div.calendar table td.button-location {
  display: table-cell;
  background: inherit;
  color: inherit;
  text-transform: none;
}

/* ============================================ *
 * jQuery UI Tabs
 * ============================================ */
.ui-tabs {
  position: relative;
}

.ui-tabs .ui-tabs-nav {
  overflow: hidden;
  margin: 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  border-bottom-width: 0;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  background: none;
}
.ui-tabs .ui-tabs-panel h4 {
  margin-top: 20px;
}

.ui-tabs .ui-tabs-panel h4 {
  display: none;
}

/* Common styles of menus */
.dl-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-primary {
    display: none;
  }

  .header-nav {
    padding: 0;
  }

  .dl-menu {
    display: block;
  }

  /* Common styles of menus */
  .dl-menuwrapper {
    width: 100%;
    text-align: left;
    float: left;
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 200%;
    perspective-origin: 50% 200%;
    z-index: 9000;
  }

  .dl-menuwrapper:first-child {
    margin-right: 100px;
  }

  .dl-menuwrapper button {
    background: #ccc;
    border: none;
    width: 48px;
    height: 45px;
    text-indent: -900em;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    outline: none;
  }

  .dl-menuwrapper button:hover,
  .dl-menuwrapper button.dl-active,
  .dl-menuwrapper ul {
    background: #fff;
  }

  .dl-menuwrapper button:after {
    content: '';
    position: absolute;
    width: 68%;
    height: 5px;
    background: #fff;
    top: 10px;
    left: 16%;
    box-shadow: 0 10px 0 #fff, 0 20px 0 #fff;
  }

  .dl-menuwrapper ul {
    padding: 0;
    list-style: none;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .dl-menuwrapper li {
    position: relative;
    border-bottom: 1px solid #d6d6d6;
  }

  .dl-menuwrapper li a {
    display: block;
    position: relative;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #666769;
    outline: none;
  }
  .dl-menuwrapper li a.current {
    color: #50b948;
  }

  .no-touch .dl-menuwrapper li a:hover {
    background: rgba(255, 248, 213, 0.1);
  }

  .dl-menuwrapper li.dl-back > a {
    padding-left: 30px;
    background: rgba(0, 0, 0, 0.1);
  }

  .dl-menuwrapper li.dl-back:after,
  .dl-menuwrapper li > a:not(:only-child):after {
    content: "";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-family: 'Icons';
  }

  .dl-menuwrapper li.dl-back:after,
  .dl-menuwrapper li > a:not(:only-child):after {
    position: absolute;
    top: 0;
    line-height: 50px;
    color: #666769;
  }

  .dl-menuwrapper li.dl-back:after {
    left: 10px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .dl-menuwrapper li > a:after {
    right: 10px;
    color: rgba(0, 0, 0, 0.15);
  }

  .dl-menuwrapper .dl-menu {
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .dl-menuwrapper .dl-menu.dl-menu-toggle {
    transition: all 0.3s ease;
  }

  .dl-menuwrapper .dl-menu.dl-menuopen {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  /* Hide the inner submenus */
  .dl-menuwrapper li .dl-submenu {
    display: none;
  }

  /*
  When a submenu is openend, we will hide all li siblings.
  For that we give a class to the parent menu called "dl-subview".
  We also hide the submenu link.
  The opened submenu will get the class "dl-subviewopen".
  All this is done for any sub-level being entered.
  */
  .dl-menu.dl-subview li,
  .dl-menu.dl-subview li.dl-subviewopen > a,
  .dl-menu.dl-subview li.dl-subview > a {
    display: none;
  }

  .dl-menu.dl-subview li.dl-subview,
  .dl-menu.dl-subview li.dl-subview .dl-submenu,
  .dl-menu.dl-subview li.dl-subviewopen,
  .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu,
  .dl-menu.dl-subview li.dl-subviewopen > .dl-submenu > li {
    display: block;
  }

  /* Dynamically added submenu outside of the menu context */
  .dl-menuwrapper > .dl-submenu {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    margin: 0;
  }

  /* Animation classes for moving out and in */
  .dl-menu.dl-animate-out-1 {
    -webkit-animation: MenuAnimOut1 0.4s;
    animation: MenuAnimOut1 0.4s;
  }

  .dl-menu.dl-animate-out-2 {
    -webkit-animation: MenuAnimOut2 0.3s ease-in-out;
    animation: MenuAnimOut2 0.3s ease-in-out;
  }

  .dl-menu.dl-animate-out-3 {
    -webkit-animation: MenuAnimOut3 0.4s ease;
    animation: MenuAnimOut3 0.4s ease;
  }

  .dl-menu.dl-animate-out-4 {
    -webkit-animation: MenuAnimOut4 0.4s ease;
    animation: MenuAnimOut4 0.4s ease;
  }

  .dl-menu.dl-animate-out-5 {
    -webkit-animation: MenuAnimOut5 0.4s ease;
    animation: MenuAnimOut5 0.4s ease;
  }

  @-webkit-keyframes MenuAnimOut1 {
    50% {
      -webkit-transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
      -webkit-transform: translateZ(-372.5px) rotateY(15deg);
      opacity: .5;
    }
    100% {
      -webkit-transform: translateZ(-500px) rotateY(0deg);
      opacity: 0;
    }
  }
  @-webkit-keyframes MenuAnimOut2 {
    100% {
      -webkit-transform: translateX(-100%);
      opacity: 0;
    }
  }
  @-webkit-keyframes MenuAnimOut3 {
    100% {
      -webkit-transform: translateZ(300px);
      opacity: 0;
    }
  }
  @-webkit-keyframes MenuAnimOut4 {
    100% {
      -webkit-transform: translateZ(-300px);
      opacity: 0;
    }
  }
  @-webkit-keyframes MenuAnimOut5 {
    100% {
      -webkit-transform: translateY(40%);
      opacity: 0;
    }
  }
  @keyframes MenuAnimOut1 {
    50% {
      -webkit-transform: translateZ(-250px) rotateY(30deg);
      transform: translateZ(-250px) rotateY(30deg);
    }
    75% {
      -webkit-transform: translateZ(-372.5px) rotateY(15deg);
      transform: translateZ(-372.5px) rotateY(15deg);
      opacity: .5;
    }
    100% {
      -webkit-transform: translateZ(-500px) rotateY(0deg);
      transform: translateZ(-500px) rotateY(0deg);
      opacity: 0;
    }
  }
  @keyframes MenuAnimOut2 {
    100% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      opacity: 0;
    }
  }
  @keyframes MenuAnimOut3 {
    100% {
      -webkit-transform: translateZ(300px);
      transform: translateZ(300px);
      opacity: 0;
    }
  }
  @keyframes MenuAnimOut4 {
    100% {
      -webkit-transform: translateZ(-300px);
      transform: translateZ(-300px);
      opacity: 0;
    }
  }
  @keyframes MenuAnimOut5 {
    100% {
      -webkit-transform: translateY(40%);
      transform: translateY(40%);
      opacity: 0;
    }
  }
  .dl-menu.dl-animate-in-1 {
    -webkit-animation: MenuAnimIn1 0.3s;
    animation: MenuAnimIn1 0.3s;
  }

  .dl-menu.dl-animate-in-2 {
    -webkit-animation: MenuAnimIn2 0.3s ease-in-out;
    animation: MenuAnimIn2 0.3s ease-in-out;
  }

  .dl-menu.dl-animate-in-3 {
    -webkit-animation: MenuAnimIn3 0.4s ease;
    animation: MenuAnimIn3 0.4s ease;
  }

  .dl-menu.dl-animate-in-4 {
    -webkit-animation: MenuAnimIn4 0.4s ease;
    animation: MenuAnimIn4 0.4s ease;
  }

  .dl-menu.dl-animate-in-5 {
    -webkit-animation: MenuAnimIn5 0.4s ease;
    animation: MenuAnimIn5 0.4s ease;
  }

  @-webkit-keyframes MenuAnimIn1 {
    0% {
      -webkit-transform: translateZ(-500px) rotateY(0deg);
      opacity: 0;
    }
    20% {
      -webkit-transform: translateZ(-250px) rotateY(30deg);
      opacity: 0.5;
    }
    100% {
      -webkit-transform: translateZ(0px) rotateY(0deg);
      opacity: 1;
    }
  }
  @-webkit-keyframes MenuAnimIn2 {
    0% {
      -webkit-transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes MenuAnimIn3 {
    0% {
      -webkit-transform: translateZ(300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes MenuAnimIn4 {
    0% {
      -webkit-transform: translateZ(-300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes MenuAnimIn5 {
    0% {
      -webkit-transform: translateY(40%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes MenuAnimIn1 {
    0% {
      -webkit-transform: translateZ(-500px) rotateY(0deg);
      transform: translateZ(-500px) rotateY(0deg);
      opacity: 0;
    }
    20% {
      -webkit-transform: translateZ(-250px) rotateY(30deg);
      transform: translateZ(-250px) rotateY(30deg);
      opacity: 0.5;
    }
    100% {
      -webkit-transform: translateZ(0px) rotateY(0deg);
      transform: translateZ(0px) rotateY(0deg);
      opacity: 1;
    }
  }
  @keyframes MenuAnimIn2 {
    0% {
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      opacity: 1;
    }
  }
  @keyframes MenuAnimIn3 {
    0% {
      -webkit-transform: translateZ(300px);
      transform: translateZ(300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      transform: translateZ(0px);
      opacity: 1;
    }
  }
  @keyframes MenuAnimIn4 {
    0% {
      -webkit-transform: translateZ(-300px);
      transform: translateZ(-300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      transform: translateZ(0px);
      opacity: 1;
    }
  }
  @keyframes MenuAnimIn5 {
    0% {
      -webkit-transform: translateY(40%);
      transform: translateY(40%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
    }
  }
  .dl-menuwrapper > .dl-submenu.dl-animate-in-1 {
    -webkit-animation: SubMenuAnimIn1 0.4s ease;
    animation: SubMenuAnimIn1 0.4s ease;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-in-2 {
    -webkit-animation: SubMenuAnimIn2 0.3s ease-in-out;
    animation: SubMenuAnimIn2 0.3s ease-in-out;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-in-3 {
    -webkit-animation: SubMenuAnimIn3 0.4s ease;
    animation: SubMenuAnimIn3 0.4s ease;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-in-4 {
    -webkit-animation: SubMenuAnimIn4 0.4s ease;
    animation: SubMenuAnimIn4 0.4s ease;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-in-5 {
    -webkit-animation: SubMenuAnimIn5 0.4s ease;
    animation: SubMenuAnimIn5 0.4s ease;
  }

  @-webkit-keyframes SubMenuAnimIn1 {
    0% {
      -webkit-transform: translateX(50%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes SubMenuAnimIn2 {
    0% {
      -webkit-transform: translateX(100%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes SubMenuAnimIn3 {
    0% {
      -webkit-transform: translateZ(-300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes SubMenuAnimIn4 {
    0% {
      -webkit-transform: translateZ(300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      opacity: 1;
    }
  }
  @-webkit-keyframes SubMenuAnimIn5 {
    0% {
      -webkit-transform: translateZ(-200px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
      opacity: 1;
    }
  }
  @keyframes SubMenuAnimIn1 {
    0% {
      -webkit-transform: translateX(50%);
      transform: translateX(50%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      opacity: 1;
    }
  }
  @keyframes SubMenuAnimIn2 {
    0% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
      opacity: 1;
    }
  }
  @keyframes SubMenuAnimIn3 {
    0% {
      -webkit-transform: translateZ(-300px);
      transform: translateZ(-300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      transform: translateZ(0px);
      opacity: 1;
    }
  }
  @keyframes SubMenuAnimIn4 {
    0% {
      -webkit-transform: translateZ(300px);
      transform: translateZ(300px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0px);
      transform: translateZ(0px);
      opacity: 1;
    }
  }
  @keyframes SubMenuAnimIn5 {
    0% {
      -webkit-transform: translateZ(-200px);
      transform: translateZ(-200px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      opacity: 1;
    }
  }
  .dl-menuwrapper > .dl-submenu.dl-animate-out-1 {
    -webkit-animation: SubMenuAnimOut1 0.4s ease;
    animation: SubMenuAnimOut1 0.4s ease;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-out-2 {
    -webkit-animation: SubMenuAnimOut2 0.3s ease-in-out;
    animation: SubMenuAnimOut2 0.3s ease-in-out;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-out-3 {
    -webkit-animation: SubMenuAnimOut3 0.4s ease;
    animation: SubMenuAnimOut3 0.4s ease;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-out-4 {
    -webkit-animation: SubMenuAnimOut4 0.4s ease;
    animation: SubMenuAnimOut4 0.4s ease;
  }

  .dl-menuwrapper > .dl-submenu.dl-animate-out-5 {
    -webkit-animation: SubMenuAnimOut5 0.4s ease;
    animation: SubMenuAnimOut5 0.4s ease;
  }

  @-webkit-keyframes SubMenuAnimOut1 {
    0% {
      -webkit-transform: translateX(0%);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(50%);
      opacity: 0;
    }
  }
  @-webkit-keyframes SubMenuAnimOut2 {
    0% {
      -webkit-transform: translateX(0%);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(100%);
      opacity: 0;
    }
  }
  @-webkit-keyframes SubMenuAnimOut3 {
    0% {
      -webkit-transform: translateZ(0px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateZ(-300px);
      opacity: 0;
    }
  }
  @-webkit-keyframes SubMenuAnimOut4 {
    0% {
      -webkit-transform: translateZ(0px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateZ(300px);
      opacity: 0;
    }
  }
  @-webkit-keyframes SubMenuAnimOut5 {
    0% {
      -webkit-transform: translateZ(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateZ(-200px);
      opacity: 0;
    }
  }
  @keyframes SubMenuAnimOut1 {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(50%);
      transform: translateX(50%);
      opacity: 0;
    }
  }
  @keyframes SubMenuAnimOut2 {
    0% {
      -webkit-transform: translateX(0%);
      transform: translateX(0%);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
      opacity: 0;
    }
  }
  @keyframes SubMenuAnimOut3 {
    0% {
      -webkit-transform: translateZ(0px);
      transform: translateZ(0px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateZ(-300px);
      transform: translateZ(-300px);
      opacity: 0;
    }
  }
  @keyframes SubMenuAnimOut4 {
    0% {
      -webkit-transform: translateZ(0px);
      transform: translateZ(0px);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateZ(300px);
      transform: translateZ(300px);
      opacity: 0;
    }
  }
  @keyframes SubMenuAnimOut5 {
    0% {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateZ(-200px);
      transform: translateZ(-200px);
      opacity: 0;
    }
  }
}

@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; }
}

// ----------------------------------------------
*/
.clearfix:after, .promos:after, .homepage-teaser .homepage-teaser-inner:after, .homepage-news:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
body.cms-home .main-container {
  padding-top: 20px;
}
body.cms-home .slideshow-container {
  margin-top: 0;
}

.slideshow .banner-msg {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  top: 30%;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow .banner-msg h2 {
  color: #FFFFFF;
  font-size: 24px;
  text-shadow: 1px, 1px, 3px, false, #555555;
}

.slideshow .banner-msg h2 strong {
  font-weight: bold;
  display: block;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Promotion Banner Section
 */
.promos {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

/* Specifying the body only in order to override the .std ul li styling */
body .promos > li {
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  position: relative;
  border: 1px solid #e8e8e8;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.promos > li:last-child {
  margin-bottom: 0;
}

.promos img {
  max-width: 100%;
  width: 100%;
}

.promos a:hover {
  opacity: 0.8;
  display: block;
}

.promos span {
  color: #FFFFFF;
  text-transform: uppercase;
  position: absolute;
  display: block;
  width: 100%;
  top: 10%;
  font-weight: 500;
  font-size: 20px;
  font-family: "HelveticaLTStd", Verdana, Arial, sans-serif;
  text-shadow: 1px, 1px, 3px, false, #555555;
}

.promos strong {
  font-weight: 600;
  font-size: 26px;
  display: block;
}

.promos span {
  font-size: 16px;
}

.promos strong {
  font-size: 17px;
}

/* Config: Three columns + flexible gutter */
body .promos > li {
  float: left;
  width: 31.74603%;
  margin-right: 2.38095%;
}

.promos > li:nth-child(3n) {
  margin-right: 0;
}

.promos span {
  font-size: 18px;
}

.promos strong {
  font-size: 24px;
}

/* -------------------------------------------- *
 * New Products Section
 */
/* Hiding the reviews content via CSS because we can't modify the template, */
/* since it may be used in other places where those elements are needed */
.cms-index-index .products-grid .ratings,
.cms-index-index .products-grid .actions,
.cms-index-noroute .products-grid .ratings,
.cms-index-noroute .products-grid .actions {
  display: none;
}

.cms-index-index h2.subtitle {
  padding: 6px 0;
  text-align: center;
  color: #666769;
  font-weight: 600;
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
}

.cms-index-noroute h2.subtitle {
  display: none;
}

.cms-index-index {
  overflow-x: hidden;
}
.cms-index-index .rev_slider {
  border-bottom: 1px solid #50b948;
}

.homepage-teaser {
  padding: 20px 0;
  margin-bottom: 30px;
  background: #f1f1f1;
  position: relative;
}
.homepage-teaser:before, .homepage-teaser:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1000px;
  background: #f1f1f1;
  z-index: 0;
}
.homepage-teaser:before {
  right: 100%;
}
.homepage-teaser:after {
  left: 100%;
}
.homepage-teaser .block_01,
.homepage-teaser .block_02,
.homepage-teaser .block_03 {
  float: left;
  overflow: hidden;
}
.homepage-teaser .block_01 h2,
.homepage-teaser .block_02 h2,
.homepage-teaser .block_03 h2 {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 24px;
  margin-bottom: 0;
}
.homepage-teaser .block_01 a,
.homepage-teaser .block_02 a,
.homepage-teaser .block_03 a {
  display: block;
}
.homepage-teaser .block_01 img,
.homepage-teaser .block_02 img,
.homepage-teaser .block_03 img {
  margin: 0 auto;
}
.homepage-teaser .block_01 .content,
.homepage-teaser .block_02 .content,
.homepage-teaser .block_03 .content {
  position: relative;
  background: #fff;
}
.homepage-teaser .block_01,
.homepage-teaser .block_02 {
  width: 23.5%;
  margin-right: 2%;
}
.homepage-teaser .block_01 .button,
.homepage-teaser .block_02 .button {
  position: absolute;
  bottom: 27px;
  left: 50%;
  background: #fff;
  transform: translate(-50%);
}
.homepage-teaser .block_01 .button:hover,
.homepage-teaser .block_02 .button:hover {
  color: #50b948;
}
.homepage-teaser .block_01 h2 {
  background-color: #35a0b0;
}
.homepage-teaser .block_02 h2 {
  background-color: #00a950;
}
.homepage-teaser .block_03 {
  width: 49%;
}
.homepage-teaser .block_03 h2 {
  background-color: #50b948;
}
.homepage-teaser .block_03 img {
  /*margin-bottom: 44px;*/
  margin-top: 12px;
}
.homepage-teaser .block_03 .content {
  padding: 24px;
}
.homepage-teaser .block_03 .text {
  overflow: hidden;
}
.homepage-teaser .block_03 .text .button {
  float: right;
}

.before-main,
.after-main {
  overflow: hidden;
}
.before-main .zblock,
.after-main .zblock {
  float: left;
  width: 49%;
  margin-left: 2%;
}
.before-main .zblock:first-child,
.after-main .zblock:first-child {
  margin: 0;
}
.before-main a,
.after-main a {
  display: block;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #50b948;
  border-radius: 8px;
  min-height: 24px;
}
.before-main a:hover,
.after-main a:hover {
  text-decoration: none;
}
.before-main .shipping:before,
.after-main .shipping:before {
  content: '';
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/shipping_icon.png") no-repeat;
  display: inline-block;
  vertical-align: -4px;
  width: 35px;
  height: 19px;
  margin-right: 8px;
}
.before-main .store-locator:before,
.after-main .store-locator:before {
  content: '';
  background: url("https://skin.add.ua/skin/frontend/add/default/images/icons/location_green_icon.png") no-repeat;
  display: inline-block;
  vertical-align: -6px;
  width: 17px;
  height: 24px;
  margin-right: 8px;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .before-main .store-locator:before,
  .after-main .store-locator:before {
    /* on retina, use image that's scaled by 2 */
    background-image: url("https://skin.add.ua/skin/frontend/add/default/images/icons/location_green_icon@2x.png");
    background-size: 17px 24px;
  }
}

.homepage-news {
  margin-bottom: 30px;
}
.homepage-news .block-recent-posts {
  float: left;
  width: 49%;
  margin-left: 2%;
  padding: 20px;
  background: #fafafa;
}
.homepage-news .block-recent-posts:first-child {
  margin-left: 0;
}
.homepage-news .block-recent-posts .featured-image {
  float: left;
  height: 72px;
  width: 72px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  background: #fff;
  padding: 5px;
}
.homepage-news .block-recent-posts .featured-image a {
  display: block;
}
.homepage-news .block-recent-posts .featured-image img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.homepage-news .block-recent-posts .featured-image + .post-overview {
  margin-left: 82px;
}
.homepage-news .block-recent-posts .post-date {
  font-size: 16px;
  color: #3c3c3c;
  padding-right: 15px;
}
.homepage-news .block-recent-posts .post-title {
  color: #3c3c3c;
  text-transform: uppercase;
}
.homepage-news .block-recent-posts .post-excerpt {
  padding-top: 5px;
}
.homepage-news .block-title {
  font-size: 16px;
  padding: 5px 0 20px;
}
.homepage-news .block-content {
  margin: 0;
  background: #fff;
}
.homepage-news .block-content .item {
  padding: 10px;
}
.homepage-news .owl-controls {
  position: absolute;
  bottom: 100%;
  right: 0;
}
.homepage-news .owl-controls .owl-buttons {
  margin-bottom: 11px;
}
.homepage-news .owl-controls .owl-buttons .owl-prev,
.homepage-news .owl-controls .owl-buttons .owl-next {
  width: 39px;
  height: 39px;
  line-height: 39px;
  background-color: #50b948;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 0;
  opacity: 1;
}
.homepage-news .owl-controls .owl-buttons .owl-prev:before,
.homepage-news .owl-controls .owl-buttons .owl-next:before {
  font-size: 24px;
}
.homepage-news .owl-controls .owl-buttons .owl-next:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}
.homepage-news .owl-controls .owl-buttons .owl-prev:before {
  content: "";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-family: 'Icons';
}

.homepage-slider {
  padding-top: 20px;
  border-bottom: 1px solid #00a950;
}
.homepage-slider .tp-bullets.custom {
  text-align: center;
  bottom: 10px;
}
.homepage-slider .tp-bullets.custom .bullet {
  cursor: pointer;
  display: inline-block;
  vertical-align: bottom;
  padding: 10px;
}
.homepage-slider .tp-bullets.custom .bullet:before {
  content: "";
  display: block;
  height: 2px;
  background: #e8e8e8;
  border-bottom: 1px solid #000;
  width: 100px;
}

.homepage-slider .tp-leftarrow {
  right: auto;
  margin-right: 0;
}
.homepage-slider .tp-rightarrow {
  left: auto;
  margin-left: 0;
}

.homepage-tabs {
  position: relative;
  z-index: 200;
}

