@charset "UTF-8";
/*! jQuery UI - v1.12.1 - 2019-02-05
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, slider.css
* Copyright jQuery Foundation and other contributors; Licensed MIT */
.vaprioTheme .ui-draggable-handle {
  touch-action: none;
}
/* Layout helpers
----------------------------------*/
.vaprioTheme .ui-helper-hidden {
  display: none;
}
.vaprioTheme .ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.vaprioTheme .ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.vaprioTheme .ui-helper-clearfix:before,
.vaprioTheme .ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.vaprioTheme .ui-helper-clearfix:after {
  clear: both;
}
.vaprioTheme .ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  /* support: IE8 */
}
.vaprioTheme .ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.vaprioTheme .ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}
/* Icons
----------------------------------*/
.vaprioTheme .ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.vaprioTheme .ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.vaprioTheme .ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vaprioTheme .ui-resizable {
  position: relative;
}
.vaprioTheme .ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}
.vaprioTheme .ui-resizable-disabled .ui-resizable-handle,
.vaprioTheme .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.vaprioTheme .ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.vaprioTheme .ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.vaprioTheme .ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.vaprioTheme .ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.vaprioTheme .ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.vaprioTheme .ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.vaprioTheme .ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.vaprioTheme .ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.vaprioTheme .ui-selectable {
  touch-action: none;
}
.vaprioTheme .ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.vaprioTheme .ui-sortable-handle {
  touch-action: none;
}
.vaprioTheme .ui-slider {
  position: relative;
  text-align: left;
}
.vaprioTheme .ui-slider:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 5px;
  background: #E6E6E6;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.vaprioTheme .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  touch-action: none;
  background-color: #95c11f;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#669900), to(#95C11F));
  background-image: -webkit-linear-gradient(bottom, #669900 0%, #95C11F 100%);
  background-image: -moz-linear-gradient(bottom, #669900 0%, #95C11F 100%);
  background-image: -o-linear-gradient(bottom, #669900 0%, #95C11F 100%);
  background-image: linear-gradient(0deg, #669900 0%, #95C11F 100%);
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.vaprioTheme .ui-slider .ui-slider-handle:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 7px;
  height: 7px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.vaprioTheme .ui-slider .ui-slider-handle.ui-state-hover,
.vaprioTheme .ui-slider .ui-slider-handle.ui-state-focus,
.vaprioTheme .ui-slider .ui-slider-handle.ui-state-active {
  background-color: #669900;
  background-image: none;
}
.vaprioTheme .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.vaprioTheme .ui-slider .ui-slider-range:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 5px;
  background: #CAE08F;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
/* support: IE8 - See #6727 */
.vaprioTheme .ui-slider.ui-state-disabled .ui-slider-handle,
.vaprioTheme .ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
          filter: inherit;
}
.vaprioTheme .ui-slider-horizontal {
  height: 16px;
}
.vaprioTheme .ui-slider-horizontal .ui-slider-handle {
  top: 0;
  margin-left: -0.6em;
}
.vaprioTheme .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.vaprioTheme .ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.vaprioTheme .ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.vaprioTheme .ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.vaprioTheme .ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.vaprioTheme .ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.vaprioTheme .ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.vaprioTheme .ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.vaprioTheme.disabled .ui-slider .ui-slider-handle {
  background-color: #aaaaaa !important;
  background-image: none !important;
}
.vaprioTheme.disabled .ui-slider .ui-slider-range:after {
  background: #cccccc;
}
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! Generated by Live LESS Theme Customizer */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
       -moz-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.42857143;
  color: #000000;
  background-color: #e0e0e0;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #95c11f;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #669900;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #e0e0e0;
  border: 1px solid #dddddd;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
hr {
  margin-top: 21px;
  margin-bottom: 21px;
  border: 0;
  border-top: 1px solid #f4f4f4;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #cccccc;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 21px;
  margin-bottom: 10.5px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 39px;
}
h2,
.h2 {
  font-size: 32px;
}
h3,
.h3 {
  font-size: 26px;
}
h4,
.h4 {
  font-size: 19px;
}
h5,
.h5 {
  font-size: 15px;
}
h6,
.h6 {
  font-size: 13px;
}
p {
  margin: 0 0 10.5px;
}
.lead {
  margin-bottom: 21px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 2px) {
  .lead {
    font-size: 22.5px;
  }
}
small,
.small {
  font-size: 86%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #666666;
}
.text-primary {
  color: #95c11f;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #739518;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #ff0000;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cc0000;
}
.text-default {
  color: #000000;
}
a.text-default:hover,
a.text-default:focus {
  color: #000000;
}
.bg-primary {
  color: #fff;
  background-color: #95c11f;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #739518;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10.5px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 21px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 2px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #cccccc;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10.5px 21px;
  margin: 0 0 21px;
  font-size: 18.75px;
  border-left: 5px solid #f4f4f4;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #cccccc;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #f4f4f4;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 21px;
  font-style: normal;
  line-height: 1.42857143;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 2px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 3px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 4px) {
  .container {
    width: 1230px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 2px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 3px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 4px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #666666;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 21px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #e0e0e0;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 1px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15.75px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #dddddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
table.table--style-1 {
  border-collapse: separate;
  margin-bottom: 10px;
}
table.table--style-1 thead th {
  font-size: 14px;
  color: #666666;
  line-height: 1.358;
  font-weight: normal;
  border: none;
  padding: 0 0 17px 0;
}
table.table--style-1 thead th:first-child {
  padding-left: 23px;
}
table.table--style-1 thead th:last-child {
  padding-right: 23px;
}
table.table--style-1 tbody td {
  font-size: 13px;
  color: #000;
  line-height: 1.155;
  font-weight: 500;
  border: none;
  min-height: 50px;
  background: #fff;
  padding: 10px 0;
  height: 61px;
  vertical-align: middle;
  border-top: 10px solid #f8f8f8;
  border-bottom: 1px solid #dfdfdf;
}
table.table--style-1 tbody td:first-child {
  padding-left: 23px;
}
table.table--style-1 tbody td:last-child {
  padding-right: 23px;
}
table.table--style-1 tbody td a {
  text-decoration: underline;
}
table.table--style-1 tbody td a:hover,
table.table--style-1 tbody td a:focus {
  text-decoration: none;
}
table.table--style-1 tbody tr:first-child td {
  height: 51px;
  border-top: hidden;
}
table.table--style-1 tbody tr:hover td,
table.table--style-1 tbody tr:focus td {
  border-bottom: 1px solid #c7ccba;
}
table.table--style-1 a.product {
  color: #000;
  text-decoration: none;
  max-width: 430px;
  display: block;
  position: relative;
  padding-left: 70px;
  height: 50px;
}
table.table--style-1 a.product img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: inline-block;
}
table.table--style-1 a.product span {
  vertical-align: middle;
  display: table-cell;
  height: 50px;
}
table.table--style-1 a.product:hover span,
table.table--style-1 a.product:focus span {
  text-decoration: underline;
  color: #95c11f;
}
table.table--style-1 .deliveryStatus {
  display: block;
  position: relative;
}
table.table--style-1 .deliveryStatus--default {
  color: #666666;
}
table.table--style-1 .deliveryStatus--success {
  color: #95c11f;
}
table.table--style-1 .deliveryStatus--danger {
  color: #ff0000;
}
table.table--style-1 .deliveryStatus--info {
  color: #0077e7;
}
table.table--style-1 .deliveryStatus--primary {
  color: #95c11f;
}
table.table--style-1 .deliveryStatus--warning {
  color: #ffa500;
  padding-right: 25px;
}
table.table--style-1 .deliveryStatus--warning:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -11px;
  display: block;
  width: 15px;
  height: 22px;
  background: url('../images/layout/location.warning.svg') no-repeat center;
}
table.table--style-1 .complaintStatus {
  display: block;
  position: relative;
}
table.table--style-1 .complaintStatus--default {
  color: #999999;
}
table.table--style-1 .complaintStatus--success {
  color: #95c11f;
}
table.table--style-1 .complaintStatus--danger {
  color: #ff0000;
  padding-right: 28px;
}
table.table--style-1 .complaintStatus--danger:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -9px;
  display: block;
  width: 18px;
  height: 17px;
  background: url('../images/layout/info.svg') no-repeat center;
}
table.table--style-1 .complaintStatus--info {
  color: #0077e7;
}
table.table--style-1 .complaintStatus--primary {
  color: #95c11f;
}
table.table--style-1 .complaintStatus--warning {
  color: #ffa500;
}
table.table--style-1 .stockStatus {
  display: block;
  position: relative;
}
table.table--style-1 .stockStatus-info {
  display: block;
  color: #999999;
  font-weight: normal;
}
table.table--style-1 .stockStatus--default {
  color: #999999;
}
table.table--style-1 .stockStatus--success {
  color: #95c11f;
}
table.table--style-1 .stockStatus--danger {
  color: #ff0000;
}
table.table--style-1 .stockStatus--info {
  color: #0077e7;
}
table.table--style-1 .stockStatus--primary {
  color: #95c11f;
}
table.table--style-1 .stockStatus--warning {
  color: #ffa500;
}
table.table--style-1 .status {
  display: block;
  position: relative;
}
table.table--style-1 .status-info {
  display: block;
  color: #ccc;
  font-weight: normal;
}
table.table--style-1 .status--default {
  color: #999999;
}
table.table--style-1 .status--success {
  color: #95c11f;
}
table.table--style-1 .status--danger {
  color: #ff0000;
}
table.table--style-1 .status--info {
  color: #0077e7;
}
table.table--style-1 .status--primary {
  color: #95c11f;
}
table.table--style-1 .status--warning {
  color: #ffa500;
}
table.table--style-1 td.withBtnRemove {
  width: 61px;
}
table.table--style-1 td.withQuantityInput {
  text-align: center;
  min-width: 140px;
}
table.table--style-1 td.withQuantityInput .quantityInput {
  display: inline-block;
}
table.table--style-1 .btn-remove {
  height: 20px;
  width: 18px;
  padding: 0;
  border: none;
  background: transparent url('../images/layout/cross_icon.svg') no-repeat right center;
  -webkit-background-size: 18px 18px;
     -moz-background-size: 18px;
          background-size: 18px;
  opacity: 0.25;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
table.table--style-1 .btn-remove:hover,
table.table--style-1 .btn-remove:focus {
  opacity: 1;
}
table.table--orderInfo {
  width: auto;
}
table.table--orderInfo tr th,
table.table--orderInfo tr td {
  font-size: 14px;
  color: #000000;
  line-height: 1.571;
  padding-left: 25px;
}
table.table--orderInfo tr th:first-child,
table.table--orderInfo tr td:first-child {
  padding-left: 0;
}
table.table--orderInfo tr th {
  font-weight: 500;
}
table.table--orderInfo tr td {
  font-weight: normal;
}
.panel-default .table--style-1 tbody td {
  border-top-color: #f8f8f8;
}
.panel-primary .table--style-1 tbody td {
  border-top-color: #f9ffe9;
}
.panel-success .table--style-1 tbody td {
  border-top-color: #f9ffe9;
}
.panel-info .table--style-1 tbody td {
  border-top-color: #E7F3FF;
}
.panel-warning .table--style-1 tbody td {
  border-top-color: #fff6e9;
}
.panel-danger .table--style-1 tbody td {
  border-top-color: #fff2f2;
}
.table.table--params tr:nth-child(odd) {
  background: #fff;
}
.table.table--params tr:nth-child(even) {
  background: #F8F8F8;
}
.table.table--params td,
.table.table--params th {
  border: none;
  font-size: 14px;
  line-height: 42px;
  padding: 0 20px;
  font-weight: normal;
}
.table.table--params th {
  color: #000;
}
.table.table--params td {
  color: #666;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 21px;
  font-size: 22.5px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label:not(.fileInput) {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 9px;
  font-weight: normal;
  font-size: 13px;
  color: #666666;
  line-height: 14px;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 11px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #000;
}
.form-control {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  font-weight: normal;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.form-control:focus {
  border-color: #95c11f;
  outline: 0;
}
.form-control::-moz-placeholder {
  color: #aaaaaa;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #aaaaaa;
}
.form-control::-webkit-input-placeholder {
  color: #aaaaaa;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #f4f4f4;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 45px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 31px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 48px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.form-group.form-group--required label:first-child:after,
.form-group-sm.form-group--required label:first-child:after,
.form-group-md.form-group--required label:first-child:after,
.form-group-lg.form-group--required label:first-child:after {
  content: ' *';
  color: #ff0000;
}
.radio,
.checkbox {
  position: relative;
  display: block;
}
.radio label,
.checkbox label {
  display: inline-block;
  position: relative;
  min-height: 21px;
  padding-left: 30px;
  padding-top: 3px;
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
  font-size: 13px;
  color: #000000;
}
.radio label:before,
.checkbox label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #cccccc;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.radio label:after,
.checkbox label:after {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.radio label:not(:disabled):hover,
.checkbox label:not(:disabled):hover,
.radio label:not(:disabled):focus,
.checkbox label:not(:disabled):focus {
  color: #95c11f;
}
.radio label:not(:disabled):hover:before,
.checkbox label:not(:disabled):hover:before,
.radio label:not(:disabled):focus:before,
.checkbox label:not(:disabled):focus:before {
  border-color: #95c11f;
}
.radio input,
.checkbox input {
  display: none;
}
.radio input:checked + label:before,
.checkbox input:checked + label:before {
  border-color: #95c11f;
}
.radio input:checked + label:after,
.checkbox input:checked + label:after {
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
       transform: scale(1);
  opacity: 1;
}
.radio input:disabled + label,
.checkbox input:disabled + label {
  color: #aaaaaa !important;
  cursor: not-allowed;
}
.radio input:disabled + label:before,
.checkbox input:disabled + label:before {
  border-color: #DEDEDE !important;
  background: #F8F8F8 !important;
}
.radio input:disabled + label:after,
.checkbox input:disabled + label:after {
  -webkit-transform: scale(0) !important;
  -o-transform: scale(0) !important;
  -moz-transform: scale(0) !important;
       transform: scale(0) !important;
  opacity: 0 !important;
}
.radio label:before,
.radio label:after {
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.radio label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  display: block;
  width: 10px;
  height: 10px;
  background: #95c11f;
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
       transform: scale(0);
  opacity: 0;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.checkbox label:before,
.checkbox label:after {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.checkbox label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 20px;
  height: 20px;
  background: url('../images/layout/check.svg') no-repeat center;
  -webkit-background-size: 12px auto;
     -moz-background-size: 12px auto;
          background-size: 12px auto;
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -moz-transform: scale(0);
       transform: scale(0);
  opacity: 0;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.checkbox input:checked + label:before {
  background: #95c11f;
}
.checkbox--lines label {
  font-size: 13px;
  line-height: 16px;
  padding-left: 45px;
  padding-top: 0;
}
.checkbox--lines label:before {
  width: 30px;
  height: 30px;
}
.checkbox--lines label:after {
  width: 30px;
  height: 30px;
  -webkit-background-size: 17px 17px;
     -moz-background-size: 17px;
          background-size: 17px;
}
.checkbox--lines .line {
  display: block;
}
.checkbox--lines .line--primary {
  color: #95c11f;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
  min-height: 36px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
select.input-sm {
  height: 31px;
  line-height: 31px;
}
textarea.input-sm,
select[multiple] .input-sm {
  height: auto;
}
.form-group-sm {
  margin-bottom: 15px;
  margin-bottom: 10px;
}
.form-group-sm.form-group--required label:first-child:after {
  content: ' *';
  color: #ff0000;
}
.form-group-md {
  margin-bottom: 15px;
  margin-bottom: 20px;
}
.form-group-md.form-group--required label:first-child:after {
  content: ' *';
  color: #ff0000;
}
.input-lg {
  height: 48px;
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
select.input-lg {
  height: 48px;
  line-height: 48px;
}
textarea.input-lg,
select[multiple] .input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 48px;
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.form-group-lg select.form-control {
  height: 48px;
  line-height: 48px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 48px;
  min-height: 40px;
  padding: 11px 16px;
  font-size: 19px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 56.25px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 48px;
  height: 48px;
  line-height: 48px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #77B200;
}
.has-success .form-control {
  border-color: #77B200;
  background-color: #fff;
  color: #000;
}
.has-success .form-control:focus {
  border-color: #557f00;
}
.has-success .input-group-addon {
  color: #000;
  border-color: #77B200;
  background-color: #f6ffe5;
}
.has-success .form-control-feedback {
  color: #77B200;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #ffa500;
}
.has-warning .form-control {
  border-color: #ffa500;
  background-color: #fff;
  color: #000;
}
.has-warning .form-control:focus {
  border-color: #cc8400;
}
.has-warning .input-group-addon {
  color: #000;
  border-color: #ffa500;
  background-color: #fff6e5;
}
.has-warning .form-control-feedback {
  color: #ffa500;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #ff0000;
}
.has-error .form-control {
  border-color: #ff0000;
  background-color: #fff;
  color: #000;
}
.has-error .form-control:focus {
  border-color: #cc0000;
}
.has-error .input-group-addon {
  color: #000;
  border-color: #ff0000;
  background-color: #fff6f5;
}
.has-error .form-control-feedback {
  color: #ff0000;
}
.has-feedback label ~ .form-control-feedback {
  top: 26px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  position: relative;
  font-size: 12px;
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #404040;
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
}
@media (min-width: 2px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 32px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 2px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 11px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 2px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 19px;
  }
}
textarea.form-control {
  min-height: 100px;
  padding: 13px 32px 15px 20px;
}
.select {
  position: relative;
}
.select select {
  -webkit-appearance: none;
}
.select select:disabled {
  background: #F8F8F8;
  border: 1px solid #ccc;
  color: #aaaaaa;
}
.select .caret {
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url('../images/layout/arrow3.gray.svg') no-repeat center;
  -webkit-background-size: 12px auto;
     -moz-background-size: 12px auto;
          background-size: 12px auto;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  pointer-events: none;
}
.select.active,
.select:focus {
  border-color: #95c11f;
}
.select.active .caret,
.select:focus .caret {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.dateInput {
  position: relative;
}
.dateInput .caret {
  position: absolute;
  right: 13px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: transparent;
  pointer-events: none;
  border: none;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dateInput .caret svg {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}
.dateInput .caret .fill {
  fill: #ccc;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dateInput.active .fill {
  fill: #95c11f;
}
.has-error .select .caret {
  background: url('../images/layout/arrow3.danger.svg') no-repeat center;
}
.has-error .select.active .caret,
.has-error .select:focus .caret {
  -webkit-filter: none;
          filter: none;
}
.has-error .dateInput .caret .fill {
  fill: #ff0000;
}
.has-warning .select .caret {
  background: url('../images/layout/arrow3.warning.svg') no-repeat center;
}
.has-warning .select.active .caret,
.has-warning .select:focus .caret {
  -webkit-filter: none;
          filter: none;
}
.has-warning .dateInput .caret .fill {
  fill: #ffa500;
}
.has-success .select .caret {
  background: url('../images/layout/arrow3.success.svg') no-repeat center;
}
.has-success .select.active .caret,
.has-success .select:focus .caret {
  -webkit-filter: none;
          filter: none;
}
.has-success .dateInput .caret .fill {
  fill: #77B200;
}
.slider {
  background: #fff;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  height: 80px;
  padding: 15px 20px 20px;
}
.slider-title {
  margin: 0;
  font-size: 13px;
  color: #000000;
  line-height: 1;
}
.slider-value {
  display: none;
}
.slider-content {
  margin-top: 12px;
  position: relative;
  height: 15px;
}
.slider-content-min,
.slider-content-max {
  position: absolute;
  top: 0;
  font-size: 12px;
  color: #95c11f;
  line-height: 15px;
  white-space: nowrap;
}
.slider-content-min {
  left: -10px;
  width: 28px;
  text-align: center;
}
.slider-content-max {
  right: 0;
  width: 56px;
}
.slider-content-line {
  width: 110px;
  height: 15px;
  position: absolute;
  left: 33px;
  top: 0;
}
.slider.disabled {
  cursor: not-allowed;
}
.slider.disabled .slider-title {
  color: #aaaaaa;
}
.slider.disabled .slider-content-min,
.slider.disabled .slider-content-max {
  color: #aaaaaa;
}
.form-captcha-submit:before,
.form-captcha-submit:after {
  content: " ";
  display: table;
}
.form-captcha-submit:after {
  clear: both;
}
.form-captcha-submit:before,
.form-captcha-submit:after {
  content: " ";
  display: table;
}
.form-captcha-submit:after {
  clear: both;
}
.form-captcha-submit__captcha {
  float: left;
}
.form-captcha-submit__button {
  float: right;
  margin-top: 6px;
}
.fileInput {
  position: relative;
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  font-weight: normal;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.fileInput .button {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fileInput--text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  overflow: hidden;
}
.fileInput input {
  display: none;
}
.inputWithButton {
  position: relative;
}
.inputWithButton .button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5px;
}
.inputWithButton .button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  width: 5px;
  height: 100%;
  background: #fff;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: none;
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 1.42857143;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #999;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
       box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
       box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #999;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-default:focus,
.btn-default.focus {
  color: #999;
  background-color: #dadada;
  border-color: #b3b3b3;
}
.btn-default:hover {
  color: #999;
  background-color: #dadada;
  border-color: #d4d4d4;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #999;
  background-color: #dadada;
  border-color: #d4d4d4;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #999;
  background-color: #c8c8c8;
  border-color: #b3b3b3;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-default .badge {
  color: #f3f3f3;
  background-color: #999;
}
.btn-default:focus,
.btn-default.focus {
  color: #000;
  background-color: #dadada;
  border-color: #f3f3f3;
}
.btn-default:hover {
  color: #000;
  background-color: #dadada;
  border-color: #f3f3f3;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #000;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #000;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-default .badge {
  color: #f3f3f3;
  background-color: #000;
}
.btn-primary {
  color: #ffffff;
  background-color: #95c11f;
  border-color: #84ab1b;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #739518;
  border-color: #2f3d0a;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #739518;
  border-color: #5b7613;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #739518;
  border-color: #5b7613;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #ffffff;
  background-color: #5b7613;
  border-color: #2f3d0a;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #95c11f;
  border-color: #84ab1b;
}
.btn-primary .badge {
  color: #95c11f;
  background-color: #ffffff;
}
.btn-success {
  color: #ffffff;
  background-color: #77B200;
  border-color: #669900;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #557f00;
  border-color: #111900;
}
.btn-success:hover {
  color: #ffffff;
  background-color: #557f00;
  border-color: #3d5b00;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #557f00;
  border-color: #3d5b00;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #ffffff;
  background-color: #3d5b00;
  border-color: #111900;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #77B200;
  border-color: #669900;
}
.btn-success .badge {
  color: #77B200;
  background-color: #ffffff;
}
.btn-info {
  color: #ffffff;
  background-color: #0077e7;
  border-color: #006ace;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #005db4;
  border-color: #00284e;
}
.btn-info:hover {
  color: #ffffff;
  background-color: #005db4;
  border-color: #004a90;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #005db4;
  border-color: #004a90;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #ffffff;
  background-color: #004a90;
  border-color: #00284e;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #0077e7;
  border-color: #006ace;
}
.btn-info .badge {
  color: #0077e7;
  background-color: #ffffff;
}
.btn-warning {
  color: #ffffff;
  background-color: #ffa500;
  border-color: #e69500;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #cc8400;
  border-color: #664200;
}
.btn-warning:hover {
  color: #ffffff;
  background-color: #cc8400;
  border-color: #a86d00;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #ffffff;
  background-color: #cc8400;
  border-color: #a86d00;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #ffffff;
  background-color: #a86d00;
  border-color: #664200;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #ffa500;
  border-color: #e69500;
}
.btn-warning .badge {
  color: #ffa500;
  background-color: #ffffff;
}
.btn-danger {
  color: #ffffff;
  background-color: #ff0000;
  border-color: #e60000;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #cc0000;
  border-color: #660000;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #cc0000;
  border-color: #a80000;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #ffffff;
  background-color: #cc0000;
  border-color: #a80000;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #ffffff;
  background-color: #a80000;
  border-color: #660000;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #ff0000;
  border-color: #e60000;
}
.btn-danger .badge {
  color: #ff0000;
  background-color: #ffffff;
}
.btn-primary-outline {
  color: #95c11f;
  background-color: transparent;
  border: 1px solid #95c11f;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  font-size: 14px;
  height: 37px;
  padding: 0 30px;
  font-weight: 600;
  line-height: 37px !important;
}
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #669900;
  background-color: transparent;
  border-color: #669900;
}
.btn-primary-outline:hover {
  color: #669900;
  background-color: transparent;
  border-color: #669900;
}
.btn-primary-outline:active,
.btn-primary-outline.active,
.open > .dropdown-toggle.btn-primary-outline {
  color: #669900;
  background-color: transparent;
  border-color: #669900;
}
.btn-primary-outline:active:hover,
.btn-primary-outline.active:hover,
.open > .dropdown-toggle.btn-primary-outline:hover,
.btn-primary-outline:active:focus,
.btn-primary-outline.active:focus,
.open > .dropdown-toggle.btn-primary-outline:focus,
.btn-primary-outline:active.focus,
.btn-primary-outline.active.focus,
.open > .dropdown-toggle.btn-primary-outline.focus {
  color: #669900;
  background-color: transparent;
  border-color: #669900;
}
.btn-primary-outline:active,
.btn-primary-outline.active,
.open > .dropdown-toggle.btn-primary-outline {
  background-image: none;
}
.btn-primary-outline.disabled,
.btn-primary-outline[disabled],
fieldset[disabled] .btn-primary-outline,
.btn-primary-outline.disabled:hover,
.btn-primary-outline[disabled]:hover,
fieldset[disabled] .btn-primary-outline:hover,
.btn-primary-outline.disabled:focus,
.btn-primary-outline[disabled]:focus,
fieldset[disabled] .btn-primary-outline:focus,
.btn-primary-outline.disabled.focus,
.btn-primary-outline[disabled].focus,
fieldset[disabled] .btn-primary-outline.focus,
.btn-primary-outline.disabled:active,
.btn-primary-outline[disabled]:active,
fieldset[disabled] .btn-primary-outline:active,
.btn-primary-outline.disabled.active,
.btn-primary-outline[disabled].active,
fieldset[disabled] .btn-primary-outline.active {
  color: #cccccc;
  background: transparent;
  border-color: #ccc;
}
.btn-primary-outline .badge {
  color: #669900;
  background-color: transparent;
  border-color: #669900;
}
.btn-default-gradient {
  color: #999;
  border: none;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  font-weight: 600;
  line-height: 37px !important;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
}
.btn-default-gradient.ignore-case {
  text-transform: inherit;
}
.btn-default-gradient.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.btn-default-gradient.btn-lg.withSvg {
  padding-right: 54px;
}
.btn-default-gradient.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-default-gradient.btn-lg.withArrow,
.btn-default-gradient.btn-lg.withSave,
.btn-default-gradient.btn-lg.withDownload,
.btn-default-gradient.btn-lg.withLocation {
  padding-right: 45px;
}
.btn-default-gradient.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.btn-default-gradient.btn-md.withSvg {
  padding-right: 54px;
}
.btn-default-gradient.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-default-gradient.btn-md.withArrow,
.btn-default-gradient.btn-md.withSave,
.btn-default-gradient.btn-md.withLocation {
  padding-right: 40px;
}
.btn-default-gradient.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.btn-default-gradient.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.btn-default-gradient.btn-sm.withShoppingCart svg {
  right: 12px;
}
.btn-default-gradient.btn-sm.withPlus {
  padding-right: 42px;
}
.btn-default-gradient.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.btn-default-gradient.withSvg {
  position: relative;
  padding-right: 44px;
}
.btn-default-gradient.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-default-gradient.withArrow {
  position: relative;
  padding-right: 40px;
}
.btn-default-gradient.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.btn-default-gradient.withSave,
.btn-default-gradient.withDownload {
  position: relative;
  padding-right: 45px;
}
.btn-default-gradient.withSave svg,
.btn-default-gradient.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.btn-default-gradient.withSave .fill,
.btn-default-gradient.withDownload .fill {
  fill: #fff;
}
.btn-default-gradient.withLocation {
  position: relative;
  padding-right: 41px;
}
.btn-default-gradient.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.btn-default-gradient.withLocation .fill {
  fill: #fff;
}
.btn-default-gradient.withPlus {
  position: relative;
  padding-right: 42px;
}
.btn-default-gradient.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.btn-default-gradient.withPlus .fill {
  fill: #fff;
}
.btn-default-gradient.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.btn-default-gradient.withShoppingCart.posA {
  position: absolute;
}
.btn-default-gradient.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.btn-default-gradient.withShoppingCart svg path {
  fill: #fff;
}
.btn-default-gradient.lowerCase {
  text-transform: none;
}
.btn-default-gradient.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-default-gradient:focus,
.btn-default-gradient.focus {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.btn-default-gradient:hover {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.btn-default-gradient:active,
.btn-default-gradient.active,
.open > .dropdown-toggle.btn-default-gradient {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.btn-default-gradient:active:hover,
.btn-default-gradient.active:hover,
.open > .dropdown-toggle.btn-default-gradient:hover,
.btn-default-gradient:active:focus,
.btn-default-gradient.active:focus,
.open > .dropdown-toggle.btn-default-gradient:focus,
.btn-default-gradient:active.focus,
.btn-default-gradient.active.focus,
.open > .dropdown-toggle.btn-default-gradient.focus {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.btn-default-gradient:active,
.btn-default-gradient.active,
.open > .dropdown-toggle.btn-default-gradient {
  background-image: none;
}
.btn-default-gradient.disabled,
.btn-default-gradient[disabled],
fieldset[disabled] .btn-default-gradient,
.btn-default-gradient.disabled:hover,
.btn-default-gradient[disabled]:hover,
fieldset[disabled] .btn-default-gradient:hover,
.btn-default-gradient.disabled:focus,
.btn-default-gradient[disabled]:focus,
fieldset[disabled] .btn-default-gradient:focus,
.btn-default-gradient.disabled.focus,
.btn-default-gradient[disabled].focus,
fieldset[disabled] .btn-default-gradient.focus,
.btn-default-gradient.disabled:active,
.btn-default-gradient[disabled]:active,
fieldset[disabled] .btn-default-gradient:active,
.btn-default-gradient.disabled.active,
.btn-default-gradient[disabled].active,
fieldset[disabled] .btn-default-gradient.active {
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.btn-default-gradient .badge {
  color: #f3f3f3;
  background-color: #999;
}
.btn-primary-gradient {
  color: #ffffff;
  border: none;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  font-weight: 600;
  line-height: 37px !important;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
}
.btn-primary-gradient.ignore-case {
  text-transform: inherit;
}
.btn-primary-gradient.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.btn-primary-gradient.btn-lg.withSvg {
  padding-right: 54px;
}
.btn-primary-gradient.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-primary-gradient.btn-lg.withArrow,
.btn-primary-gradient.btn-lg.withSave,
.btn-primary-gradient.btn-lg.withDownload,
.btn-primary-gradient.btn-lg.withLocation {
  padding-right: 45px;
}
.btn-primary-gradient.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.btn-primary-gradient.btn-md.withSvg {
  padding-right: 54px;
}
.btn-primary-gradient.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-primary-gradient.btn-md.withArrow,
.btn-primary-gradient.btn-md.withSave,
.btn-primary-gradient.btn-md.withLocation {
  padding-right: 40px;
}
.btn-primary-gradient.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.btn-primary-gradient.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.btn-primary-gradient.btn-sm.withShoppingCart svg {
  right: 12px;
}
.btn-primary-gradient.btn-sm.withPlus {
  padding-right: 42px;
}
.btn-primary-gradient.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.btn-primary-gradient.withSvg {
  position: relative;
  padding-right: 44px;
}
.btn-primary-gradient.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-primary-gradient.withArrow {
  position: relative;
  padding-right: 40px;
}
.btn-primary-gradient.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.btn-primary-gradient.withSave,
.btn-primary-gradient.withDownload {
  position: relative;
  padding-right: 45px;
}
.btn-primary-gradient.withSave svg,
.btn-primary-gradient.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.btn-primary-gradient.withSave .fill,
.btn-primary-gradient.withDownload .fill {
  fill: #fff;
}
.btn-primary-gradient.withLocation {
  position: relative;
  padding-right: 41px;
}
.btn-primary-gradient.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.btn-primary-gradient.withLocation .fill {
  fill: #fff;
}
.btn-primary-gradient.withPlus {
  position: relative;
  padding-right: 42px;
}
.btn-primary-gradient.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.btn-primary-gradient.withPlus .fill {
  fill: #fff;
}
.btn-primary-gradient.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.btn-primary-gradient.withShoppingCart.posA {
  position: absolute;
}
.btn-primary-gradient.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.btn-primary-gradient.withShoppingCart svg path {
  fill: #fff;
}
.btn-primary-gradient.lowerCase {
  text-transform: none;
}
.btn-primary-gradient.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-primary-gradient:focus,
.btn-primary-gradient.focus {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-primary-gradient:hover {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-primary-gradient:active,
.btn-primary-gradient.active,
.open > .dropdown-toggle.btn-primary-gradient {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-primary-gradient:active:hover,
.btn-primary-gradient.active:hover,
.open > .dropdown-toggle.btn-primary-gradient:hover,
.btn-primary-gradient:active:focus,
.btn-primary-gradient.active:focus,
.open > .dropdown-toggle.btn-primary-gradient:focus,
.btn-primary-gradient:active.focus,
.btn-primary-gradient.active.focus,
.open > .dropdown-toggle.btn-primary-gradient.focus {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-primary-gradient:active,
.btn-primary-gradient.active,
.open > .dropdown-toggle.btn-primary-gradient {
  background-image: none;
}
.btn-primary-gradient.disabled,
.btn-primary-gradient[disabled],
fieldset[disabled] .btn-primary-gradient,
.btn-primary-gradient.disabled:hover,
.btn-primary-gradient[disabled]:hover,
fieldset[disabled] .btn-primary-gradient:hover,
.btn-primary-gradient.disabled:focus,
.btn-primary-gradient[disabled]:focus,
fieldset[disabled] .btn-primary-gradient:focus,
.btn-primary-gradient.disabled.focus,
.btn-primary-gradient[disabled].focus,
fieldset[disabled] .btn-primary-gradient.focus,
.btn-primary-gradient.disabled:active,
.btn-primary-gradient[disabled]:active,
fieldset[disabled] .btn-primary-gradient:active,
.btn-primary-gradient.disabled.active,
.btn-primary-gradient[disabled].active,
fieldset[disabled] .btn-primary-gradient.active {
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-primary-gradient .badge {
  color: #669900;
  background-color: #ffffff;
}
.btn-success-gradient {
  color: #ffffff;
  border: none;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  font-weight: 600;
  line-height: 37px !important;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #77B200 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #77B200 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #77B200 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
}
.btn-success-gradient.ignore-case {
  text-transform: inherit;
}
.btn-success-gradient.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.btn-success-gradient.btn-lg.withSvg {
  padding-right: 54px;
}
.btn-success-gradient.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-success-gradient.btn-lg.withArrow,
.btn-success-gradient.btn-lg.withSave,
.btn-success-gradient.btn-lg.withDownload,
.btn-success-gradient.btn-lg.withLocation {
  padding-right: 45px;
}
.btn-success-gradient.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.btn-success-gradient.btn-md.withSvg {
  padding-right: 54px;
}
.btn-success-gradient.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-success-gradient.btn-md.withArrow,
.btn-success-gradient.btn-md.withSave,
.btn-success-gradient.btn-md.withLocation {
  padding-right: 40px;
}
.btn-success-gradient.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.btn-success-gradient.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.btn-success-gradient.btn-sm.withShoppingCart svg {
  right: 12px;
}
.btn-success-gradient.btn-sm.withPlus {
  padding-right: 42px;
}
.btn-success-gradient.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.btn-success-gradient.withSvg {
  position: relative;
  padding-right: 44px;
}
.btn-success-gradient.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-success-gradient.withArrow {
  position: relative;
  padding-right: 40px;
}
.btn-success-gradient.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.btn-success-gradient.withSave,
.btn-success-gradient.withDownload {
  position: relative;
  padding-right: 45px;
}
.btn-success-gradient.withSave svg,
.btn-success-gradient.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.btn-success-gradient.withSave .fill,
.btn-success-gradient.withDownload .fill {
  fill: #fff;
}
.btn-success-gradient.withLocation {
  position: relative;
  padding-right: 41px;
}
.btn-success-gradient.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.btn-success-gradient.withLocation .fill {
  fill: #fff;
}
.btn-success-gradient.withPlus {
  position: relative;
  padding-right: 42px;
}
.btn-success-gradient.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.btn-success-gradient.withPlus .fill {
  fill: #fff;
}
.btn-success-gradient.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.btn-success-gradient.withShoppingCart.posA {
  position: absolute;
}
.btn-success-gradient.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.btn-success-gradient.withShoppingCart svg path {
  fill: #fff;
}
.btn-success-gradient.lowerCase {
  text-transform: none;
}
.btn-success-gradient.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-success-gradient:focus,
.btn-success-gradient.focus {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-success-gradient:hover {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-success-gradient:active,
.btn-success-gradient.active,
.open > .dropdown-toggle.btn-success-gradient {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-success-gradient:active:hover,
.btn-success-gradient.active:hover,
.open > .dropdown-toggle.btn-success-gradient:hover,
.btn-success-gradient:active:focus,
.btn-success-gradient.active:focus,
.open > .dropdown-toggle.btn-success-gradient:focus,
.btn-success-gradient:active.focus,
.btn-success-gradient.active.focus,
.open > .dropdown-toggle.btn-success-gradient.focus {
  color: #ffffff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-success-gradient:active,
.btn-success-gradient.active,
.open > .dropdown-toggle.btn-success-gradient {
  background-image: none;
}
.btn-success-gradient.disabled,
.btn-success-gradient[disabled],
fieldset[disabled] .btn-success-gradient,
.btn-success-gradient.disabled:hover,
.btn-success-gradient[disabled]:hover,
fieldset[disabled] .btn-success-gradient:hover,
.btn-success-gradient.disabled:focus,
.btn-success-gradient[disabled]:focus,
fieldset[disabled] .btn-success-gradient:focus,
.btn-success-gradient.disabled.focus,
.btn-success-gradient[disabled].focus,
fieldset[disabled] .btn-success-gradient.focus,
.btn-success-gradient.disabled:active,
.btn-success-gradient[disabled]:active,
fieldset[disabled] .btn-success-gradient:active,
.btn-success-gradient.disabled.active,
.btn-success-gradient[disabled].active,
fieldset[disabled] .btn-success-gradient.active {
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.btn-success-gradient .badge {
  color: #669900;
  background-color: #ffffff;
}
.btn-info-gradient {
  color: #ffffff;
  border: none;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  font-weight: 600;
  line-height: 37px !important;
  background-color: #0077e7;
  background-image: -moz-linear-gradient(90deg, #0077e7 0%, #3ba0ff 100%);
  background-image: -webkit-linear-gradient(90deg, #0077e7 0%, #3ba0ff 100%);
  background-image: -ms-linear-gradient(90deg, #0077e7 0%, #3ba0ff 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
}
.btn-info-gradient.ignore-case {
  text-transform: inherit;
}
.btn-info-gradient.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.btn-info-gradient.btn-lg.withSvg {
  padding-right: 54px;
}
.btn-info-gradient.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-info-gradient.btn-lg.withArrow,
.btn-info-gradient.btn-lg.withSave,
.btn-info-gradient.btn-lg.withDownload,
.btn-info-gradient.btn-lg.withLocation {
  padding-right: 45px;
}
.btn-info-gradient.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.btn-info-gradient.btn-md.withSvg {
  padding-right: 54px;
}
.btn-info-gradient.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-info-gradient.btn-md.withArrow,
.btn-info-gradient.btn-md.withSave,
.btn-info-gradient.btn-md.withLocation {
  padding-right: 40px;
}
.btn-info-gradient.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.btn-info-gradient.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.btn-info-gradient.btn-sm.withShoppingCart svg {
  right: 12px;
}
.btn-info-gradient.btn-sm.withPlus {
  padding-right: 42px;
}
.btn-info-gradient.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.btn-info-gradient.withSvg {
  position: relative;
  padding-right: 44px;
}
.btn-info-gradient.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-info-gradient.withArrow {
  position: relative;
  padding-right: 40px;
}
.btn-info-gradient.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.btn-info-gradient.withSave,
.btn-info-gradient.withDownload {
  position: relative;
  padding-right: 45px;
}
.btn-info-gradient.withSave svg,
.btn-info-gradient.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.btn-info-gradient.withSave .fill,
.btn-info-gradient.withDownload .fill {
  fill: #fff;
}
.btn-info-gradient.withLocation {
  position: relative;
  padding-right: 41px;
}
.btn-info-gradient.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.btn-info-gradient.withLocation .fill {
  fill: #fff;
}
.btn-info-gradient.withPlus {
  position: relative;
  padding-right: 42px;
}
.btn-info-gradient.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.btn-info-gradient.withPlus .fill {
  fill: #fff;
}
.btn-info-gradient.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.btn-info-gradient.withShoppingCart.posA {
  position: absolute;
}
.btn-info-gradient.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.btn-info-gradient.withShoppingCart svg path {
  fill: #fff;
}
.btn-info-gradient.lowerCase {
  text-transform: none;
}
.btn-info-gradient.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-info-gradient:focus,
.btn-info-gradient.focus {
  color: #ffffff;
  background-color: #0077e7;
  background-image: -moz-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -webkit-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -ms-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
}
.btn-info-gradient:hover {
  color: #ffffff;
  background-color: #0077e7;
  background-image: -moz-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -webkit-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -ms-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
}
.btn-info-gradient:active,
.btn-info-gradient.active,
.open > .dropdown-toggle.btn-info-gradient {
  color: #ffffff;
  background-color: #0077e7;
  background-image: -moz-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -webkit-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -ms-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
}
.btn-info-gradient:active:hover,
.btn-info-gradient.active:hover,
.open > .dropdown-toggle.btn-info-gradient:hover,
.btn-info-gradient:active:focus,
.btn-info-gradient.active:focus,
.open > .dropdown-toggle.btn-info-gradient:focus,
.btn-info-gradient:active.focus,
.btn-info-gradient.active.focus,
.open > .dropdown-toggle.btn-info-gradient.focus {
  color: #ffffff;
  background-color: #0077e7;
  background-image: -moz-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -webkit-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -ms-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
}
.btn-info-gradient:active,
.btn-info-gradient.active,
.open > .dropdown-toggle.btn-info-gradient {
  background-image: none;
}
.btn-info-gradient.disabled,
.btn-info-gradient[disabled],
fieldset[disabled] .btn-info-gradient,
.btn-info-gradient.disabled:hover,
.btn-info-gradient[disabled]:hover,
fieldset[disabled] .btn-info-gradient:hover,
.btn-info-gradient.disabled:focus,
.btn-info-gradient[disabled]:focus,
fieldset[disabled] .btn-info-gradient:focus,
.btn-info-gradient.disabled.focus,
.btn-info-gradient[disabled].focus,
fieldset[disabled] .btn-info-gradient.focus,
.btn-info-gradient.disabled:active,
.btn-info-gradient[disabled]:active,
fieldset[disabled] .btn-info-gradient:active,
.btn-info-gradient.disabled.active,
.btn-info-gradient[disabled].active,
fieldset[disabled] .btn-info-gradient.active {
  background-color: #0077e7;
  background-image: -moz-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -webkit-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
  background-image: -ms-linear-gradient(90deg, #0077e7 0%, #0077e7 100%);
}
.btn-info-gradient .badge {
  color: #0077e7;
  background-color: #ffffff;
}
.btn-warning-gradient {
  color: #ffffff;
  border: none;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  font-weight: 600;
  line-height: 37px !important;
  background-color: #ffa500;
  background-image: -moz-linear-gradient(90deg, #ffa500 0%, #ffc04d 100%);
  background-image: -webkit-linear-gradient(90deg, #ffa500 0%, #ffc04d 100%);
  background-image: -ms-linear-gradient(90deg, #ffa500 0%, #ffc04d 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
}
.btn-warning-gradient.ignore-case {
  text-transform: inherit;
}
.btn-warning-gradient.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.btn-warning-gradient.btn-lg.withSvg {
  padding-right: 54px;
}
.btn-warning-gradient.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-warning-gradient.btn-lg.withArrow,
.btn-warning-gradient.btn-lg.withSave,
.btn-warning-gradient.btn-lg.withDownload,
.btn-warning-gradient.btn-lg.withLocation {
  padding-right: 45px;
}
.btn-warning-gradient.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.btn-warning-gradient.btn-md.withSvg {
  padding-right: 54px;
}
.btn-warning-gradient.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-warning-gradient.btn-md.withArrow,
.btn-warning-gradient.btn-md.withSave,
.btn-warning-gradient.btn-md.withLocation {
  padding-right: 40px;
}
.btn-warning-gradient.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.btn-warning-gradient.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.btn-warning-gradient.btn-sm.withShoppingCart svg {
  right: 12px;
}
.btn-warning-gradient.btn-sm.withPlus {
  padding-right: 42px;
}
.btn-warning-gradient.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.btn-warning-gradient.withSvg {
  position: relative;
  padding-right: 44px;
}
.btn-warning-gradient.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-warning-gradient.withArrow {
  position: relative;
  padding-right: 40px;
}
.btn-warning-gradient.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.btn-warning-gradient.withSave,
.btn-warning-gradient.withDownload {
  position: relative;
  padding-right: 45px;
}
.btn-warning-gradient.withSave svg,
.btn-warning-gradient.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.btn-warning-gradient.withSave .fill,
.btn-warning-gradient.withDownload .fill {
  fill: #fff;
}
.btn-warning-gradient.withLocation {
  position: relative;
  padding-right: 41px;
}
.btn-warning-gradient.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.btn-warning-gradient.withLocation .fill {
  fill: #fff;
}
.btn-warning-gradient.withPlus {
  position: relative;
  padding-right: 42px;
}
.btn-warning-gradient.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.btn-warning-gradient.withPlus .fill {
  fill: #fff;
}
.btn-warning-gradient.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.btn-warning-gradient.withShoppingCart.posA {
  position: absolute;
}
.btn-warning-gradient.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.btn-warning-gradient.withShoppingCart svg path {
  fill: #fff;
}
.btn-warning-gradient.lowerCase {
  text-transform: none;
}
.btn-warning-gradient.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-warning-gradient:focus,
.btn-warning-gradient.focus {
  color: #ffffff;
  background-color: #ffa500;
  background-image: -moz-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -webkit-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -ms-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
}
.btn-warning-gradient:hover {
  color: #ffffff;
  background-color: #ffa500;
  background-image: -moz-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -webkit-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -ms-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
}
.btn-warning-gradient:active,
.btn-warning-gradient.active,
.open > .dropdown-toggle.btn-warning-gradient {
  color: #ffffff;
  background-color: #ffa500;
  background-image: -moz-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -webkit-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -ms-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
}
.btn-warning-gradient:active:hover,
.btn-warning-gradient.active:hover,
.open > .dropdown-toggle.btn-warning-gradient:hover,
.btn-warning-gradient:active:focus,
.btn-warning-gradient.active:focus,
.open > .dropdown-toggle.btn-warning-gradient:focus,
.btn-warning-gradient:active.focus,
.btn-warning-gradient.active.focus,
.open > .dropdown-toggle.btn-warning-gradient.focus {
  color: #ffffff;
  background-color: #ffa500;
  background-image: -moz-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -webkit-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -ms-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
}
.btn-warning-gradient:active,
.btn-warning-gradient.active,
.open > .dropdown-toggle.btn-warning-gradient {
  background-image: none;
}
.btn-warning-gradient.disabled,
.btn-warning-gradient[disabled],
fieldset[disabled] .btn-warning-gradient,
.btn-warning-gradient.disabled:hover,
.btn-warning-gradient[disabled]:hover,
fieldset[disabled] .btn-warning-gradient:hover,
.btn-warning-gradient.disabled:focus,
.btn-warning-gradient[disabled]:focus,
fieldset[disabled] .btn-warning-gradient:focus,
.btn-warning-gradient.disabled.focus,
.btn-warning-gradient[disabled].focus,
fieldset[disabled] .btn-warning-gradient.focus,
.btn-warning-gradient.disabled:active,
.btn-warning-gradient[disabled]:active,
fieldset[disabled] .btn-warning-gradient:active,
.btn-warning-gradient.disabled.active,
.btn-warning-gradient[disabled].active,
fieldset[disabled] .btn-warning-gradient.active {
  background-color: #ffa500;
  background-image: -moz-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -webkit-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
  background-image: -ms-linear-gradient(90deg, #ffa500 0%, #ffa500 100%);
}
.btn-warning-gradient .badge {
  color: #ffa500;
  background-color: #ffffff;
}
.btn-danger-gradient {
  color: #ffffff;
  border: none;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  font-weight: 600;
  line-height: 37px !important;
  background-color: #ff0000;
  background-image: -moz-linear-gradient(90deg, #ff0000 0%, #ff4d4d 100%);
  background-image: -webkit-linear-gradient(90deg, #ff0000 0%, #ff4d4d 100%);
  background-image: -ms-linear-gradient(90deg, #ff0000 0%, #ff4d4d 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
}
.btn-danger-gradient.ignore-case {
  text-transform: inherit;
}
.btn-danger-gradient.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.btn-danger-gradient.btn-lg.withSvg {
  padding-right: 54px;
}
.btn-danger-gradient.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-danger-gradient.btn-lg.withArrow,
.btn-danger-gradient.btn-lg.withSave,
.btn-danger-gradient.btn-lg.withDownload,
.btn-danger-gradient.btn-lg.withLocation {
  padding-right: 45px;
}
.btn-danger-gradient.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.btn-danger-gradient.btn-md.withSvg {
  padding-right: 54px;
}
.btn-danger-gradient.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.btn-danger-gradient.btn-md.withArrow,
.btn-danger-gradient.btn-md.withSave,
.btn-danger-gradient.btn-md.withLocation {
  padding-right: 40px;
}
.btn-danger-gradient.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.btn-danger-gradient.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.btn-danger-gradient.btn-sm.withShoppingCart svg {
  right: 12px;
}
.btn-danger-gradient.btn-sm.withPlus {
  padding-right: 42px;
}
.btn-danger-gradient.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.btn-danger-gradient.withSvg {
  position: relative;
  padding-right: 44px;
}
.btn-danger-gradient.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-danger-gradient.withArrow {
  position: relative;
  padding-right: 40px;
}
.btn-danger-gradient.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.btn-danger-gradient.withSave,
.btn-danger-gradient.withDownload {
  position: relative;
  padding-right: 45px;
}
.btn-danger-gradient.withSave svg,
.btn-danger-gradient.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.btn-danger-gradient.withSave .fill,
.btn-danger-gradient.withDownload .fill {
  fill: #fff;
}
.btn-danger-gradient.withLocation {
  position: relative;
  padding-right: 41px;
}
.btn-danger-gradient.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.btn-danger-gradient.withLocation .fill {
  fill: #fff;
}
.btn-danger-gradient.withPlus {
  position: relative;
  padding-right: 42px;
}
.btn-danger-gradient.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.btn-danger-gradient.withPlus .fill {
  fill: #fff;
}
.btn-danger-gradient.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.btn-danger-gradient.withShoppingCart.posA {
  position: absolute;
}
.btn-danger-gradient.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.btn-danger-gradient.withShoppingCart svg path {
  fill: #fff;
}
.btn-danger-gradient.lowerCase {
  text-transform: none;
}
.btn-danger-gradient.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.btn-danger-gradient:focus,
.btn-danger-gradient.focus {
  color: #ffffff;
  background-color: #ff0000;
  background-image: -moz-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -webkit-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -ms-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
}
.btn-danger-gradient:hover {
  color: #ffffff;
  background-color: #ff0000;
  background-image: -moz-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -webkit-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -ms-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
}
.btn-danger-gradient:active,
.btn-danger-gradient.active,
.open > .dropdown-toggle.btn-danger-gradient {
  color: #ffffff;
  background-color: #ff0000;
  background-image: -moz-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -webkit-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -ms-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
}
.btn-danger-gradient:active:hover,
.btn-danger-gradient.active:hover,
.open > .dropdown-toggle.btn-danger-gradient:hover,
.btn-danger-gradient:active:focus,
.btn-danger-gradient.active:focus,
.open > .dropdown-toggle.btn-danger-gradient:focus,
.btn-danger-gradient:active.focus,
.btn-danger-gradient.active.focus,
.open > .dropdown-toggle.btn-danger-gradient.focus {
  color: #ffffff;
  background-color: #ff0000;
  background-image: -moz-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -webkit-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -ms-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
}
.btn-danger-gradient:active,
.btn-danger-gradient.active,
.open > .dropdown-toggle.btn-danger-gradient {
  background-image: none;
}
.btn-danger-gradient.disabled,
.btn-danger-gradient[disabled],
fieldset[disabled] .btn-danger-gradient,
.btn-danger-gradient.disabled:hover,
.btn-danger-gradient[disabled]:hover,
fieldset[disabled] .btn-danger-gradient:hover,
.btn-danger-gradient.disabled:focus,
.btn-danger-gradient[disabled]:focus,
fieldset[disabled] .btn-danger-gradient:focus,
.btn-danger-gradient.disabled.focus,
.btn-danger-gradient[disabled].focus,
fieldset[disabled] .btn-danger-gradient.focus,
.btn-danger-gradient.disabled:active,
.btn-danger-gradient[disabled]:active,
fieldset[disabled] .btn-danger-gradient:active,
.btn-danger-gradient.disabled.active,
.btn-danger-gradient[disabled].active,
fieldset[disabled] .btn-danger-gradient.active {
  background-color: #ff0000;
  background-image: -moz-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -webkit-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
  background-image: -ms-linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
}
.btn-danger-gradient .badge {
  color: #ff0000;
  background-color: #ffffff;
}
.btn-default-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #999;
  font-weight: bold;
  text-align: center;
  padding: 11px 44px 10px 13px;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
  border-bottom: 1px solid #cdcdcd;
  background: #f3f3f3;
}
.btn-default-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-default-buy:focus,
.btn-default-buy.focus {
  color: #999;
  background: #c0c0c0;
}
.btn-default-buy:hover {
  color: #999;
  background: #c0c0c0;
}
.btn-default-buy:active,
.btn-default-buy.active,
.open > .dropdown-toggle.btn-default-buy {
  color: #999;
  background: #b3b3b3;
}
.btn-default-buy:active:hover,
.btn-default-buy.active:hover,
.open > .dropdown-toggle.btn-default-buy:hover,
.btn-default-buy:active:focus,
.btn-default-buy.active:focus,
.open > .dropdown-toggle.btn-default-buy:focus,
.btn-default-buy:active.focus,
.btn-default-buy.active.focus,
.open > .dropdown-toggle.btn-default-buy.focus {
  color: #999;
  background: #b3b3b3;
}
.btn-default-buy:active,
.btn-default-buy.active,
.open > .dropdown-toggle.btn-default-buy {
  background-image: none;
}
.btn-default-buy.disabled,
.btn-default-buy[disabled],
fieldset[disabled] .btn-default-buy,
.btn-default-buy.disabled:hover,
.btn-default-buy[disabled]:hover,
fieldset[disabled] .btn-default-buy:hover,
.btn-default-buy.disabled:focus,
.btn-default-buy[disabled]:focus,
fieldset[disabled] .btn-default-buy:focus,
.btn-default-buy.disabled.focus,
.btn-default-buy[disabled].focus,
fieldset[disabled] .btn-default-buy.focus,
.btn-default-buy.disabled:active,
.btn-default-buy[disabled]:active,
fieldset[disabled] .btn-default-buy:active,
.btn-default-buy.disabled.active,
.btn-default-buy[disabled].active,
fieldset[disabled] .btn-default-buy.active {
  background: #c0c0c0;
}
.btn-default-buy .badge {
  color: #f3f3f3;
  background-color: #999;
}
.btn-primary-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 11px 44px 10px 13px;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
  border-bottom: 1px solid #95c11f;
  background: #a5c957;
}
.btn-primary-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-primary-buy:focus,
.btn-primary-buy.focus {
  color: #ffffff;
  background: #6f8d2d;
}
.btn-primary-buy:hover {
  color: #ffffff;
  background: #6f8d2d;
}
.btn-primary-buy:active,
.btn-primary-buy.active,
.open > .dropdown-toggle.btn-primary-buy {
  color: #ffffff;
  background: #5f7927;
}
.btn-primary-buy:active:hover,
.btn-primary-buy.active:hover,
.open > .dropdown-toggle.btn-primary-buy:hover,
.btn-primary-buy:active:focus,
.btn-primary-buy.active:focus,
.open > .dropdown-toggle.btn-primary-buy:focus,
.btn-primary-buy:active.focus,
.btn-primary-buy.active.focus,
.open > .dropdown-toggle.btn-primary-buy.focus {
  color: #ffffff;
  background: #5f7927;
}
.btn-primary-buy:active,
.btn-primary-buy.active,
.open > .dropdown-toggle.btn-primary-buy {
  background-image: none;
}
.btn-primary-buy.disabled,
.btn-primary-buy[disabled],
fieldset[disabled] .btn-primary-buy,
.btn-primary-buy.disabled:hover,
.btn-primary-buy[disabled]:hover,
fieldset[disabled] .btn-primary-buy:hover,
.btn-primary-buy.disabled:focus,
.btn-primary-buy[disabled]:focus,
fieldset[disabled] .btn-primary-buy:focus,
.btn-primary-buy.disabled.focus,
.btn-primary-buy[disabled].focus,
fieldset[disabled] .btn-primary-buy.focus,
.btn-primary-buy.disabled:active,
.btn-primary-buy[disabled]:active,
fieldset[disabled] .btn-primary-buy:active,
.btn-primary-buy.disabled.active,
.btn-primary-buy[disabled].active,
fieldset[disabled] .btn-primary-buy.active {
  background: #6f8d2d;
}
.btn-primary-buy .badge {
  color: #a5c957;
  background-color: #ffffff;
}
.btn-success-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 11px 44px 10px 13px;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
  border-bottom: 1px solid #334c00;
  background: #77B200;
}
.btn-success-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-success-buy:focus,
.btn-success-buy.focus {
  color: #ffffff;
  background: #334c00;
}
.btn-success-buy:hover {
  color: #ffffff;
  background: #334c00;
}
.btn-success-buy:active,
.btn-success-buy.active,
.open > .dropdown-toggle.btn-success-buy {
  color: #ffffff;
  background: #223200;
}
.btn-success-buy:active:hover,
.btn-success-buy.active:hover,
.open > .dropdown-toggle.btn-success-buy:hover,
.btn-success-buy:active:focus,
.btn-success-buy.active:focus,
.open > .dropdown-toggle.btn-success-buy:focus,
.btn-success-buy:active.focus,
.btn-success-buy.active.focus,
.open > .dropdown-toggle.btn-success-buy.focus {
  color: #ffffff;
  background: #223200;
}
.btn-success-buy:active,
.btn-success-buy.active,
.open > .dropdown-toggle.btn-success-buy {
  background-image: none;
}
.btn-success-buy.disabled,
.btn-success-buy[disabled],
fieldset[disabled] .btn-success-buy,
.btn-success-buy.disabled:hover,
.btn-success-buy[disabled]:hover,
fieldset[disabled] .btn-success-buy:hover,
.btn-success-buy.disabled:focus,
.btn-success-buy[disabled]:focus,
fieldset[disabled] .btn-success-buy:focus,
.btn-success-buy.disabled.focus,
.btn-success-buy[disabled].focus,
fieldset[disabled] .btn-success-buy.focus,
.btn-success-buy.disabled:active,
.btn-success-buy[disabled]:active,
fieldset[disabled] .btn-success-buy:active,
.btn-success-buy.disabled.active,
.btn-success-buy[disabled].active,
fieldset[disabled] .btn-success-buy.active {
  background: #334c00;
}
.btn-success-buy .badge {
  color: #77B200;
  background-color: #ffffff;
}
.btn-info-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 11px 44px 10px 13px;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
  border-bottom: 1px solid #004281;
  background: #0077e7;
}
.btn-info-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-info-buy:focus,
.btn-info-buy.focus {
  color: #ffffff;
  background: #004281;
}
.btn-info-buy:hover {
  color: #ffffff;
  background: #004281;
}
.btn-info-buy:active,
.btn-info-buy.active,
.open > .dropdown-toggle.btn-info-buy {
  color: #ffffff;
  background: #003568;
}
.btn-info-buy:active:hover,
.btn-info-buy.active:hover,
.open > .dropdown-toggle.btn-info-buy:hover,
.btn-info-buy:active:focus,
.btn-info-buy.active:focus,
.open > .dropdown-toggle.btn-info-buy:focus,
.btn-info-buy:active.focus,
.btn-info-buy.active.focus,
.open > .dropdown-toggle.btn-info-buy.focus {
  color: #ffffff;
  background: #003568;
}
.btn-info-buy:active,
.btn-info-buy.active,
.open > .dropdown-toggle.btn-info-buy {
  background-image: none;
}
.btn-info-buy.disabled,
.btn-info-buy[disabled],
fieldset[disabled] .btn-info-buy,
.btn-info-buy.disabled:hover,
.btn-info-buy[disabled]:hover,
fieldset[disabled] .btn-info-buy:hover,
.btn-info-buy.disabled:focus,
.btn-info-buy[disabled]:focus,
fieldset[disabled] .btn-info-buy:focus,
.btn-info-buy.disabled.focus,
.btn-info-buy[disabled].focus,
fieldset[disabled] .btn-info-buy.focus,
.btn-info-buy.disabled:active,
.btn-info-buy[disabled]:active,
fieldset[disabled] .btn-info-buy:active,
.btn-info-buy.disabled.active,
.btn-info-buy[disabled].active,
fieldset[disabled] .btn-info-buy.active {
  background: #004281;
}
.btn-info-buy .badge {
  color: #0077e7;
  background-color: #ffffff;
}
.btn-warning-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 11px 44px 10px 13px;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
  border-bottom: 1px solid #996300;
  background: #ffa500;
}
.btn-warning-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-warning-buy:focus,
.btn-warning-buy.focus {
  color: #ffffff;
  background: #996300;
}
.btn-warning-buy:hover {
  color: #ffffff;
  background: #996300;
}
.btn-warning-buy:active,
.btn-warning-buy.active,
.open > .dropdown-toggle.btn-warning-buy {
  color: #ffffff;
  background: #805300;
}
.btn-warning-buy:active:hover,
.btn-warning-buy.active:hover,
.open > .dropdown-toggle.btn-warning-buy:hover,
.btn-warning-buy:active:focus,
.btn-warning-buy.active:focus,
.open > .dropdown-toggle.btn-warning-buy:focus,
.btn-warning-buy:active.focus,
.btn-warning-buy.active.focus,
.open > .dropdown-toggle.btn-warning-buy.focus {
  color: #ffffff;
  background: #805300;
}
.btn-warning-buy:active,
.btn-warning-buy.active,
.open > .dropdown-toggle.btn-warning-buy {
  background-image: none;
}
.btn-warning-buy.disabled,
.btn-warning-buy[disabled],
fieldset[disabled] .btn-warning-buy,
.btn-warning-buy.disabled:hover,
.btn-warning-buy[disabled]:hover,
fieldset[disabled] .btn-warning-buy:hover,
.btn-warning-buy.disabled:focus,
.btn-warning-buy[disabled]:focus,
fieldset[disabled] .btn-warning-buy:focus,
.btn-warning-buy.disabled.focus,
.btn-warning-buy[disabled].focus,
fieldset[disabled] .btn-warning-buy.focus,
.btn-warning-buy.disabled:active,
.btn-warning-buy[disabled]:active,
fieldset[disabled] .btn-warning-buy:active,
.btn-warning-buy.disabled.active,
.btn-warning-buy[disabled].active,
fieldset[disabled] .btn-warning-buy.active {
  background: #996300;
}
.btn-warning-buy .badge {
  color: #ffa500;
  background-color: #ffffff;
}
.btn-danger-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 11px 44px 10px 13px;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
  border-bottom: 1px solid #990000;
  background: #ff0000;
}
.btn-danger-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn-danger-buy:focus,
.btn-danger-buy.focus {
  color: #ffffff;
  background: #990000;
}
.btn-danger-buy:hover {
  color: #ffffff;
  background: #990000;
}
.btn-danger-buy:active,
.btn-danger-buy.active,
.open > .dropdown-toggle.btn-danger-buy {
  color: #ffffff;
  background: #800000;
}
.btn-danger-buy:active:hover,
.btn-danger-buy.active:hover,
.open > .dropdown-toggle.btn-danger-buy:hover,
.btn-danger-buy:active:focus,
.btn-danger-buy.active:focus,
.open > .dropdown-toggle.btn-danger-buy:focus,
.btn-danger-buy:active.focus,
.btn-danger-buy.active.focus,
.open > .dropdown-toggle.btn-danger-buy.focus {
  color: #ffffff;
  background: #800000;
}
.btn-danger-buy:active,
.btn-danger-buy.active,
.open > .dropdown-toggle.btn-danger-buy {
  background-image: none;
}
.btn-danger-buy.disabled,
.btn-danger-buy[disabled],
fieldset[disabled] .btn-danger-buy,
.btn-danger-buy.disabled:hover,
.btn-danger-buy[disabled]:hover,
fieldset[disabled] .btn-danger-buy:hover,
.btn-danger-buy.disabled:focus,
.btn-danger-buy[disabled]:focus,
fieldset[disabled] .btn-danger-buy:focus,
.btn-danger-buy.disabled.focus,
.btn-danger-buy[disabled].focus,
fieldset[disabled] .btn-danger-buy.focus,
.btn-danger-buy.disabled:active,
.btn-danger-buy[disabled]:active,
fieldset[disabled] .btn-danger-buy:active,
.btn-danger-buy.disabled.active,
.btn-danger-buy[disabled].active,
fieldset[disabled] .btn-danger-buy.active {
  background: #990000;
}
.btn-danger-buy .badge {
  color: #ff0000;
  background-color: #ffffff;
}
.btn-link {
  color: #95c11f;
  font-weight: normal;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  text-decoration: underline;
}
.btn-link .text-default {
  color: #ccc;
  text-decoration: none;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
       box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #669900;
  text-decoration: none;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #cccccc;
  text-decoration: none;
}
.btn-link.btn-xs,
.btn-link.btn-sm,
.btn-link.btn-md,
.btn-link.btn-lg {
  padding: 0;
}
.btn-lg {
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-sm {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-xs {
  padding: 1px 5px;
  font-size: 13px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  -moz-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -moz-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
       transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
       transition-timing-function: ease;
}
.dropdown .btn {
  position: relative;
  width: 100%;
  text-align: left;
  color: #000;
  border: 1px solid #cccccc;
  background: #fff;
  font-weight: normal;
  padding: 10px 20px 12px;
  font-size: 14px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.dropdown .caret {
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url('../images/layout/arrow3.gray.svg') no-repeat center;
  -webkit-background-size: 12px auto;
     -moz-background-size: 12px auto;
          background-size: 12px auto;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dropdown:focus,
.dropdown.dropdown-primary {
  border-color: #95c11f;
}
.dropdown:focus .caret,
.dropdown.dropdown-primary .caret {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  width: 100%;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 13px;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
       box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 500;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #95c11f;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #cccccc;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #cccccc;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 2px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.bootstrap-select {
  outline: none !important;
  position: relative;
}
.bootstrap-select .btn {
  position: relative;
  width: 100%;
  text-align: left;
  color: #000;
  border: 1px solid #cccccc;
  background: #fff;
  font-weight: normal;
  padding: 10px 20px 12px;
  font-size: 14px;
  line-height: 1.5;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.bootstrap-select .caret {
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url('../images/layout/arrow3.gray.svg') no-repeat center;
  -webkit-background-size: 12px auto;
     -moz-background-size: 12px auto;
          background-size: 12px auto;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.bootstrap-select:focus,
.bootstrap-select.dropdown-primary {
  border-color: #95c11f;
}
.bootstrap-select:focus .caret,
.bootstrap-select.dropdown-primary .caret {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.bootstrap-select .btn {
  position: relative;
  width: 100%;
  text-align: left;
}
.bootstrap-select.form-control {
  height: auto;
}
.bootstrap-select.open .btn,
.bootstrap-select:focus .btn {
  color: #000;
  background: #fff !important;
  border-color: #95c11f !important;
}
.bootstrap-select.open .caret,
.bootstrap-select:focus .caret {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.bootstrap-select .caret {
  margin: 0;
  padding: 0;
  border: none;
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: url('../images/layout/arrow3.gray.svg') no-repeat center;
  -webkit-background-size: 12px auto;
     -moz-background-size: 12px auto;
          background-size: 12px auto;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.form-group.has-error .bootstrap-select.open .btn,
.form-group.has-error .bootstrap-select:focus .btn {
  color: #000;
  background: #fff !important;
  border-color: #ff0000 !important;
}
.form-group.has-error .bootstrap-select.open .caret,
.form-group.has-error .bootstrap-select:focus .caret {
  -webkit-filter: none !important;
          filter: none !important;
}
.form-group.has-warning .bootstrap-select.open .btn,
.form-group.has-warning .bootstrap-select:focus .btn {
  color: #000;
  background: #fff !important;
  border-color: #ffa500 !important;
}
.form-group.has-warning .bootstrap-select.open .caret,
.form-group.has-warning .bootstrap-select:focus .caret {
  -webkit-filter: none !important;
          filter: none !important;
}
.imgSelect .bootstrap-select .btn {
  padding: 3px 10px 4px 10px;
}
.imgSelect .bootstrap-select .dropdown-menu > li > a {
  padding-left: 10px;
}
.dropdown-gift .btn {
  padding: 0 0 0 15px;
  border: 1px solid #CAE08F;
  background: #F9FFE9;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.dropdown-gift .btn:focus {
  outline: none;
}
.dropdown-gift .btn .caretInfo {
  position: absolute;
  top: 50%;
  right: 48px;
  display: block;
  font-size: 12px;
  color: #95C11F;
  text-align: right;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dropdown-gift .btn .caret {
  right: 18px;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  background-image: url(../images/layout/arrow3.primary.svg);
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dropdown-gift .btn[aria-expanded=true] .caret {
  -webkit-transform: rotate(-180deg);
     -moz-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dropdown-gift__item {
  display: block;
  position: relative;
  height: 45px;
}
.dropdown-gift__item:before,
.dropdown-gift__item:after {
  content: " ";
  display: table;
}
.dropdown-gift__item:after {
  clear: both;
}
.dropdown-gift__item:before,
.dropdown-gift__item:after {
  content: " ";
  display: table;
}
.dropdown-gift__item:after {
  clear: both;
}
.dropdown-gift__item-icon {
  display: block;
  width: 22px;
  height: auto;
  float: left;
  margin-top: 10px;
}
.dropdown-gift__item-icon path {
  fill: #D7EAA2;
}
.dropdown-gift__item-title {
  float: left;
  display: block;
  line-height: 45px;
  margin-left: 10px;
  color: #95c11f;
  font-size: 13px;
  font-weight: 500;
}
.dropdown-gift__item-productImage {
  float: left;
  display: block;
  margin-left: 20px;
  width: 31px;
  height: auto;
  margin-top: 6px;
}
.dropdown-gift__item-productTitle {
  float: left;
  display: block;
  line-height: 45px;
  margin-left: 10px;
  color: #000;
  font-size: 13px;
  font-weight: normal;
}
a.dropdown-gift__item:hover .productDetail-gifts-item-productTitle,
a.dropdown-gift__item:focus .productDetail-gifts-item-productTitle {
  text-decoration: none;
}
.dropdown-gift .dropdown-menu {
  margin: -1px 0 0 0;
  padding: 0;
  border-color: #CAE08F;
  border-width: 0 1px 1px 1px;
  background: #F9FFE9;
}
.dropdown-gift .dropdown-menu .dropdown-gift__item {
  padding: 0 0 0 138px;
}
.dropdown-gift .dropdown-menu .dropdown-gift__item-title {
  float: left;
  display: block;
  line-height: 45px;
  margin-left: 10px;
  color: #95c11f;
  font-size: 13px;
  font-weight: 500;
}
.dropdown-gift .dropdown-menu .dropdown-gift__item-productImage {
  float: left;
  display: block;
  margin-left: 20px;
  width: 31px;
  height: auto;
  margin-top: 6px;
}
.dropdown-gift .dropdown-menu .dropdown-gift__item-productTitle {
  float: left;
  display: block;
  line-height: 45px;
  margin-left: 10px;
  color: #000;
  font-size: 13px;
  font-weight: normal;
}
.dropdown-gift .dropdown-menu .dropdown-gift__item:hover,
.dropdown-gift .dropdown-menu .dropdown-gift__item:focus {
  background: #fff;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 48px;
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 48px;
  line-height: 48px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple] .input-group-lg > .form-control,
select[multiple] .input-group-lg > .input-group-addon,
select[multiple] .input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 31px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 31px;
  line-height: 31px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple] .input-group-sm > .form-control,
select[multiple] .input-group-sm > .input-group-addon,
select[multiple] .input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  color: #000;
  text-align: center;
  background-color: #fefefe;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 13px;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 19px;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  -webkit-border-bottom-right-radius: 0;
     -moz-border-radius-bottomright: 0;
          border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
     -moz-border-radius-topright: 0;
          border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  -webkit-border-bottom-left-radius: 0;
     -moz-border-radius-bottomleft: 0;
          border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
     -moz-border-radius-topleft: 0;
          border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.input-group-input .input-group-addon {
  padding: 0;
}
.input-group-input .input-group-addon input {
  width: 60px;
  background: transparent;
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  outline: none;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #f4f4f4;
}
.nav > li.disabled > a {
  color: #cccccc;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #cccccc;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #f4f4f4;
  border-color: #95c11f;
}
.nav .nav-divider {
  height: 1px;
  margin: 9.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs > li {
  float: left;
}
.nav-tabs > li:first-child,
.nav-tabs > li:first-child > a {
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
}
.nav-tabs > li:last-child,
.nav-tabs > li:last-child > a {
  -webkit-border-top-right-radius: 5px;
     -moz-border-radius-topright: 5px;
          border-top-right-radius: 5px;
}
.nav-tabs > li > a {
  margin-right: 7px;
  line-height: 1.42857143;
  border: 1px solid #dedede;
  border-bottom-width: 0;
  background: #f9ffe9;
  -webkit-border-radius: 0 0 0 0;
     -moz-border-radius: 0 0 0 0;
          border-radius: 0 0 0 0;
  -webkit-transition: background 250ms ease-in-out, color 250ms ease-in-out;
  -o-transition: background 250ms ease-in-out, color 250ms ease-in-out;
  -moz-transition: background 250ms ease-in-out, color 250ms ease-in-out;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 40px;
  color: #95c11f;
}
.nav-tabs > li > a:hover {
  border-color: transparent;
  background: #669900;
  color: #fff;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #fff;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  cursor: default;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #95c11f;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 2px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 2px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #dddddd;
    -webkit-border-radius: 0 0 0 0;
       -moz-border-radius: 0 0 0 0;
            border-radius: 0 0 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #e0e0e0;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #ffffff;
  background-color: #95c11f;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 2px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #dddddd;
}
@media (min-width: 2px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #dddddd;
    -webkit-border-radius: 0 0 0 0;
       -moz-border-radius: 0 0 0 0;
            border-radius: 0 0 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #e0e0e0;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  -webkit-border-top-right-radius: 0;
     -moz-border-radius-topright: 0;
          border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
     -moz-border-radius-topleft: 0;
          border-top-left-radius: 0;
}
.nav-transparent:before,
.nav-transparent:after {
  content: " ";
  display: table;
}
.nav-transparent:after {
  clear: both;
}
.nav-transparent:before,
.nav-transparent:after {
  content: " ";
  display: table;
}
.nav-transparent:after {
  clear: both;
}
.nav-transparent li {
  margin: 0 40px 0 0;
  padding: 0;
  float: left;
}
.nav-transparent li a {
  font-size: 24px;
  line-height: 27px;
  font-weight: bold;
  color: #999999;
  margin: 0;
  padding: 0;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  background: transparent;
}
.nav-transparent li.active a,
.nav-transparent li a:hover,
.nav-transparent li a:focus {
  color: #95c11f;
  background: transparent;
}
.nav-transparent2,
.nav-transparent3 {
  border-bottom: 1px solid #ccc;
}
.nav-transparent2:before,
.nav-transparent3:before,
.nav-transparent2:after,
.nav-transparent3:after {
  content: " ";
  display: table;
}
.nav-transparent2:after,
.nav-transparent3:after {
  clear: both;
}
.nav-transparent2:before,
.nav-transparent3:before,
.nav-transparent2:after,
.nav-transparent3:after {
  content: " ";
  display: table;
}
.nav-transparent2:after,
.nav-transparent3:after {
  clear: both;
}
.nav-transparent2 li,
.nav-transparent3 li {
  margin: 0;
  padding: 0;
  float: left;
}
.nav-transparent2 li a,
.nav-transparent3 li a {
  position: relative;
  height: 60px;
  line-height: 60px;
  font-weight: 500;
  margin: 0;
  padding: 0 30px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  background: transparent;
  font-size: 18px;
  color: #000;
}
.nav-transparent2 li a:after,
.nav-transparent3 li a:after {
  content: '';
  width: 100%;
  height: 0;
  background: #95c11f;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.nav-transparent2 li.active a,
.nav-transparent3 li.active a,
.nav-transparent2 li a:hover,
.nav-transparent3 li a:hover,
.nav-transparent2 li a:focus,
.nav-transparent3 li a:focus {
  color: #95c11f;
  background: transparent;
}
.nav-transparent2 li.active a,
.nav-transparent3 li.active a {
  color: #95c11f;
}
.nav-transparent2 li.active a:after,
.nav-transparent3 li.active a:after {
  height: 2px;
}
.nav-transparent3 li a {
  padding: 0 30px;
  height: 46px;
  line-height: 46px;
}
.nav-transparent3 li:first-child a {
  padding-left: 0;
}
.pagination {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 5px 8px;
  line-height: 1;
  text-decoration: none;
  color: #000;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  margin: 0 2px;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
}
.pagination > li > a:before,
.pagination > li > span:before {
  content: '';
  width: 102%;
  height: 100%;
  background: #eff6de;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  z-index: -1;
  display: none;
}
.pagination > li.active > a,
.pagination > li.active > span {
  padding: 5px 10px;
}
.pagination > li.arrow a,
.pagination > li.arrow span {
  min-width: 13px;
  min-height: 24px;
  padding: 0;
}
.pagination > li.arrow svg {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 10px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pagination > li.arrow-prev a,
.pagination > li.arrow-prev span {
  margin-left: 0;
}
.pagination > li.arrow-prev svg {
  left: 0;
  -webkit-transform: translateY(-50%) scale(-1);
     -moz-transform: translateY(-50%) scale(-1);
       -o-transform: translateY(-50%) scale(-1);
          transform: translateY(-50%) scale(-1);
}
.pagination > li.arrow-next a,
.pagination > li.arrow-next span {
  margin-right: 0;
}
.pagination > li.arrow-next svg {
  right: -2px;
}
.pagination > li.arrow a:hover,
.pagination > li.arrow a:focus {
  opacity: 0.8;
}
.pagination > li:not(.arrow):not(.active) > a:hover,
.pagination > li > span:not(.dots):hover,
.pagination > li:not(.arrow):not(.active) > a:focus,
.pagination > li > span:not(.dots):focus {
  z-index: 3;
  color: #000;
}
.pagination > li:not(.arrow):not(.active) > a:hover:before,
.pagination > li > span:not(.dots):hover:before,
.pagination > li:not(.arrow):not(.active) > a:focus:before,
.pagination > li > span:not(.dots):focus:before {
  display: block;
}
.pagination > .active > a,
.pagination > .active > span:not(.dots),
.pagination > .active > a:hover,
.pagination > .active > span:not(.dots):hover,
.pagination > .active > a:focus,
.pagination > .active > span:not(.dots):focus {
  z-index: 2;
  color: #fff;
  background-color: #95c11f;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:not(.dots):hover,
.pagination > .disabled > span:not(.dots):focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #cccccc;
  cursor: not-allowed;
}
.pagination > .disabled > span:before,
.pagination > .disabled > span:not(.dots):hover:before,
.pagination > .disabled > span:not(.dots):focus:before,
.pagination > .disabled > a:before,
.pagination > .disabled > a:hover:before,
.pagination > .disabled > a:focus:before {
  display: block;
  background: #ffffff;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 19px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  -webkit-border-bottom-left-radius: 0;
     -moz-border-radius-bottomleft: 0;
          border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
     -moz-border-radius-topleft: 0;
          border-top-left-radius: 0;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  -webkit-border-bottom-right-radius: 0;
     -moz-border-radius-bottomright: 0;
          border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
     -moz-border-radius-topright: 0;
          border-top-right-radius: 0;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  -webkit-border-bottom-left-radius: 0;
     -moz-border-radius-bottomleft: 0;
          border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
     -moz-border-radius-topleft: 0;
          border-top-left-radius: 0;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  -webkit-border-bottom-right-radius: 0;
     -moz-border-radius-bottomright: 0;
          border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
     -moz-border-radius-topright: 0;
          border-top-right-radius: 0;
}
.panel-pagination {
  float: right;
}
.panel-pagination--top {
  margin-bottom: 15px;
}
.panel-pagination--bottom {
  margin-top: 20px;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 4px 6px;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  background-color: #95c11f;
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
  text-align: center;
  margin-left: 6px;
  pointer-events: none;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #95c11f;
  background-color: #ffffff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.badge-md {
  font-size: 12px;
  padding-top: 7px;
  padding-bottom: 7px;
  height: 24px;
  min-width: 24px;
}
.badge--clear {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
.badge--transparent {
  color: #ccc;
  background: transparent;
}
.badge--black {
  color: #fff;
  background: #000;
  border-color: #fff;
}
.badge--withBorder {
  border-width: 2px;
  border-style: solid;
}
.badge--withBorder.badge-md {
  padding-top: 4px;
  padding-bottom: 4px;
}
.alertsBox.fixed {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 9;
  z-index: 5;
}
.alertsBox--profile .alert:last-child {
  margin-bottom: 40px;
}
.alert {
  border: none;
  font-size: 14px;
  line-height: 1.501;
  font-weight: 500;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
  text-decoration: underline;
}
.alert .alert-link:hover,
.alert .alert-link:focus {
  text-decoration: none;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-out {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.alert-in {
  display: inline-block;
  position: relative;
  padding: 15px 0;
}
.alert--withIcon .alert-in {
  padding-left: 39px;
}
.alert--withIcon .icon {
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
}
.alert--variant2 {
  border: 1px solid #000;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}
.alert--variant2 .alert-out {
  text-align: left;
}
.alert--variant2 .alert-in {
  padding-top: 10px;
  padding-bottom: 10px;
}
.alert--variant3 {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  font-weight: normal;
}
.alert--variant3 .alert-out {
  text-align: left;
}
.alert--variant3 .alert-in {
  padding-top: 18px;
  padding-bottom: 18px;
}
.alert--variant3 .icon {
  top: 20px;
  margin: 0;
}
.alert .text-default {
  color: #000000;
  line-height: 1.286;
  display: inline-block;
  font-weight: normal;
}
.alert .text-default a {
  font-weight: normal;
  color: #000000;
  line-height: 1.286;
}
.alert .text-default--withPadding {
  padding-left: 15px;
}
.alert--centerContent .alert-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.alert .close {
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  color: inherit;
  width: 16px;
  height: 16px;
  background: url('../images/layout/alerts/close.svg') no-repeat center;
  margin-top: -8px;
}
.alert-success {
  background-color: #eff6de;
  border-color: #cae08f;
  color: #95c11f;
}
.alert-success hr {
  border-top-color: #c1da7b;
}
.alert-success .alert-link {
  color: #95c11f;
}
.alert-success .icon {
  background: url('../images/layout/alerts/success.svg') no-repeat center;
}
.alert-info {
  background-color: #deecf6;
  border-color: #7fbbf3;
  color: #0077e7;
}
.alert-info hr {
  border-top-color: #68aff1;
}
.alert-info .alert-link {
  color: #0077e7;
}
.alert-info .icon {
  background: url('../images/layout/alerts/info.svg') no-repeat center;
}
.alert-warning {
  background-color: #fff6ce;
  border-color: #ffc576;
  color: #ffa500;
}
.alert-warning hr {
  border-top-color: #ffba5d;
}
.alert-warning .alert-link {
  color: #ffa500;
}
.alert-warning .icon {
  background: url('../images/layout/alerts/warning.svg') no-repeat center;
}
.alert-danger {
  background-color: #f6dede;
  border-color: #ff887e;
  color: #ff0000;
}
.alert-danger hr {
  border-top-color: #ff7064;
}
.alert-danger .alert-link {
  color: #ff0000;
}
.alert-danger .icon {
  background: url('../images/layout/alerts/error.svg') no-repeat center;
}
.panel {
  margin-bottom: 21px;
  background-color: #ffffff;
  border: 1px solid transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  position: relative;
}
.panel-orderInfo {
  padding: 0 20px 20px 40px;
}
.panel-orderInfo-box {
  padding-top: 35px;
}
.panel-orderInfo-box--white {
  background: #fff;
  padding-bottom: 20px;
}
.panel-orderInfo-text {
  padding-top: 40px;
}
.panel-orderInfo-text--withIcon .panel-orderInfo-text-in {
  padding-left: 30px;
  position: relative;
}
.panel-orderInfo-text--withIcon .panel-orderInfo-text-in:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 30px;
  height: 30px;
  background: url('../images/layout/info.svg') no-repeat top left;
  -webkit-background-size: 18px auto;
     -moz-background-size: 18px auto;
          background-size: 18px auto;
}
.panel-orderInfo-text p {
  margin: 0;
  font-size: 14px;
  color: #999;
  line-height: 1.429;
}
.panel-orderInfo-text a {
  text-decoration: underline;
  color: #95c11f;
}
.panel-orderInfo-text a:hover,
.panel-orderInfo-text a:focus {
  text-decoration: none;
}
.panel-orderInfo-title {
  margin: -4px 0 0;
  padding: 0 0 17px;
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  line-height: 1.75;
}
.panel-orderInfo--columns:before,
.panel-orderInfo--columns:after {
  content: " ";
  display: table;
}
.panel-orderInfo--columns:after {
  clear: both;
}
.panel-orderInfo--columns:before,
.panel-orderInfo--columns:after {
  content: " ";
  display: table;
}
.panel-orderInfo--columns:after {
  clear: both;
}
.panel-orderInfo--columns > .col-1 {
  float: left;
  width: 376px;
}
.panel-orderInfo--columns > .col-2 {
  float: right;
  width: 442px;
}
.panel-orderInfo--columns > .col-2 .panel-orderInfo-box {
  padding-left: 40px;
}
.panel-body {
  padding: 20px;
}
.panel-heading {
  padding: 30px 20px 33px 40px;
  border: none;
  position: relative;
}
.panel-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  width: -webkit-calc(100% - 60px);
  width: -moz-calc(100% - 60px);
  width: calc(100% - 60px);
  display: block;
  height: 1px;
  background: #ccc;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-heading-title {
  margin-top: 0;
  margin-bottom: 0;
  color: inherit;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.556;
  position: relative;
}
.panel-heading-title > a,
.panel-heading-title > small,
.panel-heading-title > .small,
.panel-heading-title > small > a,
.panel-heading-title > .small > a {
  color: inherit;
}
.panel-heading-title-icon {
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%) translateX(100%);
     -moz-transform: translateY(-50%) translateX(100%);
       -o-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
}
.panel-heading-title-icon .fill {
  fill: #ccc;
}
.panel-heading-title-icon--location {
  width: 18px;
  height: 27px;
}
.panel-heading-title-edit {
  position: absolute;
  display: block;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%) translateX(100%);
     -moz-transform: translateY(-50%) translateX(100%);
       -o-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
  padding: 10px;
}
.panel-heading-title-edit svg {
  width: 14px;
  height: 14px;
}
.panel-heading-title-edit:hover .fill,
.panel-heading-title-edit:focus .fill {
  fill: #669900;
}
.panel-heading-text {
  display: block;
  font-size: 14px;
  color: #000000;
  line-height: 1.429;
  margin: 3px 0 -13px;
  padding: 0;
}
.panel-footer {
  padding: 0;
  background-color: #f5f5f5;
  border-top: 1px solid #dddddd;
  -webkit-border-bottom-right-radius: -1;
     -moz-border-radius-bottomright: -1;
          border-bottom-right-radius: -1;
  -webkit-border-bottom-left-radius: -1;
     -moz-border-radius-bottomleft: -1;
          border-bottom-left-radius: -1;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  -webkit-border-top-right-radius: -1;
     -moz-border-radius-topright: -1;
          border-top-right-radius: -1;
  -webkit-border-top-left-radius: -1;
     -moz-border-radius-topleft: -1;
          border-top-left-radius: -1;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  -webkit-border-bottom-right-radius: -1;
     -moz-border-radius-bottomright: -1;
          border-bottom-right-radius: -1;
  -webkit-border-bottom-left-radius: -1;
     -moz-border-radius-bottomleft: -1;
          border-bottom-left-radius: -1;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  -webkit-border-top-right-radius: 0;
     -moz-border-radius-topright: 0;
          border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
     -moz-border-radius-topleft: 0;
          border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 20px;
  padding-right: 20px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  -webkit-border-top-right-radius: -1;
     -moz-border-radius-topright: -1;
          border-top-right-radius: -1;
  -webkit-border-top-left-radius: -1;
     -moz-border-radius-topleft: -1;
          border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  -webkit-border-top-left-radius: -1;
     -moz-border-radius-topleft: -1;
          border-top-left-radius: -1;
  -webkit-border-top-right-radius: -1;
     -moz-border-radius-topright: -1;
          border-top-right-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  -webkit-border-top-left-radius: -1;
     -moz-border-radius-topleft: -1;
          border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  -webkit-border-top-right-radius: -1;
     -moz-border-radius-topright: -1;
          border-top-right-radius: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  -webkit-border-bottom-right-radius: -1;
     -moz-border-radius-bottomright: -1;
          border-bottom-right-radius: -1;
  -webkit-border-bottom-left-radius: -1;
     -moz-border-radius-bottomleft: -1;
          border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  -webkit-border-bottom-left-radius: -1;
     -moz-border-radius-bottomleft: -1;
          border-bottom-left-radius: -1;
  -webkit-border-bottom-right-radius: -1;
     -moz-border-radius-bottomright: -1;
          border-bottom-right-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  -webkit-border-bottom-left-radius: -1;
     -moz-border-radius-bottomleft: -1;
          border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  -webkit-border-bottom-right-radius: -1;
     -moz-border-radius-bottomright: -1;
          border-bottom-right-radius: -1;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #dddddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 21px;
}
.panel-group .panel {
  margin-bottom: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #dddddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #dddddd;
}
.panel-default {
  border-color: #cccccc;
  background-color: #f8f8f8;
}
.panel-default .panel-heading-title {
  color: #000;
}
.panel-default .panel-heading-title-icon .fill {
  fill: #000;
}
.panel-default > .panel-heading {
  color: #000;
}
.panel-default > .panel-heading:after {
  background: #cccccc;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cccccc;
}
.panel-default > .panel-heading .badge {
  color: #f8f8f8;
  background-color: #000;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cccccc;
}
.panel-primary {
  border-color: #cae08f;
  background-color: #f9ffe9;
}
.panel-primary .panel-heading-title {
  color: #95c11f;
}
.panel-primary .panel-heading-title-icon .fill {
  fill: #95c11f;
}
.panel-primary > .panel-heading {
  color: #95c11f;
}
.panel-primary > .panel-heading:after {
  background: #cae08f;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cae08f;
}
.panel-primary > .panel-heading .badge {
  color: #f9ffe9;
  background-color: #95c11f;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cae08f;
}
.panel-success {
  border-color: #cae08f;
  background-color: #f9ffe9;
}
.panel-success .panel-heading-title {
  color: #95c11f;
}
.panel-success .panel-heading-title-icon .fill {
  fill: #95c11f;
}
.panel-success > .panel-heading {
  color: #95c11f;
}
.panel-success > .panel-heading:after {
  background: #cae08f;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cae08f;
}
.panel-success > .panel-heading .badge {
  color: #f9ffe9;
  background-color: #95c11f;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cae08f;
}
.panel-info {
  border-color: #7fbbf3;
  background-color: #E7F3FF;
}
.panel-info .panel-heading-title {
  color: #0077e7;
}
.panel-info .panel-heading-title-icon .fill {
  fill: #0077e7;
}
.panel-info > .panel-heading {
  color: #0077e7;
}
.panel-info > .panel-heading:after {
  background: #7fbbf3;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #7fbbf3;
}
.panel-info > .panel-heading .badge {
  color: #E7F3FF;
  background-color: #0077e7;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #7fbbf3;
}
.panel-warning {
  border-color: #ffcc7f;
  background-color: #fff6e9;
}
.panel-warning .panel-heading-title {
  color: #ff9900;
}
.panel-warning .panel-heading-title-icon .fill {
  fill: #ff9900;
}
.panel-warning > .panel-heading {
  color: #ff9900;
}
.panel-warning > .panel-heading:after {
  background: #ffcc7f;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ffcc7f;
}
.panel-warning > .panel-heading .badge {
  color: #fff6e9;
  background-color: #ff9900;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ffcc7f;
}
.panel-danger {
  border-color: #f2b5b5;
  background-color: #fff2f2;
}
.panel-danger .panel-heading-title {
  color: #ff0000;
}
.panel-danger .panel-heading-title-icon .fill {
  fill: #ff0000;
}
.panel-danger > .panel-heading {
  color: #ff0000;
}
.panel-danger > .panel-heading:after {
  background: #f2b5b5;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #f2b5b5;
}
.panel-danger > .panel-heading .badge {
  color: #fff2f2;
  background-color: #ff0000;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #f2b5b5;
}
.panel-white {
  border-color: #cccccc;
  background-color: #fff;
}
.panel-white .panel-heading-title {
  color: #000;
}
.panel-white .panel-heading-title-icon .fill {
  fill: #000;
}
.panel-white > .panel-heading {
  color: #000;
}
.panel-white > .panel-heading:after {
  background: #cccccc;
}
.panel-white > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #cccccc;
}
.panel-white > .panel-heading .badge {
  color: #fff;
  background-color: #000;
}
.panel-white > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #cccccc;
}
.beforePanelTitle {
  margin: 0 0 20px;
  padding: 0;
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  line-height: 1.75;
  text-transform: uppercase;
}
.beforePanelTitle a {
  color: #000000;
  text-decoration: none;
}
.beforePanelTitle a:hover,
.beforePanelTitle a:focus {
  text-decoration: underline;
}
.panel--withMascot-1 > .mascot {
  top: -16px;
  right: 20px;
  position: absolute;
  width: 130px;
  height: 140px;
  z-index: 1;
  background: url('../images/mascot/mascot-1.svg') no-repeat top right;
}
.panel--withMascot-1 .panel-heading {
  padding-right: 150px;
}
.panel--withMascot-1 .panel-heading:after {
  width: -webkit-calc(100% - 40px - 130px);
  width: -moz-calc(100% - 40px - 130px);
  width: calc(100% - 40px - 130px);
}
.panel--withMascot-2 > .mascot {
  bottom: -18px;
  right: -39px;
  position: absolute;
  width: 158px;
  height: 170px;
  z-index: 1;
  background: url('../images/mascot/mascot-1.svg') no-repeat top right;
}
.btn.panel-btn-left {
  position: absolute;
  top: 7px;
  left: 20px;
}
.btn.panel-btn-left.btn-link {
  top: 7px;
}
.btn.panel-btn-right {
  position: absolute;
  right: 20px;
}
.btn.panel-btn-right.btn-link {
  top: 7px;
}
.panel-emptyShoppingList {
  padding-top: 60px;
  padding-bottom: 70px;
  text-align: center;
}
.panel-emptyShoppingList-title {
  font-size: 36px;
  color: #95c11f;
  font-weight: bold;
  line-height: 0.583;
}
.panel-emptyShoppingList-info {
  margin-top: 28px;
  max-width: 345px;
  display: inline-block;
}
.panel-emptyShoppingList-info p {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: #999;
  line-height: 1.429;
}
.panel-emptyShoppingList-info p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url('../images/layout/info.svg') no-repeat top left;
  -webkit-background-size: 18px auto;
     -moz-background-size: 18px auto;
          background-size: 18px auto;
}
.panel-emptyShoppingList-info a {
  text-decoration: underline;
  color: #95c11f;
}
.panel-emptyShoppingList-info a:hover,
.panel-emptyShoppingList-info a:focus {
  text-decoration: none;
}
.panel--withBorderTop {
  border-top: 3px solid #95c11f;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.close {
  float: right;
  font-size: 22.5px;
  font-weight: bold;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  -moz-transform: translate(0, -25%);
       transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out, -o-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
       transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #f8f8f8;
  border: 1px solid transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
       box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-content--white {
  background: #fff;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}
.modal-header {
  padding: 40px 30px;
  border-bottom: 1px solid transparent;
  min-height: 59px;
}
.modal-header .close {
  margin-top: -20px;
  width: 41px;
  height: 41px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  background-color: #c7c7c7;
  opacity: 1;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.modal-header .close svg {
  width: 14px;
  height: 14px;
}
.modal-header .close:hover,
.modal-header .close:focus {
  opacity: 0.8;
  background: #ff0000;
}
.modal-title {
  margin: 0;
  line-height: 19px;
  font-size: 24px;
  color: #000000;
  font-weight: bold;
}
.modal-body {
  position: relative;
  padding: 30px;
  padding-top: 0;
}
.modal-body--noPadding {
  padding-bottom: 0;
}
.modal-footer {
  background: #fff;
  padding: 30px;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-footer.withBorder {
  border-top: 1px solid #e0e0e0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 2px) {
  .modal-dialog {
    width: 965px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    -moz-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 (min-width: 3px) {
  .modal-lg {
    width: 1040px;
  }
}
@media (min-width: 3px) {
  .modal-xlg {
    width: 1140px;
  }
}
.modal-back {
  color: #999;
  font-size: 14px;
  height: 37px;
  padding: 0 20px;
  line-height: 37px !important;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  text-transform: uppercase;
  text-shadow: 0px 0px 1.58px rgba(0, 0, 0, 0.15);
  border: none;
  background: #b2b2b2;
  color: #fff;
  text-transform: none;
  text-shadow: none;
  font-weight: 600;
}
.modal-back.ignore-case {
  text-transform: inherit;
}
.modal-back.btn-lg {
  height: 50px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px !important;
}
.modal-back.btn-lg.withSvg {
  padding-right: 54px;
}
.modal-back.btn-lg.withSvg svg {
  right: 18px;
  top: 13px;
}
.modal-back.btn-lg.withArrow,
.modal-back.btn-lg.withSave,
.modal-back.btn-lg.withDownload,
.modal-back.btn-lg.withLocation {
  padding-right: 45px;
}
.modal-back.btn-md {
  height: 45px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 45px !important;
}
.modal-back.btn-md.withSvg {
  padding-right: 54px;
}
.modal-back.btn-md.withSvg svg {
  right: 18px;
  top: 13px;
}
.modal-back.btn-md.withArrow,
.modal-back.btn-md.withSave,
.modal-back.btn-md.withLocation {
  padding-right: 40px;
}
.modal-back.btn-sm {
  height: 33px;
  line-height: 33px !important;
  padding: 0 23px;
  font-size: 14px;
}
.modal-back.btn-sm.withShoppingCart {
  padding-right: 45px;
  padding-left: 20px;
}
.modal-back.btn-sm.withShoppingCart svg {
  right: 12px;
}
.modal-back.btn-sm.withPlus {
  padding-right: 42px;
}
.modal-back.btn-sm.withPlus svg {
  right: 12px;
  margin-top: -9px;
}
.modal-back.withSvg {
  position: relative;
  padding-right: 44px;
}
.modal-back.withSvg svg {
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.modal-back.withArrow {
  position: relative;
  padding-right: 40px;
}
.modal-back.withArrow:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  margin-top: -5px;
  width: 7px;
  height: 10px;
  background: url('../images/layout/arrow1.svg') no-repeat center;
}
.modal-back.withSave,
.modal-back.withDownload {
  position: relative;
  padding-right: 45px;
}
.modal-back.withSave svg,
.modal-back.withDownload svg {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -10px;
  width: 18px;
  height: 20px;
}
.modal-back.withSave .fill,
.modal-back.withDownload .fill {
  fill: #fff;
}
.modal-back.withLocation {
  position: relative;
  padding-right: 41px;
}
.modal-back.withLocation svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -11px;
  width: 14px;
  height: 22px;
}
.modal-back.withLocation .fill {
  fill: #fff;
}
.modal-back.withPlus {
  position: relative;
  padding-right: 42px;
}
.modal-back.withPlus svg {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  width: 18px;
  height: 18px;
}
.modal-back.withPlus .fill {
  fill: #fff;
}
.modal-back.withShoppingCart {
  position: relative;
  padding-right: 50px;
}
.modal-back.withShoppingCart.posA {
  position: absolute;
}
.modal-back.withShoppingCart svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2px;
  right: 20px;
  display: block;
  width: 21px;
  height: 19px;
}
.modal-back.withShoppingCart svg path {
  fill: #fff;
}
.modal-back.lowerCase {
  text-transform: none;
}
.modal-back.noRadius {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.modal-back:focus,
.modal-back.focus {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.modal-back:hover {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.modal-back:active,
.modal-back.active,
.open > .dropdown-toggle.modal-back {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.modal-back:active:hover,
.modal-back.active:hover,
.open > .dropdown-toggle.modal-back:hover,
.modal-back:active:focus,
.modal-back.active:focus,
.open > .dropdown-toggle.modal-back:focus,
.modal-back:active.focus,
.modal-back.active.focus,
.open > .dropdown-toggle.modal-back.focus {
  color: #999;
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.modal-back:active,
.modal-back.active,
.open > .dropdown-toggle.modal-back {
  background-image: none;
}
.modal-back.disabled,
.modal-back[disabled],
fieldset[disabled] .modal-back,
.modal-back.disabled:hover,
.modal-back[disabled]:hover,
fieldset[disabled] .modal-back:hover,
.modal-back.disabled:focus,
.modal-back[disabled]:focus,
fieldset[disabled] .modal-back:focus,
.modal-back.disabled.focus,
.modal-back[disabled].focus,
fieldset[disabled] .modal-back.focus,
.modal-back.disabled:active,
.modal-back[disabled]:active,
fieldset[disabled] .modal-back:active,
.modal-back.disabled.active,
.modal-back[disabled].active,
fieldset[disabled] .modal-back.active {
  background-color: #f3f3f3;
  background-image: -moz-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -webkit-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
  background-image: -ms-linear-gradient(90deg, #f3f3f3 0%, #f3f3f3 100%);
}
.modal-back .badge {
  color: #f3f3f3;
  background-color: #999;
}
.modal-back:hover,
.modal-back:focus {
  color: #fff;
  background: #9d9d9d;
}
.modal-next {
  text-transform: none;
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.nav:before,
.nav:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after,
.row-md:before,
.row-md:after,
.container-md:before,
.container-md:after,
.row-lg:before,
.row-lg:after,
.container-lg:before,
.container-lg:after,
.row-lx:before,
.row-lx:after,
.container-lx:before,
.container-lx:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.nav:after,
.panel-body:after,
.modal-footer:after,
.row-md:after,
.container-md:after,
.row-lg:after,
.container-lg:after,
.row-lx:after,
.container-lx:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
     -moz-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: height, -o-transform;
  -moz-transition-property: transform, height, -moz-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform, -moz-transform, -o-transform;
}
/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
     -moz-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
     -moz-box-ordinal-group: 10000;
          order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
     -moz-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
     -moz-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-button-prev,
.swiper-button-next {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 60px;
  height: 120px;
  background: rgba(0, 0, 0, 0.35);
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 28px;
  color: #fff;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
  -webkit-border-bottom-right-radius: 60px;
     -moz-border-radius-bottomright: 60px;
          border-bottom-right-radius: 60px;
  -webkit-border-top-right-radius: 60px;
     -moz-border-radius-topright: 60px;
          border-top-right-radius: 60px;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
  -webkit-border-bottom-left-radius: 60px;
     -moz-border-radius-bottomleft: 60px;
          border-bottom-left-radius: 60px;
  -webkit-border-top-left-radius: 60px;
     -moz-border-radius-topleft: 60px;
          border-top-left-radius: 60px;
}
.swiper-button-lock {
  display: none;
}
select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #999;
}
.bootstrap-select > .dropdown-toggle.disabled {
  opacity: 1;
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #ff0000;
}
.has-success .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #95c11f;
}
.has-warning .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #ffa500;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  -webkit-border-radius: inherit;
     -moz-border-radius: inherit;
          border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
  background: #F8F8F8 !important;
  border-color: #ccc;
  color: #aaaaaa !important;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option .media {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option .media-left {
  margin-right: 10px;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option .media-left img {
  width: 36px;
  height: 36px;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option .media-body {
  vertical-align: middle;
  white-space: normal;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li .media {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li .media-left {
  margin-right: 10px;
}
.bootstrap-select.btn-group .dropdown-menu li .media-left img {
  width: 36px;
  height: 36px;
}
.bootstrap-select.btn-group .dropdown-menu li .media-body {
  vertical-align: middle;
  white-space: normal;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
.has-error .bootstrap-select .caret {
  background: url('../images/layout/arrow3.danger.svg') no-repeat center;
}
.has-success .bootstrap-select .caret {
  background: url('../images/layout/arrow3.primary.svg') no-repeat center;
}
.has-warning .bootstrap-select .caret {
  background: url('../images/layout/arrow3.warning.svg') no-repeat center;
}
.selectpicker.selectpicker--small .bootstrap-select > .dropdown-toggle {
  padding: 9px 25px 9px 13px;
  font-size: 12px;
}
.selectpicker.selectpicker--small .bootstrap-select .caret {
  right: 13px;
}
/*!
 * Datetimepicker for Bootstrap 3
 * version : 4.17.47
 * https://github.com/Eonasdan/bootstrap-datetimepicker/
 */
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 19em;
}
@media (min-width: 2px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 3px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 4px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 30px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #cccccc;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #f4f4f4;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: 0.8em;
  height: 20px;
  line-height: 20px;
  color: #cccccc;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 30px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #f4f4f4;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #cccccc;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #95c11f;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #95c11f;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #cccccc;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #f4f4f4;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #95c11f;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #cccccc;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #cccccc;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.bootstrap-datetimepicker-widget.wider {
  width: 21em;
}
.bootstrap-datetimepicker-widget .datepicker-decades .decade {
  line-height: 1.8em !important;
}
.input-group.date .input-group-addon {
  cursor: pointer;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
     -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
     -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
		 * Remove all paddings around the image on small screen
		 */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
      -o-transform: scale(0.75);
         transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -moz-transform-origin: 0;
      -o-transform-origin: 0;
         transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -moz-transform-origin: 100%;
      -o-transform-origin: 100%;
         transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.text-bigger {
  font-size: 16px;
  line-height: 26px;
}
.text-small {
  font-size: 12px;
  line-height: 16px;
}
.fw-700 {
  font-weight: 700;
}
.fwNormal,
.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
.fw-300 {
  font-weight: 300;
}
.posR {
  position: relative;
}
.posA {
  position: absolute;
}
.line-through {
  text-decoration: line-through;
}
@font-face {
  font-family: "vaprio";
  src: url("../fonts/vaprio.eot");
  src: url("../fonts/vaprio.eot?#iefix") format("embedded-opentype"), url("../fonts/vaprio.woff") format("woff"), url("../fonts/vaprio.ttf") format("truetype"), url("../fonts/vaprio.svg#vaprio") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "vaprio" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iconFont {
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.iconFont,
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-arrow-light-right:before {
  content: "\63";
}
.icon-arrow-right:before {
  content: "\64";
}
.icon-arrow-left:before {
  content: "\61";
}
.icon-arrow_light-left:before,
.icon-arrow-light-left:before {
  content: "\62";
}
.icon-arrow_light-right:before,
.icon-arrow-light-right:before {
  content: "\63";
}
.icon-arrow-right:before {
  content: "\64";
}
.icon-close:before {
  content: "\65";
}
.icon-plus-circle:before {
  content: "\66";
}
.icon-search:before {
  content: "\67";
}
.icon-cart:before {
  content: "\68";
}
.icon-eye:before {
  content: "\69";
}
.icon-home:before {
  content: "\6a";
}
.icon-star:before {
  content: "\6b";
}
.icon-cart-1:before {
  content: "\6c";
}
.icon-pin:before {
  content: "\6d";
}
.icon-phone-circle:before {
  content: "\6e";
}
.icon-exclamation-mark-circle:before {
  content: "\6f";
}
.icon-envelope-circle:before {
  content: "\70";
}
.icon-facebook-circle:before {
  content: "\71";
}
.icon-laptop:before {
  content: "\72";
}
.icon-clock:before {
  content: "\73";
}
.icon-like:before {
  content: "\74";
}
.icon-mobile-phone:before {
  content: "\75";
}
.icon-envelope:before {
  content: "\76";
}
.icon-facebook:before {
  content: "\77";
}
.icon-check:before {
  content: "\78";
}
.icon-info:before {
  content: "\79";
}
.icon-error:before {
  content: "\7a";
}
.icon-user:before {
  content: "\41";
}
.icon-star-full:before {
  content: "\42";
}
.icon-compare:before {
  content: "\43";
}
.icon-minus-circle:before {
  content: "\44";
}
.icon-pin-2:before {
  content: "\45";
}
.icon-check-2:before {
  content: "\46";
}
.icon-printer:before {
  content: "\47";
}
.icon-info-2:before {
  content: "\48";
}
.icon-edit:before {
  content: "\49";
}
.icon-minus-circle-full:before {
  content: "\4a";
}
.icon-plus-circle-full:before {
  content: "\4b";
}
.icon-trash:before {
  content: "\4c";
}
.icon-arrow-circle-right:before {
  content: "\4d";
}
.icon-arrow-circle-left:before {
  content: "\4e";
}
.icon-tag:before {
  content: "\4f";
}
a:focus,
button:focus {
  outline: none;
}
a::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}
.loginBox {
  width: 633px;
  margin-left: auto;
  margin-right: auto;
}
.loginBox-content {
  padding: 40px 160px 40px 160px;
}
.loginBox-link {
  margin-top: -8px;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.link-invert {
  text-decoration: underline;
}
.link-invert:hover,
.link-invert:focus {
  text-decoration: none;
}
.button--full {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  position: relative;
  text-decoration: none;
  display: block;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#669900), to(#95c11f));
  background-image: -webkit-linear-gradient(bottom, #669900 0%, #95c11f 100%);
  background-image: -moz-linear-gradient(bottom, #669900 0%, #95c11f 100%);
  background-image: -o-linear-gradient(bottom, #669900 0%, #95c11f 100%);
  background-image: linear-gradient(0deg, #669900 0%, #95c11f 100%);
  color: #ffffff;
  font-size: 14px;
  line-height: 33px;
  height: 33px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  padding-left: 30px;
  padding-right: 30px;
}
.button--full .badge {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(9px, -9px);
     -moz-transform: translate(9px, -9px);
       -o-transform: translate(9px, -9px);
          transform: translate(9px, -9px);
  margin: 0;
}
.button--full.button-sm {
  font-size: 12px;
  line-height: 25px;
  height: 25px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding-left: 20px;
  padding-right: 20px;
}
.button--full.button-lg {
  font-size: 16px;
  line-height: 45px;
  height: 45px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding-left: 40px;
  padding-right: 40px;
}
.button--full.button-big {
  font-size: 36px;
  line-height: 80px;
  height: 80px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding-left: 46px;
  padding-right: 46px;
}
.button--full:hover,
.button--full:focus,
.button--full.hover {
  background: #669900;
  text-decoration: none;
  color: #ffffff;
}
.button--full[disabled],
.button--full.disabled {
  background: #cccccc;
}
.button-info.button--full {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  position: relative;
  text-decoration: none;
  display: block;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#0066FF), to(#3CA0FF));
  background-image: -webkit-linear-gradient(bottom, #0066FF 0%, #3CA0FF 100%);
  background-image: -moz-linear-gradient(bottom, #0066FF 0%, #3CA0FF 100%);
  background-image: -o-linear-gradient(bottom, #0066FF 0%, #3CA0FF 100%);
  background-image: linear-gradient(0deg, #0066FF 0%, #3CA0FF 100%);
  color: #ffffff;
  font-size: 14px;
  line-height: 33px;
  height: 33px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  padding-left: 30px;
  padding-right: 30px;
}
.button-info.button--full .badge {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(9px, -9px);
     -moz-transform: translate(9px, -9px);
       -o-transform: translate(9px, -9px);
          transform: translate(9px, -9px);
  margin: 0;
}
.button-info.button--full.button-sm {
  font-size: 12px;
  line-height: 25px;
  height: 25px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding-left: 20px;
  padding-right: 20px;
}
.button-info.button--full.button-lg {
  font-size: 16px;
  line-height: 45px;
  height: 45px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding-left: 40px;
  padding-right: 40px;
}
.button-info.button--full.button-big {
  font-size: 36px;
  line-height: 80px;
  height: 80px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding-left: 46px;
  padding-right: 46px;
}
.button-info.button--full:hover,
.button-info.button--full:focus,
.button-info.button--full.hover {
  background: #0066FF;
  text-decoration: none;
  color: #ffffff;
}
.button-info.button--full[disabled],
.button-info.button--full.disabled {
  background: #cccccc;
}
.button--outline {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
  position: relative;
  text-decoration: none;
  display: block;
  background: transparent;
  color: #95c11f;
  border: 1px solid #95c11f;
  font-size: 14px;
  line-height: 33px;
  height: 33px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  padding-left: 30px;
  padding-right: 30px;
}
.button--outline .badge {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(9px, -9px);
     -moz-transform: translate(9px, -9px);
       -o-transform: translate(9px, -9px);
          transform: translate(9px, -9px);
  margin: 0;
}
.button--outline.button-sm {
  font-size: 12px;
  line-height: 25px;
  height: 25px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding-left: 20px;
  padding-right: 20px;
}
.button--outline.button-lg {
  font-size: 16px;
  line-height: 45px;
  height: 45px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding-left: 40px;
  padding-right: 40px;
}
.button--outline.button-big {
  font-size: 36px;
  line-height: 80px;
  height: 80px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding-left: 46px;
  padding-right: 46px;
}
.button--outline:not(.disabled) i {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.button--outline:not([disabled]) i {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.button--outline:hover,
.button--outline:focus,
.button--outline.hover {
  color: #669900;
  border-color: #669900;
  text-decoration: none;
}
.button--outline:hover i,
.button--outline:focus i,
.button--outline.hover i {
  -webkit-filter: invert(0.5) sepia(1) saturate(2) hue-rotate(48deg);
          filter: invert(0.5) sepia(1) saturate(2) hue-rotate(48deg);
}
.button--outline[disabled],
.button--outline.disabled {
  color: #cccccc;
  border: 1px solid #cccccc;
}
.button--outline[disabled] i,
.button--outline.disabled i {
  -webkit-filter: invert(0.5) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.3);
          filter: invert(0.5) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.3);
}
.button--outline.withcolor {
  background: #fff;
}
.button--inline-block {
  display: inline-block;
}
.button-icon-left-cart {
  padding-left: 45px !important;
}
.button-icon-left-cart i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/cart.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-cart.button-sm {
  padding-left: 35px;
}
.button-icon-left-cart.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-cart.button-lg {
  padding-left: 55px;
}
.button-icon-left-cart.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-cart {
  padding-right: 45px !important;
}
.button-icon-right-cart i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/cart.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-cart.button-sm {
  padding-right: 35px;
}
.button-icon-right-cart.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-cart.button-lg {
  padding-right: 55px;
}
.button-icon-right-cart.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-plus {
  padding-left: 45px !important;
}
.button-icon-left-plus i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/plus.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-plus.button-sm {
  padding-left: 35px;
}
.button-icon-left-plus.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-plus.button-lg {
  padding-left: 55px;
}
.button-icon-left-plus.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-plus {
  padding-right: 45px !important;
}
.button-icon-right-plus i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/plus.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-plus.button-sm {
  padding-right: 35px;
}
.button-icon-right-plus.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-plus.button-lg {
  padding-right: 55px;
}
.button-icon-right-plus.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-user {
  padding-left: 45px !important;
}
.button-icon-left-user i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/user.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-user.button-sm {
  padding-left: 35px;
}
.button-icon-left-user.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-user.button-lg {
  padding-left: 55px;
}
.button-icon-left-user.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-user {
  padding-right: 45px !important;
}
.button-icon-right-user i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/user.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-user.button-sm {
  padding-right: 35px;
}
.button-icon-right-user.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-user.button-lg {
  padding-right: 55px;
}
.button-icon-right-user.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-arrow_top {
  padding-left: 45px !important;
}
.button-icon-left-arrow_top i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_top.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-arrow_top.button-sm {
  padding-left: 35px;
}
.button-icon-left-arrow_top.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-arrow_top.button-lg {
  padding-left: 55px;
}
.button-icon-left-arrow_top.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-arrow_top {
  padding-right: 45px !important;
}
.button-icon-right-arrow_top i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_top.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-arrow_top.button-sm {
  padding-right: 35px;
}
.button-icon-right-arrow_top.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-arrow_top.button-lg {
  padding-right: 55px;
}
.button-icon-right-arrow_top.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-arrow_right {
  padding-left: 45px !important;
}
.button-icon-left-arrow_right i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_right.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-arrow_right.button-sm {
  padding-left: 35px;
}
.button-icon-left-arrow_right.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-arrow_right.button-lg {
  padding-left: 55px;
}
.button-icon-left-arrow_right.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-arrow_right {
  padding-right: 45px !important;
}
.button-icon-right-arrow_right i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_right.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-arrow_right.button-sm {
  padding-right: 35px;
}
.button-icon-right-arrow_right.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-arrow_right.button-lg {
  padding-right: 55px;
}
.button-icon-right-arrow_right.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-arrow_bottom {
  padding-left: 45px !important;
}
.button-icon-left-arrow_bottom i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_bottom.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-arrow_bottom.button-sm {
  padding-left: 35px;
}
.button-icon-left-arrow_bottom.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-arrow_bottom.button-lg {
  padding-left: 55px;
}
.button-icon-left-arrow_bottom.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-arrow_bottom {
  padding-right: 45px !important;
}
.button-icon-right-arrow_bottom i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_bottom.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-arrow_bottom.button-sm {
  padding-right: 35px;
}
.button-icon-right-arrow_bottom.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-arrow_bottom.button-lg {
  padding-right: 55px;
}
.button-icon-right-arrow_bottom.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-arrow_left {
  padding-left: 45px !important;
}
.button-icon-left-arrow_left i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_left.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-arrow_left.button-sm {
  padding-left: 35px;
}
.button-icon-left-arrow_left.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-arrow_left.button-lg {
  padding-left: 55px;
}
.button-icon-left-arrow_left.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-arrow_left {
  padding-right: 45px !important;
}
.button-icon-right-arrow_left i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/arrow_left.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-arrow_left.button-sm {
  padding-right: 35px;
}
.button-icon-right-arrow_left.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-arrow_left.button-lg {
  padding-right: 55px;
}
.button-icon-right-arrow_left.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-left-bell {
  padding-left: 45px !important;
}
.button-icon-left-bell i {
  position: absolute;
  top: 8px;
  left: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/bell.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-left-bell.button-sm {
  padding-left: 35px;
}
.button-icon-left-bell.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-left-bell.button-lg {
  padding-left: 55px;
}
.button-icon-left-bell.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button-icon-right-bell {
  padding-right: 45px !important;
}
.button-icon-right-bell i {
  position: absolute;
  top: 8px;
  right: 0;
  width: 45px;
  height: 15px;
  background-image: url('../images/buttons/bell.svg');
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.button-icon-right-bell.button-sm {
  padding-right: 35px;
}
.button-icon-right-bell.button-sm i {
  top: 6px;
  width: 35px;
  height: 12px;
}
.button-icon-right-bell.button-lg {
  padding-right: 55px;
}
.button-icon-right-bell.button-lg i {
  top: 14px;
  width: 55px;
  height: 16px;
}
.button--wide {
  width: 100% !important;
  text-align: center;
}
.button--auto {
  width: auto;
  display: inline-block;
}
.btn-buy {
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #95c11f;
  padding: 11px 44px 10px 13px;
  background: #a5c957;
  -webkit-background-size: 21px 21px;
     -moz-background-size: 21px;
          background-size: 21px;
}
.btn-buy svg {
  content: '';
  position: absolute;
  right: 15px;
  top: 9px;
  width: 21px;
  height: 20px;
}
.btn {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.minWidth {
  min-width: 1230px;
}
.fixColor {
  -webkit-filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
          filter: invert(0.5) sepia(1) saturate(3) hue-rotate(41deg);
}
.fixColor--dark {
  -webkit-filter: invert(0.5) sepia(1) saturate(2) hue-rotate(48deg);
          filter: invert(0.5) sepia(1) saturate(2) hue-rotate(48deg);
}
.fixColor--gray {
  -webkit-filter: invert(0.5) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.3);
          filter: invert(0.5) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.3);
}
.buttonReset {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}
/* Remove excess padding and border in Firefox 4+ */
::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.row-md {
  margin-left: -15px;
  margin-right: -15px;
  margin-left: -6px;
  margin-right: -6px;
}
.row-md .col-xs-1,
.row-md .col-sm-1,
.row-md .col-md-1,
.row-md .col-lg-1,
.row-md .col-xs-2,
.row-md .col-sm-2,
.row-md .col-md-2,
.row-md .col-lg-2,
.row-md .col-xs-3,
.row-md .col-sm-3,
.row-md .col-md-3,
.row-md .col-lg-3,
.row-md .col-xs-4,
.row-md .col-sm-4,
.row-md .col-md-4,
.row-md .col-lg-4,
.row-md .col-xs-5,
.row-md .col-sm-5,
.row-md .col-md-5,
.row-md .col-lg-5,
.row-md .col-xs-6,
.row-md .col-sm-6,
.row-md .col-md-6,
.row-md .col-lg-6,
.row-md .col-xs-7,
.row-md .col-sm-7,
.row-md .col-md-7,
.row-md .col-lg-7,
.row-md .col-xs-8,
.row-md .col-sm-8,
.row-md .col-md-8,
.row-md .col-lg-8,
.row-md .col-xs-9,
.row-md .col-sm-9,
.row-md .col-md-9,
.row-md .col-lg-9,
.row-md .col-xs-10,
.row-md .col-sm-10,
.row-md .col-md-10,
.row-md .col-lg-10,
.row-md .col-xs-11,
.row-md .col-sm-11,
.row-md .col-md-11,
.row-md .col-lg-11,
.row-md .col-xs-12,
.row-md .col-sm-12,
.row-md .col-md-12,
.row-md .col-lg-12 {
  padding-left: 6px;
  padding-right: 6px;
}
.container-md {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 6px;
  padding-right: 6px;
}
@media (min-width: 2px) {
  .container-md {
    width: 750px;
  }
}
@media (min-width: 3px) {
  .container-md {
    width: 970px;
  }
}
@media (min-width: 4px) {
  .container-md {
    width: 1230px;
  }
}
.row-lg {
  margin-left: -15px;
  margin-right: -15px;
  margin-left: -10px;
  margin-right: -10px;
}
.row-lg .col-xs-1,
.row-lg .col-sm-1,
.row-lg .col-md-1,
.row-lg .col-lg-1,
.row-lg .col-xs-2,
.row-lg .col-sm-2,
.row-lg .col-md-2,
.row-lg .col-lg-2,
.row-lg .col-xs-3,
.row-lg .col-sm-3,
.row-lg .col-md-3,
.row-lg .col-lg-3,
.row-lg .col-xs-4,
.row-lg .col-sm-4,
.row-lg .col-md-4,
.row-lg .col-lg-4,
.row-lg .col-xs-5,
.row-lg .col-sm-5,
.row-lg .col-md-5,
.row-lg .col-lg-5,
.row-lg .col-xs-6,
.row-lg .col-sm-6,
.row-lg .col-md-6,
.row-lg .col-lg-6,
.row-lg .col-xs-7,
.row-lg .col-sm-7,
.row-lg .col-md-7,
.row-lg .col-lg-7,
.row-lg .col-xs-8,
.row-lg .col-sm-8,
.row-lg .col-md-8,
.row-lg .col-lg-8,
.row-lg .col-xs-9,
.row-lg .col-sm-9,
.row-lg .col-md-9,
.row-lg .col-lg-9,
.row-lg .col-xs-10,
.row-lg .col-sm-10,
.row-lg .col-md-10,
.row-lg .col-lg-10,
.row-lg .col-xs-11,
.row-lg .col-sm-11,
.row-lg .col-md-11,
.row-lg .col-lg-11,
.row-lg .col-xs-12,
.row-lg .col-sm-12,
.row-lg .col-md-12,
.row-lg .col-lg-12 {
  padding-left: 10px;
  padding-right: 10px;
}
.container-lg {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 2px) {
  .container-lg {
    width: 750px;
  }
}
@media (min-width: 3px) {
  .container-lg {
    width: 970px;
  }
}
@media (min-width: 4px) {
  .container-lg {
    width: 1230px;
  }
}
.row-lx {
  margin-left: -15px;
  margin-right: -15px;
  margin-left: -20px;
  margin-right: -20px;
}
.row-lx .col-xs-1,
.row-lx .col-sm-1,
.row-lx .col-md-1,
.row-lx .col-lg-1,
.row-lx .col-xs-2,
.row-lx .col-sm-2,
.row-lx .col-md-2,
.row-lx .col-lg-2,
.row-lx .col-xs-3,
.row-lx .col-sm-3,
.row-lx .col-md-3,
.row-lx .col-lg-3,
.row-lx .col-xs-4,
.row-lx .col-sm-4,
.row-lx .col-md-4,
.row-lx .col-lg-4,
.row-lx .col-xs-5,
.row-lx .col-sm-5,
.row-lx .col-md-5,
.row-lx .col-lg-5,
.row-lx .col-xs-6,
.row-lx .col-sm-6,
.row-lx .col-md-6,
.row-lx .col-lg-6,
.row-lx .col-xs-7,
.row-lx .col-sm-7,
.row-lx .col-md-7,
.row-lx .col-lg-7,
.row-lx .col-xs-8,
.row-lx .col-sm-8,
.row-lx .col-md-8,
.row-lx .col-lg-8,
.row-lx .col-xs-9,
.row-lx .col-sm-9,
.row-lx .col-md-9,
.row-lx .col-lg-9,
.row-lx .col-xs-10,
.row-lx .col-sm-10,
.row-lx .col-md-10,
.row-lx .col-lg-10,
.row-lx .col-xs-11,
.row-lx .col-sm-11,
.row-lx .col-md-11,
.row-lx .col-lg-11,
.row-lx .col-xs-12,
.row-lx .col-sm-12,
.row-lx .col-md-12,
.row-lx .col-lg-12 {
  padding-left: 20px;
  padding-right: 20px;
}
.container-lx {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 2px) {
  .container-lx {
    width: 750px;
  }
}
@media (min-width: 3px) {
  .container-lx {
    width: 970px;
  }
}
@media (min-width: 4px) {
  .container-lx {
    width: 1230px;
  }
}
canvas.ovvtiles,
div.ovvtiles,
div.ovvvport {
  z-index: 5 !important;
}
.scrollBox {
  overflow: auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, white), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) 0 100%, /* Shadows */ radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: -webkit-linear-gradient(white 30%, rgba(255, 255, 255, 0)), -webkit-linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */ -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: -moz-linear-gradient(white 30%, rgba(255, 255, 255, 0)), -moz-linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */ -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: -o-linear-gradient(white 30%, rgba(255, 255, 255, 0)), -o-linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */ -o-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), -o-radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */ radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(50% 100%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, white), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) 0 100%, /* Shadows */ radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, /* Shadows */ radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  background-repeat: no-repeat;
  background-color: white;
  -webkit-background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
     -moz-background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
          background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
}
.tagReset {
  margin: 0;
  padding: 0;
}
.hpGrid:before,
.hpGrid:after {
  content: " ";
  display: table;
}
.hpGrid:after {
  clear: both;
}
.hpGrid:before,
.hpGrid:after {
  content: " ";
  display: table;
}
.hpGrid:after {
  clear: both;
}
.hpGrid > .col-1 {
  width: 850px;
  float: left;
}
.hpGrid > .col-2 {
  width: 290px;
  float: right;
}
.profileGrid:before,
.profileGrid:after {
  content: " ";
  display: table;
}
.profileGrid:after {
  clear: both;
}
.profileGrid:before,
.profileGrid:after {
  content: " ";
  display: table;
}
.profileGrid:after {
  clear: both;
}
.profileGrid > .col-1 {
  width: 260px;
  float: left;
}
.profileGrid > .col-2 {
  width: 880px;
  float: right;
  margin-right: 20px;
}
.contactGrid:before,
.contactGrid:after {
  content: " ";
  display: table;
}
.contactGrid:after {
  clear: both;
}
.contactGrid:before,
.contactGrid:after {
  content: " ";
  display: table;
}
.contactGrid:after {
  clear: both;
}
.contactGrid > .col-1 {
  width: 450px;
  float: left;
}
.contactGrid > .col-2 {
  width: 630px;
  float: right;
}
.jobDetailGrid:before,
.jobDetailGrid:after {
  content: " ";
  display: table;
}
.jobDetailGrid:after {
  clear: both;
}
.jobDetailGrid:before,
.jobDetailGrid:after {
  content: " ";
  display: table;
}
.jobDetailGrid:after {
  clear: both;
}
.jobDetailGrid > .col-1 {
  width: 450px;
  float: left;
}
.jobDetailGrid > .col-2 {
  width: 630px;
  float: right;
}
.overlay,
.navOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8;
  display: none;
}
.navOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
  display: none;
}
.tag {
  float: right;
  width: 56px;
  height: 28px;
  position: relative;
  margin-right: -6px;
  -webkit-border-bottom-right-radius: 60px;
     -moz-border-radius-bottomright: 60px;
          border-bottom-right-radius: 60px;
  -webkit-border-bottom-left-radius: 60px;
     -moz-border-radius-bottomleft: 60px;
          border-bottom-left-radius: 60px;
}
.tag span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  padding-bottom: 4px;
}
.tag:first-child {
  margin-right: 0;
}
.tag-text-2 span {
  font-size: 8px;
  line-height: 9px;
}
.tag-text-1 span {
  font-size: 13px;
  line-height: 17px;
}
.tag-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 20px;
  width: auto;
  margin-top: -2px;
}
a.tag {
  text-decoration: none;
}
a.tag:hover,
a.tag:focus {
  text-decoration: none;
}
.variant {
  color: #808080;
  padding: 2px 12px;
  border: 1px solid #808080;
  font-size: 10px;
  text-align: center;
  margin-bottom: 3px;
  background: #fff;
  letter-spacing: 1px;
  text-transform: lowercase;
}
.infoLine {
  z-index: 9;
  position: relative;
}
.infoLine-text {
  color: #fff;
  padding: 13px 30px 13px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 21.01px;
  letter-spacing: -0.45px;
}
.infoLine-text a {
  color: #fff;
  text-decoration: underline;
}
.infoLine-text a:hover,
.infoLine-text a:focus {
  text-decoration: none;
}
.infoLine .container {
  position: relative;
}
.infoLine .close {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  width: 26px;
  height: 26px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.infoLine .close svg {
  width: 10px;
  height: 10px;
}
.infoLine .close:hover,
.infoLine .close:focus {
  opacity: 0.8;
}
.infoLine--success {
  background: #77B200;
}
.infoLine--danger {
  background: #dc3522;
}
.infoLine--info {
  background: #0077e7;
}
.infoLine--primary {
  background: #95c11f;
}
.infoLine--warning {
  background: #ffa500;
}
.pageSearch {
  position: absolute;
  height: 44px;
  top: 93px;
  left: 627px;
}
.pageSearch-inputBox {
  float: left;
  position: relative;
  width: 464px;
  height: 43px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  line-height: 43px;
  border: none;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.pageSearch-inputBox-input {
  display: block;
  width: 100%;
  height: 43px;
  padding: 0 5px 0 15px;
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 24px;
  border: none;
  background: transparent;
}
.pageSearch-inputBox-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.pageSearch-inputBox-input:-ms-input-placeholder {
  color: #999;
}
.pageSearch-inputBox-input::-webkit-input-placeholder {
  color: #999;
}
.pageSearch-inputBox-input:hover,
.pageSearch-inputBox-input:focus {
  outline: none;
}
.pageSearch-inputBox-button {
  position: absolute;
  top: 5px;
  right: 5px;
}
.pageSearch-inputBox-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  height: 100%;
  width: 5px;
  background: #fff;
}
.pageSearch-results {
  background: #fff;
  width: 464px;
  margin-top: 38px;
  padding: 5px 0;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
body:not(.showSearchResults) .pageSearch-results {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
}
.autocomplete__footer {
  text-align: center;
  padding-bottom: 15px;
  padding-top: 20px;
}
.autocomplete__footer .button {
  display: inline-block;
}
.autocomplete__category {
  margin-bottom: 15px;
}
.autocomplete__category:first-child {
  margin-top: 7px;
}
.autocomplete__category:last-child {
  margin-bottom: 0;
}
.autocomplete__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 10px;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #95c11f;
}
.autocomplete__title:after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
     -moz-box-flex: 1;
          flex: 1 1 100%;
  height: 1px;
  background-color: #E4EFC7;
  margin-left: 10px;
}
.autocomplete__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.autocomplete__list li {
  padding: 0;
  list-style: none;
}
.autocomplete__list a {
  display: block;
  padding: 5px 10px;
  color: #000;
  font-size: 12px;
  line-height: 13px;
  text-decoration: none;
  -webkit-transition: background 150ms ease-in-out;
  -o-transition: background 150ms ease-in-out;
  -moz-transition: background 150ms ease-in-out;
  transition: background 150ms ease-in-out;
}
.autocomplete__list a:hover,
.autocomplete__list a:focus {
  text-decoration: none;
  background: #F4F4F4;
}
.autocomplete__list--brands a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.autocomplete__list--brands .autocomplete__image {
  margin-right: 10px;
  height: 26px;
  width: 76px;
  border: 1px solid #DEDEDE;
  padding: 3px;
  text-align: center;
  background: #fff;
}
.autocomplete__list--brands .autocomplete__image img {
  display: inline-block;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.autocomplete__list--shops a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.autocomplete__list--shops small {
  margin-top: 3px;
  display: block;
  font-size: 11px;
  line-height: 12px;
  color: #999;
}
.autocomplete__list--shops .autocomplete__image {
  margin-right: 10px;
  background: #fff;
}
.autocomplete__list--shops .autocomplete__image img {
  display: block;
  height: 29px;
  width: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}
.autocomplete__list--products a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.autocomplete__list--products .autocomplete-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  width: 100%;
}
.autocomplete__list--products .autocomplete__product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
}
.autocomplete__list--products .autocomplete__product .rating {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
          flex: 0 0 auto;
  margin-left: 8px;
}
.autocomplete__list--products .autocomplete__product .rating-item {
  display: block;
}
.autocomplete__list--products .autocomplete__stock {
  margin-top: 3px;
  display: block;
  font-size: 11px;
  line-height: 12px;
  color: #999;
}
.autocomplete__list--products .autocomplete__stock--primary {
  color: #95c11f;
}
.autocomplete__list--products .autocomplete__stock--success {
  color: #95c11f;
}
.autocomplete__list--products .autocomplete__stock--warning {
  color: #ffa500;
}
.autocomplete__list--products .autocomplete__stock--danger {
  color: #ff0000;
}
.autocomplete__list--products .autocomplete__stock--info {
  color: #0077e7;
}
.autocomplete__list--products .autocomplete__image {
  margin-right: 10px;
}
.autocomplete__list--products .autocomplete__image img {
  display: block;
  height: 42px;
  width: 42px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #DEDEDE;
}
.autocomplete__list--products .autocomplete__price {
  font-weight: 500;
}
.autocomplete__list--bigger a {
  padding: 2px 10px 3px;
  font-size: 14px;
  line-height: 19px;
}
.pageHeader {
  background: #000000;
  height: 178px;
  z-index: 9;
  position: relative;
}
.pageHeader__topNavigation {
  position: absolute;
  top: 25px;
  left: 15px;
}
.pageHeader__topNavigation ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.pageHeader__topNavigation ul li {
  display: inline-block;
}
.pageHeader__topNavigation ul li a {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #999999;
  line-height: 13px;
  text-transform: uppercase;
  margin-right: 20px;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.pageHeader__topNavigation ul li a:hover,
.pageHeader__topNavigation ul li a:focus {
  color: #fff;
  text-decoration: none;
}
.pageHeader__topNavigation ul li:last-child a {
  margin-right: 0;
}
.pageHeader__langWrapper {
  position: absolute;
  top: 20px;
  left: 687px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.pageHeader__langs ul {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  background: #292929;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  padding: 4px;
}
.pageHeader__langs ul li {
  display: inline-block;
}
.pageHeader__langs ul li a {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #666666;
  height: 25px;
  width: 48px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.pageHeader__langs ul li a:hover,
.pageHeader__langs ul li a:focus {
  color: #fff;
  text-decoration: none;
}
.pageHeader__langs ul li.active a {
  background: #000000;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  color: #95c11f;
}
.pageHeader__locales a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 4px;
  color: #fff;
  border: 1px solid #95c11f;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.pageHeader__locales a:hover,
.pageHeader__locales a:focus-visible {
  background: #95c11f;
  text-decoration: none;
}
.pageHeader__locales img {
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
}
.pageHeader__user {
  position: absolute;
  right: 15px;
}
.pageHeader__user--login {
  top: 20px;
}
.pageHeader__user--login .button {
  display: inline-block;
  padding-right: 20px;
}
.pageHeader__user--logged {
  top: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
}
.pageHeader__user--logged .profile {
  display: block;
  font-weight: bold;
  font-size: 14px;
  color: #FFF;
  text-align: right;
  line-height: 20px;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.pageHeader__user--logged .profile:hover,
.pageHeader__user--logged .profile:focus {
  text-decoration: none;
  color: #95c11f;
}
.pageHeader__user--logged .logOut {
  display: block;
  margin-left: 20px;
}
.pageHeader__user--logged .logOut svg {
  height: 20px;
}
.pageHeader__user--logged .logOut svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.pageHeader__user--logged .logOut:hover svg path,
.pageHeader__user--logged .logOut:focus svg path {
  fill: #fff;
}
.pageHeader__brand {
  display: block;
  position: absolute;
  top: 72px;
  left: 15px;
}
.pageHeader__brand img {
  height: 69px;
  width: auto;
}
.pageHeader__map {
  display: block;
  position: absolute;
  top: 64px;
  left: 225px;
}
.pageHeader__map img {
  height: 92px;
  width: auto;
}
.pageHeader__info {
  position: absolute;
  top: 93px;
  left: 414px;
  width: 203px;
  height: 70px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  text-align: left;
}
.pageHeader__info span {
  -webkit-transition: color 100ms ease-in-out;
  -o-transition: color 100ms ease-in-out;
  -moz-transition: color 100ms ease-in-out;
  transition: color 100ms ease-in-out;
  display: block;
}
.pageHeader__info .bigger {
  color: #95c11f;
  font-size: 18px;
  font-weight: bold;
}
.pageHeader__info .in {
  display: block;
}
a.pageHeader__info:hover,
a.pageHeader__info:focus {
  text-decoration: none;
  color: #999999;
}
a.pageHeader__info:hover .bigger,
a.pageHeader__info:focus .bigger {
  color: #669900;
}
.pageNavigation {
  background: #292929;
  min-width: 1230px;
  z-index: 6;
  position: relative;
}
.pageNavigation-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
}
.pageNavigation-list > li {
  display: block;
  -webkit-flex-shrink: 1;
          flex-shrink: 1;
}
.pageNavigation-list > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  position: relative;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  height: 80px;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 17px;
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  padding-left: 40px;
  padding-right: 20px;
  -webkit-border-top-right-radius: 5px;
     -moz-border-radius-topright: 5px;
          border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
}
.pageNavigation-list > li > a svg,
.pageNavigation-list > li > a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  height: 45px;
  width: auto;
  left: -2px;
}
.pageNavigation-list:not(.hasSubNav) a:hover,
.pageNavigation-list:not(.hasSubNav) a:focus {
  color: #000;
  background-color: #fff;
  text-decoration: none;
}
.pageNavigation-item.hasSubNav.active > a {
  color: #000;
  background-color: #fff;
  text-decoration: none;
}
.pageNavigation-item.item-first a {
  margin-left: 0;
}
.pageNavigation-item.item-first a:before {
  left: 0;
  z-index: -1;
}
.pageNavigation-subNav {
  display: none;
}
.pageNavigation-subNav:before,
.pageNavigation-subNav:after {
  content: " ";
  display: table;
}
.pageNavigation-subNav:after {
  clear: both;
}
.pageNavigation-subNav:before,
.pageNavigation-subNav:after {
  content: " ";
  display: table;
}
.pageNavigation-subNav:after {
  clear: both;
}
.pageNavigation-subNav-list {
  float: left;
  width: 220px;
  position: relative;
  display: block;
}
.pageNavigation-subNav-list-preview {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
  margin-left: -40px;
  pointer-events: none;
}
.pageNavigation-subNav-list-preview.cdn {
  margin-left: 20px;
}
.pageNavigation-subNav-list-preview img {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.pageNavigation-subNav-list-preview img.default {
  display: block;
}
.pageNavigation-subNav-list-title {
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  line-height: 20px;
  position: relative;
}
.pageNavigation-subNav-list-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 16px;
  color: #000;
  position: relative;
}
.pageNavigation-subNav-list-text p {
  margin: 0;
}
.pageNavigation-subNav-list-items {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 12px;
  position: relative;
}
.pageNavigation-subNav-list-items li {
  margin-bottom: 4px;
  display: block;
}
.pageNavigation-subNav-list-items li:last-child {
  margin-bottom: 0;
}
.pageNavigation-subNav-list-items a {
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: #000;
}
.pageNavigation-subNav-list-items a:hover,
.pageNavigation-subNav-list-items a:focus {
  color: #95c11f;
  text-decoration: none;
}
.pageNavigation-subNav-list-all {
  display: block;
  color: #95c11f;
  text-decoration: underline;
  font-size: 14px;
  line-height: 16px;
  margin-top: 6px;
}
.pageNavigation-subNav-list-all:hover,
.pageNavigation-subNav-list-all:focus {
  color: #669900;
  text-decoration: none;
}
.pageNavigation-subNav-list-brochure {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding-left: 36px;
  padding-right: 15px;
  line-height: 32px;
  text-decoration: none;
  font-size: 13px;
  color: #95c11f;
  background: #F9FFE9;
  -webkit-border-radius: 17px;
     -moz-border-radius: 17px;
          border-radius: 17px;
  border: 1px solid #CAE08F;
}
.pageNavigation-subNav-list-brochure .icon {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 20px;
  color: #95c11f;
  line-height: 1;
}
.pageNavigation-subNav-list-brochure .icon:before {
  display: block;
}
.pageNavigation-subNav-list-brochure:hover,
.pageNavigation-subNav-list-brochure:focus {
  color: #669900;
  text-decoration: none;
}
.pageNavigation-subNav-list--1 {
  margin-left: 135px;
}
.pageNavigation-subNav-list--2 {
  margin-left: 158px;
}
.pageNavigation-subNav-list--3 {
  margin-left: 215px;
}
.pageNavigation-subNav a.pageNavigation-subNav-list {
  text-decoration: none;
}
.pageNavigation-subNav a.pageNavigation-subNav-list:hover,
.pageNavigation-subNav a.pageNavigation-subNav-list:focus {
  text-decoration: none;
}
.pageNavigation-subNav a.pageNavigation-subNav-list:hover .pageNavigation-subNav-list-title,
.pageNavigation-subNav a.pageNavigation-subNav-list:focus .pageNavigation-subNav-list-title {
  color: #669900;
}
.pageNavigation-sub {
  position: absolute;
  top: 80px;
  left: 15px;
  min-width: 1200px;
  height: auto;
  padding: 40px 0;
  background: #fff;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
  display: none;
}
.pageNavigation-sub[data-activeSub="subNav-1"] .pageNavigation-subNav[data-id="subNav-1"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-2"] .pageNavigation-subNav[data-id="subNav-2"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-3"] .pageNavigation-subNav[data-id="subNav-3"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-4"] .pageNavigation-subNav[data-id="subNav-4"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-5"] .pageNavigation-subNav[data-id="subNav-5"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-6"] .pageNavigation-subNav[data-id="subNav-6"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-7"] .pageNavigation-subNav[data-id="subNav-7"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-8"] .pageNavigation-subNav[data-id="subNav-8"] {
  display: block;
}
.pageNavigation-sub[data-activeSub="subNav-9"] .pageNavigation-subNav[data-id="subNav-9"] {
  display: block;
}
@media screen and (min-width: 1700px) {
  .pageFooter .container {
    width: 1680px;
  }
}
.pageFooter-top {
  background: #000000;
  padding: 60px 0 0;
}
@media screen and (min-width: 1700px) {
  .pageFooter-top {
    padding-bottom: 60px;
  }
}
.pageFooter-top > .container {
  display: grid;
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "shops contact" "shops info";
}
@media screen and (min-width: 1700px) {
  .pageFooter-top > .container {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto;
    grid-row-gap: 0;
    grid-template-areas: "shops contact info";
  }
}
.pageFooter-bottom {
  padding: 20px 0;
  background: #292929;
  font-weight: 500;
  font-size: 14px;
  color: #666;
}
.pageFooter-bottom a {
  color: #666;
  text-decoration: underline;
}
.pageFooter-bottom a:hover,
.pageFooter-bottom a:focus {
  color: #95c11f;
  text-decoration: none;
}
.pageFooter__box-header {
  padding-bottom: 15px;
  border-bottom: 2px solid #95c11f;
}
.pageFooter__box-header__title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  line-height: 27px;
}
.pageFooter__box-body {
  padding-top: 30px;
}
.pageFooter__box--contacts {
  grid-area: contact;
}
.pageFooter__box--info {
  grid-area: info;
}
.pageFooter__box--shops {
  grid-area: shops;
}
.pageFooter__company {
  font-weight: 500;
  font-size: 16px;
  color: #95c11f;
  line-height: 28px;
  padding: 0 0 30px;
}
.pageFooter__list ul {
  margin: 0;
  padding: 0;
}
.pageFooter__list ul li {
  margin: 0;
  padding: 0;
  display: block;
}
.pageFooter__list ul li a {
  display: block;
}
.pageFooter__list ul li {
  margin-bottom: 10px;
}
.pageFooter__list ul li:last-child {
  margin-bottom: 0;
}
.pageFooter__list ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  text-decoration: none;
  position: relative;
}
.pageFooter__list ul li a:hover,
.pageFooter__list ul li a:focus {
  color: #95c11f;
  text-decoration: underline;
}
.pageFooter__list--withIcons ul li a {
  padding-left: 30px;
}
.pageFooter__list--withIcons ul li a svg {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.pageFooter__list--withIcons ul li a:hover svg path,
.pageFooter__list--withIcons ul li a:focus svg path {
  fill: #669900;
}
.pageFooter__list--withArrows ul li a {
  padding-left: 30px;
}
.pageFooter__list--withArrows ul li a:before {
  content: "\64";
}
.pageFooter__list--withArrows ul li a:before {
  content: "\64";
}
.pageFooter__list--withArrows ul li a:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 14px;
  font-size: 14px;
  line-height: 1;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #95c11f;
}
.pageFooter__list--withArrows ul li a:hover:before,
.pageFooter__list--withArrows ul li a:focus:before {
  color: #669900;
}
.pageFooter__newsletter {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 30px;
}
.pageFooter__newsletter-header label.pageFooter__newsletter-header__title,
.pageFooter__newsletter-header__title {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  color: #95c11f;
  line-height: 28px;
  cursor: pointer;
}
.pageFooter__newsletter-header label.pageFooter__newsletter-header__title:hover,
.pageFooter__newsletter-header__title:hover,
.pageFooter__newsletter-header label.pageFooter__newsletter-header__title:focus,
.pageFooter__newsletter-header__title:focus {
  color: #669900;
}
.pageFooter__newsletter-body {
  margin-top: 20px;
}
.pageFooter__newsletter-body .form-group {
  margin: 0;
}
.pageFooter__newsletter-body .help-block {
  color: #fff;
}
.pageFooter__newsletter-message {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  padding-left: 32px;
  position: relative;
  margin-top: 14px;
}
.pageFooter__newsletter-message i {
  font-size: 22px;
  position: absolute;
  top: 0;
  left: 0;
}
.pageFooter__newsletter-message i:before {
  display: block;
}
.pageFooter__newsletter-message.col-1 {
  color: #95c11f;
}
.pageFooter__newsletter-message.col-2 {
  color: #ff0000;
}
.pageFooter__newsletter-message.col-3 {
  color: #0077e7;
}
.pageFooter__shops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  margin-top: -5px;
}
.pageFooter__shops ul {
  margin: 0;
  padding: 0;
}
.pageFooter__shops ul li {
  margin: 0;
  padding: 0;
  display: block;
}
.pageFooter__shops ul li a {
  display: block;
}
.pageFooter__shops ul li {
  margin-bottom: 5px;
}
.pageFooter__shops ul li a {
  position: relative;
  padding: 5px 28px 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 28px;
  text-decoration: none;
}
.pageFooter__shops ul li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #95c11f;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  width: 8px;
  height: 8px;
}
.pageFooter__shops ul li a span {
  font-size: 14px;
  color: #fff;
  text-align: right;
}
.pageFooter__shops ul li a:hover,
.pageFooter__shops ul li a:focus,
.pageFooter__shops ul li a:hover span,
.pageFooter__shops ul li a:focus span {
  color: #95c11f;
}
.pageFooter__shops ul li.closed a span {
  color: #666666;
}
.pageFooter__shops ul li.closed a:after {
  background: #ff0000;
}
.pageFooter__shops ul li.closed:hover span,
.pageFooter__shops ul li.closed:focus span {
  color: #ff0000;
}
.pageFooter__map {
  margin-top: 60px;
}
.page-container {
  margin-top: 18px;
  margin-bottom: 18px;
  background: #fff;
  padding: 20px;
}
.page-container:before,
.page-container:after {
  content: " ";
  display: table;
}
.page-container:after {
  clear: both;
}
.page-container:before,
.page-container:after {
  content: " ";
  display: table;
}
.page-container:after {
  clear: both;
}
.page-container--relative {
  position: relative;
}
.page-container--article {
  padding: 0 0 20px;
}
.page-container--profile {
  padding: 0 0 80px;
}
.page-container--productPage {
  padding: 0;
}
.page-container--productDetail {
  padding: 20px 40px 40px;
}
.page-container--ageVerification {
  padding: 25px 40px 60px;
}
.page-container--brandsList {
  padding: 26px 40px 40px;
}
.page-container--shopsList {
  padding: 30px 40px 35px;
}
.page-container--compare {
  padding: 20px 20px 27px;
}
.page-container--loyaltyProgram {
  padding: 25px 20px 40px;
}
.page-container--contact,
.page-container--giftCards,
.page-container--jobsList,
.page-container--jobsDetail {
  padding: 30px 40px 40px;
}
.page-container--shopDetail {
  padding: 30px 40px 40px;
  position: relative;
}
.page-container--clean {
  padding: 0;
}
.page-container--error {
  padding: 87px 40px 207px;
  background-image: url('../images/error/404.jpg');
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-container--competition,
.page-container--competition-summer,
.page-container--competition-birthday {
  position: relative;
  padding: 0 154px 40px;
  -webkit-background-size: 100% auto;
     -moz-background-size: 100% auto;
          background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-container--competition {
  background-image: url('../images/competition/christmas.jpg');
}
.page-container--competition-summer {
  background-image: url('../images/competition/summer.jpg');
}
.page-container--competition-birthday {
  background-image: url('../images/competition/birthday.jpg');
}
.page-container--snowman {
  position: relative;
  padding: 30px 40px 35px;
  background-image: url('../images/snowman.png');
  -webkit-background-size: 515px auto;
     -moz-background-size: 515px auto;
          background-size: 515px auto;
  background-position: right 27px;
  background-repeat: no-repeat;
}
.page-container--quitSmoking {
  position: relative;
  padding: 0 154px 40px;
  background: #000 url('../images/quitSmoking/quitSmoking.png') no-repeat top center;
  -webkit-background-size: 100% auto;
     -moz-background-size: 100% auto;
          background-size: 100% auto;
  overflow: hidden;
}
.page-container--premium {
  isolation: isolate;
  position: relative;
  padding: 0 140px 40px;
  background: #fff;
}
.page-container--premium:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 900px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #DEDEDE), to(#FFFFFF));
  background-image: -webkit-linear-gradient(top, #DEDEDE 50%, #FFFFFF 100%);
  background-image: -moz-linear-gradient(top, #DEDEDE 50%, #FFFFFF 100%);
  background-image: -o-linear-gradient(top, #DEDEDE 50%, #FFFFFF 100%);
  background-image: linear-gradient(180deg, #DEDEDE 50%, #FFFFFF 100%);
  z-index: -1;
}
.page-container--cart {
  padding: 0;
}
.stockBox {
  position: relative;
  margin-top: 0;
}
.stockBox-header {
  height: 32px;
}
.stockBox-title {
  margin: 0;
  font-size: 14px;
  line-height: 32px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  background: #95c11f;
  padding-left: 20px;
}
.stockBox-body {
  border: 1px solid #DEDEDE;
  border-top: none;
  padding-top: 22px;
  padding-bottom: 22px;
}
.stockBox-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.stockBox-list li {
  margin-bottom: 5px;
}
.stockBox-list li:last-child {
  margin-bottom: 0;
}
.stockBox-list a {
  display: block;
  padding: 0 10px 0 96px;
  height: 56px;
  position: relative;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.stockBox-list a:before,
.stockBox-list a:after {
  content: " ";
  display: table;
}
.stockBox-list a:after {
  clear: both;
}
.stockBox-list a:before,
.stockBox-list a:after {
  content: " ";
  display: table;
}
.stockBox-list a:after {
  clear: both;
}
.stockBox-list a:hover .title,
.stockBox-list a:focus .title {
  text-decoration: underline;
  color: #95c11f;
}
.stockBox-list a:hover img,
.stockBox-list a:focus img {
  opacity: 0.8;
}
.stockBox-list img {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 20px;
  border: 1px solid #DEDEDE;
}
.stockBox-list .title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 56px;
  font-size: 14px;
  line-height: 1.286;
  color: #000;
  font-weight: normal;
  margin: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.productsList {
  width: 100%;
}
.productsList:before,
.productsList:after {
  content: " ";
  display: table;
}
.productsList:after {
  clear: both;
}
.productsList:before,
.productsList:after {
  content: " ";
  display: table;
}
.productsList:after {
  clear: both;
}
.productsList-item {
  position: relative;
  float: left !important;
  margin-top: 20px;
}
.productsList-item:before,
.productsList-item:after {
  content: '';
  position: absolute;
  background: #e0e0e0;
}
.productsList-item:before {
  left: 0;
  bottom: 0;
  width: 1px;
  height: 381px;
  z-index: 4;
}
.productsList-item:after {
  left: 0;
  bottom: 0;
  width: 216px;
  height: 1px;
}
.productsList-item > a {
  display: block;
  width: 234px;
  height: 384px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productsList-item > a:hover,
.productsList-item > a:focus {
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
       box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  z-index: 4;
}
.productsList-item img {
  position: absolute;
  top: 75px;
  left: 17px;
  width: 200px;
  height: 200px;
}
.productsList-item-title {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 17px 10px 2px 13px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
  font-size: 15px;
  line-height: 21px;
  color: #000;
}
.productsList-item-tags {
  position: absolute;
  top: 65px;
  left: 0;
  text-align: left;
}
.productsList-item-tags .tag {
  float: right;
  width: 56px;
  height: 28px;
  position: relative;
  margin-right: -6px;
  -webkit-border-bottom-right-radius: 60px;
     -moz-border-radius-bottomright: 60px;
          border-bottom-right-radius: 60px;
  -webkit-border-bottom-left-radius: 60px;
     -moz-border-radius-bottomleft: 60px;
          border-bottom-left-radius: 60px;
}
.productsList-item-tags .tag span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: auto;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  padding-bottom: 4px;
}
.productsList-item-tags .tag:first-child {
  margin-right: 0;
}
.productsList-item-tags .tag-text-2 span {
  font-size: 8px;
  line-height: 9px;
}
.productsList-item-tags .tag-text-1 span {
  font-size: 13px;
  line-height: 17px;
}
.productsList-item-tags .tag-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 20px;
  width: auto;
  margin-top: -2px;
}
.productsList-item-variant {
  position: absolute;
  top: 66px;
  right: 16px;
  color: #808080;
  padding: 2px 12px;
  border: 1px solid #808080;
  font-size: 10px;
  text-align: center;
  margin-bottom: 3px;
  background: #fff;
  letter-spacing: 1px;
  text-transform: lowercase;
  z-index: 2;
}
.productsList-item-stock {
  position: absolute;
  bottom: 53px;
  left: 0;
  height: 42px;
  width: 100%;
  font-size: 12px;
  line-height: 15px;
}
.productsList-item-stock .info {
  position: absolute;
  left: 13px;
  top: 0;
  width: 50%;
  color: #000;
}
.productsList-item-stock .info.info-warning {
  color: #ffa500;
}
.productsList-item-stock .info.info-success {
  color: #77B200;
}
.productsList-item-stock .info.info-danger {
  color: #ff0000;
}
.productsList-item-stock .info.info-info {
  color: #0077e7;
}
.productsList-item-stock .shops {
  position: absolute;
  right: 16px;
  top: 0;
  width: 50%;
  text-align: right;
}
.productsList-item-stock .shops .title {
  color: #000;
}
.productsList-item-stock .shops.shops-warning .title {
  color: #ffa500;
}
.productsList-item-stock .shops.shops-success .title {
  color: #77B200;
}
.productsList-item-stock .shops.shops-danger .title {
  color: #ff0000;
}
.productsList-item-stock .shops.shops-info .title {
  color: #0077e7;
}
.productsList-item-price {
  position: absolute;
  bottom: 22px;
  left: 0;
  height: 30px;
  width: 90px;
  text-align: right;
}
.productsList-item-price .sale {
  position: absolute;
  left: 13px;
  top: -3px;
  font-size: 10px;
  line-height: 10px;
  color: #000000;
  font-weight: bold;
}
.productsList-item-price .old {
  font-size: 10px;
  line-height: 10px;
  color: #000000;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: -3px;
}
.productsList-item-price .price {
  position: absolute;
  right: 0;
  bottom: -5px;
  font-size: 18px;
  line-height: 23px;
  font-weight: bold;
  text-align: right;
  color: #000;
}
.productsList-item-price .price.text-danger {
  color: #ff0000;
}
.productsList-item-price .price.text-warning {
  color: #ffa500;
}
.productsList-item-price .price.text-success {
  color: #77B200;
}
.productsList-item-price .price.text-info {
  color: #0077e7;
}
.productsList-item .btn {
  position: absolute;
  bottom: 18px;
  right: 16px;
  padding: 7px 44px 7px 13px;
}
.productsList-item .btn:hover + a,
.productsList-item .btn:focus + a {
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
       box-shadow: 0 0 13px rgba(0, 0, 0, 0.2);
  z-index: 4;
}
.productsList:not(.productsList--one_row) .productsList-item:nth-last-child(1):after,
.productsList:not(.productsList--one_row) .productsList-item:nth-last-child(2):after,
.productsList:not(.productsList--one_row) .productsList-item:nth-last-child(3):after,
.productsList:not(.productsList--one_row) .productsList-item:nth-last-child(4):after,
.productsList:not(.productsList--one_row) .productsList-item:nth-last-child(5):after {
  display: none;
}
.productsList:not(.productsList--one_row) .productsList-item:nth-child(5n+1):before {
  display: none;
}
.productList {
  width: 100%;
}
.productList:before,
.productList:after {
  content: " ";
  display: table;
}
.productList:after {
  clear: both;
}
.productList:before,
.productList:after {
  content: " ";
  display: table;
}
.productList:after {
  clear: both;
}
.productList-item {
  width: 290px;
  height: 595px;
  float: left;
  position: relative;
  border: 1px solid #DEDEDE;
  margin: 0 -1px 20px 0;
}
.productList-item-anchor {
  padding: 49px 20px 20px;
  display: block;
}
.productList-item-anchor:hover,
.productList-item-anchor:focus {
  text-decoration: none;
}
.productList-item-anchor:hover .productList-item-title,
.productList-item-anchor:focus .productList-item-title {
  text-decoration: underline;
}
.productList-item-variants {
  position: absolute;
  top: 15px;
  left: 20px;
  display: block;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  height: 23px;
  line-height: 23px;
  padding: 0 12px;
  font-size: 9px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
}
.productList-item-tags {
  position: absolute;
  top: 0;
  right: 11px;
  width: auto;
  height: 40px;
}
.productList-item-tags:before,
.productList-item-tags:after {
  content: " ";
  display: table;
}
.productList-item-tags:after {
  clear: both;
}
.productList-item-tags:before,
.productList-item-tags:after {
  content: " ";
  display: table;
}
.productList-item-tags:after {
  clear: both;
}
.productList-item-title {
  font-size: 18px;
  color: #000000;
  line-height: 1.2;
  height: 87px;
  margin: 0;
  font-weight: 500;
  position: relative;
}
.productList-item-gifts {
  margin-top: 20px;
  height: 68px;
}
.productList-item-gifts .gift {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 13px;
}
.productList-item-gifts .gift:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: -2px;
  left: 0;
  background: url('../images/layout/productGift.svg') no-repeat center;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
}
.productList-item-gifts .gift-title {
  font-size: 11px;
  color: #f20d0d;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 500;
}
.productList-item-gifts .gift-name {
  margin-top: 5px;
  font-weight: 300;
  color: #666666;
  font-size: 12px;
  line-height: 1;
}
.productList-item-stockInfo {
  margin-top: 20px;
  height: 32px;
}
.productList-item-stockInfo .stock {
  display: block;
  font-size: 14px;
  color: #999999;
  line-height: 1.286;
  font-weight: 500;
}
.productList-item-stockInfo .stock-default {
  color: #999999;
}
.productList-item-stockInfo .stock-primary {
  color: #95c11f;
}
.productList-item-stockInfo .stock-info {
  color: #0077e7;
}
.productList-item-stockInfo .stock-warning {
  color: #ffa500;
}
.productList-item-stockInfo .stock-danger {
  color: #ff0000;
}
.productList-item-stockInfo .shops {
  display: block;
  font-size: 12px;
  color: #95c11f;
  line-height: 1.286;
}
.productList-item-stockInfo .shops-default {
  color: #999999;
}
.productList-item-stockInfo .shops-primary {
  color: #95c11f;
}
.productList-item-stockInfo .shops-info {
  color: #0077e7;
}
.productList-item-stockInfo .shops-warning {
  color: #ffa500;
}
.productList-item-stockInfo .shops-danger {
  color: #ff0000;
}
.productList-item-stockInfo .shops-more {
  text-decoration: underline;
}
.productList-item-stockInfo .shops-more:hover,
.productList-item-stockInfo .shops-more:focus {
  text-decoration: none;
}
.productList-item-prices {
  width: 130px;
  position: relative;
  margin-top: 14px;
  padding-top: 20px;
}
.productList-item-prices .old {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
}
.productList-item-prices .price {
  font-size: 24px;
  color: #f20d0d;
  font-weight: bold;
  line-height: 0.75;
}
.productList-item-image {
  width: 240px;
  height: 240px;
  display: block;
  margin-top: 6px;
}
.productList-item-compare {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  right: 15px;
  bottom: 79px;
  width: 30px;
  height: 28px;
  padding: 5px;
}
.productList-item-compare svg {
  height: 18px;
}
.productList-item-compare svg path {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  fill: #aaa;
}
.productList-item-compare:hover svg path,
.productList-item-compare:focus svg path {
  fill: #666;
}
.productList-item-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  min-width: 118px;
}
.productList-item-btn.btn-default-gradient {
  background: #ccc;
  color: #fff;
}
.productList-item-btn.btn-default-gradient:focus,
.productList-item-btn.btn-default-gradient.focus {
  background: #bbb;
}
.productList-item-btn.btn-default-gradient:hover {
  background: #bbb;
}
.productList-item-btn.btn-default-gradient:active,
.productList-item-btn.btn-default-gradient.active,
.open > .dropdown-toggle.productList-item-btn.btn-default-gradient {
  background: #bbb;
}
.productList-item-btn.btn-default-gradient:active:hover,
.productList-item-btn.btn-default-gradient.active:hover,
.open > .dropdown-toggle.productList-item-btn.btn-default-gradient:hover,
.productList-item-btn.btn-default-gradient:active:focus,
.productList-item-btn.btn-default-gradient.active:focus,
.open > .dropdown-toggle.productList-item-btn.btn-default-gradient:focus,
.productList-item-btn.btn-default-gradient:active.focus,
.productList-item-btn.btn-default-gradient.active.focus,
.open > .dropdown-toggle.productList-item-btn.btn-default-gradient.focus {
  background: #bbb;
}
.productList-item-btn.btn-default-gradient:active,
.productList-item-btn.btn-default-gradient.active,
.open > .dropdown-toggle.productList-item-btn.btn-default-gradient {
  background-image: none;
}
.productList-item-btn.btn-default-gradient.disabled,
.productList-item-btn.btn-default-gradient[disabled],
fieldset[disabled] .productList-item-btn.btn-default-gradient,
.productList-item-btn.btn-default-gradient.disabled:hover,
.productList-item-btn.btn-default-gradient[disabled]:hover,
fieldset[disabled] .productList-item-btn.btn-default-gradient:hover,
.productList-item-btn.btn-default-gradient.disabled:focus,
.productList-item-btn.btn-default-gradient[disabled]:focus,
fieldset[disabled] .productList-item-btn.btn-default-gradient:focus,
.productList-item-btn.btn-default-gradient.disabled.focus,
.productList-item-btn.btn-default-gradient[disabled].focus,
fieldset[disabled] .productList-item-btn.btn-default-gradient.focus,
.productList-item-btn.btn-default-gradient.disabled:active,
.productList-item-btn.btn-default-gradient[disabled]:active,
fieldset[disabled] .productList-item-btn.btn-default-gradient:active,
.productList-item-btn.btn-default-gradient.disabled.active,
.productList-item-btn.btn-default-gradient[disabled].active,
fieldset[disabled] .productList-item-btn.btn-default-gradient.active {
  background: #bbb;
}
.productList-item-btn.btn-default-gradient .badge {
  color: #fff;
  background-color: #bbb;
}
.productList-item-quantityDiscounts {
  display: block;
  position: relative;
  height: 40px;
  line-height: 40px;
  color: #000;
  background: #F9FFE9;
  padding-left: 54px;
  padding-right: 20px;
}
.productList-item-quantityDiscounts strong {
  font-weight: 500;
}
.productList-item-quantityDiscounts .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #D7EAA2;
  font-size: 24px;
}
.productList-item--small {
  width: 225px;
  height: 390px;
}
.productList-item--small .productList-item-anchor {
  padding: 20px;
}
.productList-item--small .productList-item-variants,
.productList-item--small .productList-item-tags,
.productList-item--small .productList-item-gifts {
  display: none;
}
.productList-item--small .productList-item-title {
  height: 60px;
  font-weight: normal;
  line-height: 1.167;
  font-size: 17px;
  display: block;
}
.productList-item--small .productList-item-image {
  width: 185px;
  height: 185px;
  margin-top: 10px;
}
.productList-item--small .productList-item-stockInfo {
  height: 32px;
  margin-top: 10px;
}
.productList-item--small .productList-item-stockInfo .stock {
  font-size: 13px;
  line-height: 1.385;
}
.productList-item--small .productList-item-stockInfo .shops {
  line-height: 1.385;
}
.productList-item--small .productList-item-prices {
  width: 90px;
  margin-top: 11px;
}
.productList-item--small .productList-item-prices .price {
  font-size: 18px;
  line-height: 0.75;
}
.productList-item--small .productList-item-compare {
  bottom: 60px;
}
.productList-item--small .productList-item-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding-left: 14px;
  padding-right: 14px;
  width: 90px;
  height: 25px;
  line-height: 25px !important;
  min-width: 0;
  font-size: 12px;
}
.productList-item--small .productList-item-btn.btn-info-gradient {
  padding: 0;
}
.productList-item--small .productList-item-btn.withShoppingCart {
  padding-right: 35px;
  padding-left: 15px;
}
.productList-item--small .productList-item-btn.withShoppingCart svg {
  right: 12px;
  height: 15px;
  width: auto;
  margin-top: -1px;
}
.productList-item--small--primary {
  background: #F9FFE9;
  border: 1px solid #CAE08F;
}
.productList-item--small.productList-item--quantityDiscounts {
  height: 430px;
  padding-bottom: 40px;
}
.productList-item--small.productList-item--quantityDiscounts .productList-item-stockInfo {
  margin-top: 8px;
}
.productList-item--small.productList-item--quantityDiscounts .productList-item-btn {
  bottom: 60px;
}
.productList-item--small.productList-item--quantityDiscounts .productList-item-compare {
  bottom: 100px;
}
.productList-item--small.productList-item--quantityDiscounts .productList-item-quantityDiscounts {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.productList-item--small.productList-item--quantityDiscounts .productList-item-quantityDiscounts .icon {
  left: 19px;
}
.productList-item:not(.productList-item--small) .productList-item-title {
  height: auto;
  max-height: 87px;
}
.productList-item:not(.productList-item--small) .productList-item-stockInfo {
  position: absolute;
  bottom: 71px;
}
.productList-item:not(.productList-item--small) .productList-item-prices {
  position: absolute;
  bottom: 17px;
}
.productList-item:not(.productList-item--small).productList-item--quantityDiscounts .productList-item-stockInfo {
  bottom: 111px;
}
.productList-item:not(.productList-item--small).productList-item--quantityDiscounts .productList-item-prices {
  bottom: 57px;
}
.productList-item:not(.productList-item--small).productList-item--quantityDiscounts .productList-item-btn {
  bottom: 60px;
}
.productList-item:not(.productList-item--small).productList-item--quantityDiscounts .productList-item-compare {
  bottom: 119px;
}
.productList-item:not(.productList-item--small).productList-item--quantityDiscounts .productList-item-quantityDiscounts {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.productList-item:not(.productList-item--small).productList-item--quantityDiscounts .productList-item-quantityDiscounts .icon {
  left: 19px;
}
.productList-item--noGifts {
  height: 480px;
}
.productList-item--noGifts .productList-item-gifts {
  display: none;
}
.productList-item--noGifts.productList-item--quantityDiscounts {
  height: 520px;
}
.productList-item--quantityDiscounts {
  height: 635px;
}
.productList-item--vapeOutlet .productList-item-vapeoutletInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  width: -webkit-calc(100% + 40px);
  width: -moz-calc(100% + 40px);
  width: calc(100% + 40px);
  gap: 5px;
  -webkit-transform: translateX(-20px);
     -moz-transform: translateX(-20px);
       -o-transform: translateX(-20px);
          transform: translateX(-20px);
}
.productList-item--vapeOutlet .productList-item-vapeoutletInfo__sale {
  -webkit-transform: translateX(-1px);
     -moz-transform: translateX(-1px);
       -o-transform: translateX(-1px);
          transform: translateX(-1px);
  height: 28px;
  width: 68px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  font-weight: 700;
  padding-right: 8px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='82' height='36'%3E%3Cpath fill='%23E6331C' fill-rule='evenodd' d='M0 0h66.555A5 5 0 0170.5 1.93l10.111 13a5 5 0 010 6.14l-10.11 13A5 5 0 0166.554 36H0V0z'/%3E%3C/svg%3E");
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
}
.productList-item--vapeOutlet .productList-item-vapeoutletInfo__priceOld {
  line-height: 28px;
  color: #aaa;
  text-align: center;
  text-decoration: line-through;
}
.productList-item--vapeOutlet .productList-item-vapeoutletInfo__price {
  color: #e6331c;
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  padding-right: 8px;
  margin-left: 13px;
}
.productList-item--vapeOutlet .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  right: 50%;
  bottom: 10px;
  -webkit-transform: translateX(50%);
     -moz-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%);
  background: transparent;
  border: 1px solid #f9ccc6;
  color: #e6331c;
  width: auto;
}
.productList-item--vapeOutlet .btn:hover,
.productList-item--vapeOutlet .btn:focus,
.productList-item--vapeOutlet .btn:active:hover,
.productList-item--vapeOutlet .btn:active:focus {
  background: transparent;
  color: #e6331c;
  border-color: #ac2614;
}
.productList-item--vapeOutlet .btn svg path {
  fill: currentColor;
}
.tab-pane .productList .productList-item {
  border-left: none;
  margin-right: 0;
}
.tab-pane .productList .productList-item:not(.productList-item--small) {
  width: 289px;
}
.tab-pane .productList .productList-item:not(.productList-item--small):nth-child(4n+4) {
  border-right: none;
}
.tab-pane .productList .productList-item.productList-item--small {
  width: 231px;
}
.tab-pane .productList .productList-item.productList-item--small:nth-child(5n+5) {
  border-right: none;
  width: 234px;
}
.productPage {
  display: table;
  width: 100%;
}
.productPage-filters {
  width: 292px;
  height: 100%;
  background: #F8F8F8;
  display: table-cell;
  padding: 7px 20px 0;
}
.productPage-filters:before,
.productPage-filters:after {
  content: " ";
  display: table;
}
.productPage-filters:after {
  clear: both;
}
.productPage-filters:before,
.productPage-filters:after {
  content: " ";
  display: table;
}
.productPage-filters:after {
  clear: both;
}
.productPage-filters_title {
  margin: 0;
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #666666;
  text-transform: uppercase;
}
.productPage-filters_list {
  margin-left: -20px;
  margin-right: -20px;
}
.productPage-filters_list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0;
  display: block;
}
.productPage-filters_list li {
  display: block;
}
.productPage-filters_list a,
.productPage-filters_list button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: relative;
  background: transparent;
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  line-height: 30px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 20px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productPage-filters_list a:after,
.productPage-filters_list button:after {
  content: '';
  background: url('../images/layout/arrow3.svg') no-repeat center;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  height: 7px;
  width: 10px;
  margin-top: -5px;
  opacity: 0.25;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.productPage-filters_list a.active,
.productPage-filters_list button.active {
  text-decoration: none;
  color: #95c11f;
  background: #fff;
}
.productPage-filters_list a.active:after,
.productPage-filters_list button.active:after {
  opacity: 1;
}
.productPage-filters_list a:hover,
.productPage-filters_list button:hover,
.productPage-filters_list a:focus,
.productPage-filters_list button:focus {
  text-decoration: none;
  color: #95c11f;
}
.productPage-filters_list a:hover:after,
.productPage-filters_list button:hover:after,
.productPage-filters_list a:focus:after,
.productPage-filters_list button:focus:after {
  opacity: 1;
}
.productPage-filters_btn {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  background: transparent;
  position: relative;
  height: 24px;
  font-size: 13px;
  color: #95c11f;
  line-height: 24px;
  font-weight: normal;
  text-decoration: none;
  padding-left: 30px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productPage-filters_btn svg {
  display: block;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 0;
  margin-top: -8px;
  position: absolute;
}
.productPage-filters_btn:hover,
.productPage-filters_btn:focus {
  text-decoration: none;
  color: #669900;
}
.productPage-filters_btn:hover svg path,
.productPage-filters_btn:focus svg path {
  fill: #669900;
}
.productPage-content {
  display: table-cell;
  width: 908px;
  height: 100%;
  padding: 20px;
  position: relative;
}
.productPage-content:before,
.productPage-content:after {
  content: " ";
  display: table;
}
.productPage-content:after {
  clear: both;
}
.productPage-content:before,
.productPage-content:after {
  content: " ";
  display: table;
}
.productPage-content:after {
  clear: both;
}
.productPage-title {
  margin: 10px 0 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 27px;
  color: #000;
}
.productPage-text {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  margin-top: 20px;
}
.productPage-text p:first-child {
  margin-top: 0;
}
.productPage-text p:last-child {
  margin-bottom: 0;
}
.productPage-category {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid #E5E5E5;
  font-size: 12px;
  color: #95c11f;
  padding: 8px 12px;
  line-height: 1;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
a.productPage-category,
button.productPage-category {
  text-decoration: none;
}
a.productPage-category:hover,
button.productPage-category:hover,
a.productPage-category:focus,
button.productPage-category:focus {
  text-decoration: none;
  color: #669900;
  border-color: #669900;
}
.productPage-top {
  margin-top: 30px;
}
.productPage-top_title {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.productPage-top_list-item {
  display: block;
  position: relative;
  padding: 15px 0 15px 96px;
  margin: 0;
  border-bottom: 1px solid #dedede;
}
.productPage-top_list-item-anchor {
  display: block;
  text-decoration: none;
  color: #000;
}
.productPage-top_list-item-anchor:hover,
.productPage-top_list-item-anchor:focus {
  text-decoration: none;
}
.productPage-top_list-item-anchor:hover .productPage-top_list-item-title,
.productPage-top_list-item-anchor:focus .productPage-top_list-item-title {
  text-decoration: underline;
}
.productPage-top_list-item-imageCounter {
  position: absolute;
  top: 15px;
  left: 0;
  width: 76px;
  padding-left: 6px;
}
.productPage-top_list-item-image {
  width: 70px;
  height: 70px;
  border: 1px solid #dedede;
}
.productPage-top_list-item-counter {
  position: absolute;
  top: -5px;
  left: 0;
  margin: 0;
  height: 22px;
  line-height: 22px;
  padding: 0 8px;
}
.productPage-top_list-item-content {
  height: 70px;
  padding-top: 3px;
}
.productPage-top_list-item-title {
  margin: 0;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 14px;
}
.productPage-top_list-item-title .in {
  display: inline-block;
  position: relative;
}
.productPage-top_list-item-title .in .rating {
  position: absolute;
  top: 0;
  right: -95px;
  height: 12px;
}
.productPage-top_list-item-text {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  line-height: 14px;
}
.productPage-top_list-item-text p {
  margin: 0;
}
.productPage-top_list-item-stockInfo {
  margin-top: 3px;
}
.productPage-top_list-item-stockInfo .stock {
  display: inline-block;
  font-size: 13px;
  color: #999999;
  line-height: 17px;
  font-weight: 500;
}
.productPage-top_list-item-stockInfo .stock-default {
  color: #999999;
}
.productPage-top_list-item-stockInfo .stock-primary {
  color: #95c11f;
}
.productPage-top_list-item-stockInfo .stock-info {
  color: #0077e7;
}
.productPage-top_list-item-stockInfo .stock-warning {
  color: #ffa500;
}
.productPage-top_list-item-stockInfo .stock-danger {
  color: #ff0000;
}
.productPage-top_list-item-stockInfo .shops {
  display: inline-block;
  font-size: 13px;
  color: #95c11f;
  line-height: 17px;
}
.productPage-top_list-item-stockInfo .shops-default {
  color: #999999;
}
.productPage-top_list-item-stockInfo .shops-primary {
  color: #95c11f;
}
.productPage-top_list-item-stockInfo .shops-info {
  color: #0077e7;
}
.productPage-top_list-item-stockInfo .shops-warning {
  color: #ffa500;
}
.productPage-top_list-item-stockInfo .shops-danger {
  color: #ff0000;
}
.productPage-top_list-item-stockInfo .shops-more {
  text-decoration: underline;
}
.productPage-top_list-item-stockInfo .shops-more:hover,
.productPage-top_list-item-stockInfo .shops-more:focus {
  text-decoration: none;
}
.productPage-top_list-item-prices {
  position: absolute;
  bottom: 22px;
  right: 15px;
  width: 130px;
  text-align: right;
}
.productPage-top_list-item-prices .old {
  position: absolute;
  top: -14px;
  right: 0;
  font-size: 13px;
  color: #999999;
  text-decoration: line-through;
  line-height: 1;
}
.productPage-top_list-item-prices .price {
  font-size: 18px;
  color: #f20d0d;
  font-weight: bold;
  line-height: 20px;
}
.productPage-top_list-button {
  margin-right: auto;
  margin-left: auto;
  display: block;
  border-color: #dedede;
  background-color: #F9FFE9;
  -webkit-border-top-right-radius: 0;
     -moz-border-radius-topright: 0;
          border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
     -moz-border-radius-topleft: 0;
          border-top-left-radius: 0;
  border-top: none;
  font-weight: normal;
  font-size: 13px;
  padding-right: 34px;
  padding-left: 15px;
}
.productPage-top_list-button i {
  width: 34px;
  -webkit-background-size: 10px auto;
     -moz-background-size: 10px auto;
          background-size: 10px auto;
}
.productPage-top_list-button:not(.disabled) i {
  -webkit-filter: invert(0.5) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.3);
          filter: invert(0.5) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.3);
}
.productPage-top_list-button:hover,
.productPage-top_list-button:focus,
.productPage-top_list-button.active {
  border-color: #dedede;
}
.productPage-top_list-button:hover i,
.productPage-top_list-button:focus i,
.productPage-top_list-button.active i {
  -webkit-filter: invert(0.5) sepia(1) saturate(2) hue-rotate(48deg);
          filter: invert(0.5) sepia(1) saturate(2) hue-rotate(48deg);
}
.productPage-info {
  margin-top: 20px;
  margin-bottom: 25px;
}
.productPage-info:before,
.productPage-info:after {
  content: " ";
  display: table;
}
.productPage-info:after {
  clear: both;
}
.productPage-info:before,
.productPage-info:after {
  content: " ";
  display: table;
}
.productPage-info:after {
  clear: both;
}
.productPage-info_counter {
  font-size: 18px;
  color: #000000;
  display: inline-block;
  font-weight: 500;
}
.productPage-info_remove {
  position: relative;
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  background: #E3E3E3;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  display: inline-block;
  border: none;
  margin-left: 8px;
}
.productPage-info_remove svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
}
.productPage-info_remove:hover,
.productPage-info_remove:focus {
  background: #ff0000;
}
.productPage-info_sorting {
  text-align: right;
}
.productPage-info_sorting li {
  display: inline-block;
}
.productPage-info_sorting li button,
.productPage-info_sorting li a {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  padding-left: 20px;
  text-decoration: underline;
  color: #95c11f;
  font-size: 13px;
}
.productPage-info_sorting li button:hover,
.productPage-info_sorting li a:hover {
  color: #669900;
  text-decoration: none;
}
.productPage-info_sorting li button:focus,
.productPage-info_sorting li a:focus {
  color: #669900;
}
.productPage-info_sorting li button.active,
.productPage-info_sorting li a.active {
  text-decoration: none;
  color: #000;
}
.productPage-footer {
  position: relative;
  text-align: center;
}
.productPage-pagination {
  position: absolute;
  right: 0;
  top: 0;
}
.shopsInfo {
  position: absolute;
  left: 50%;
  bottom: 25px;
  background: #fff;
  z-index: 99;
  width: 400px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  border: 1px solid #DEDEDE;
  padding: 15px;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-box-shadow: 5px 15px 25px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 5px 15px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 15px 25px 0 rgba(0, 0, 0, 0.1);
  display: none;
}
.shopsInfo:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  height: 25px;
}
.shopsInfo-header {
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}
.shopsInfo-body:before,
.shopsInfo-body:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 16px 0 16px;
}
.shopsInfo-body:before {
  border-color: #DEDEDE transparent transparent transparent;
  -webkit-transform: translate(-50%, 100%);
     -moz-transform: translate(-50%, 100%);
       -o-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
.shopsInfo-body:after {
  border-color: #fff transparent transparent transparent;
  -webkit-transform: translate(-50%, -webkit-calc(100% - 1px));
     -moz-transform: translate(-50%, -moz-calc(100% - 1px));
       -o-transform: translate(-50%, calc(100% - 1px));
          transform: translate(-50%, calc(100% - 1px));
}
.shopsInfo ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  color: #000;
  font-size: 12px;
  line-height: 20px;
}
.shops {
  position: relative;
}
.product-summary-header {
  color: #999999;
}
.product-summary-header:before,
.product-summary-header:after {
  content: " ";
  display: table;
}
.product-summary-header:after {
  clear: both;
}
.product-summary-header:before,
.product-summary-header:after {
  content: " ";
  display: table;
}
.product-summary-header:after {
  clear: both;
}
.product-summary-footer {
  margin-top: 40px;
}
.product-summary-footer:before,
.product-summary-footer:after {
  content: " ";
  display: table;
}
.product-summary-footer:after {
  clear: both;
}
.product-summary-footer:before,
.product-summary-footer:after {
  content: " ";
  display: table;
}
.product-summary-footer:after {
  clear: both;
}
.product-summary-item {
  border-bottom: 1px solid #cfcfcf;
  background: #fff;
  margin-bottom: 10px;
}
.product-summary-item:before,
.product-summary-item:after {
  content: " ";
  display: table;
}
.product-summary-item:after {
  clear: both;
}
.product-summary-item:before,
.product-summary-item:after {
  content: " ";
  display: table;
}
.product-summary-item:after {
  clear: both;
}
.product-summary-item .item-preview {
  width: 100px;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
  min-height: 95px;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.product-summary-item .item-preview img {
  width: 75px;
  height: 75px;
}
.product-summary-item .item-info {
  float: left !important;
  width: 535px;
  margin-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  min-height: 108px;
  font-size: 13px;
  line-height: 20px;
}
.product-summary-item .item-name {
  font-size: 13px;
  font-weight: 500;
}
.product-summary-item .item-stock.stock-warning {
  color: #ffa500;
}
.product-summary-item .item-stock.stock-success {
  color: #95c11f;
}
.product-summary-item .item-stock.stock-danger {
  color: #ff0000;
}
.product-summary-item .item-stock.stock-info {
  color: #0077e7;
}
.product-summary-item .item-quantity {
  float: right !important;
  width: 95px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  min-height: 108px;
}
.product-summary-item .item-price {
  float: right !important;
  width: 133px;
  padding-right: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
  min-height: 108px;
  font-size: 18px;
  line-height: 15px;
  color: #010101;
  font-weight: normal;
}
.product-summary-item .item-priceAll {
  float: right !important;
  width: 133px;
  padding-right: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
  min-height: 108px;
  font-size: 18px;
  line-height: 15px;
  color: #010101;
  font-weight: bold;
}
.more-products-header {
  margin-bottom: 5px;
}
.more-products-title {
  font-size: 24px;
  line-height: 19px;
  color: #000000;
  font-weight: bold;
  margin: 0;
}
.more-products-body {
  padding-bottom: 50px;
}
.more-products-body .productsList-item > a {
  width: 244px;
}
.more-products-body .productsList-item:after {
  width: 228px;
}
.searchShop__modal .modal-dialog {
  width: 95%;
  max-width: 1200px;
}
.searchShop__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  border: none;
}
.searchShop__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 5;
  background: #fff;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.searchShop__modal .modal-close svg {
  width: 18px;
  height: auto;
}
.searchShop__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.searchShop__modal .modal-close:hover svg path,
.searchShop__modal .modal-close:focus svg path {
  fill: #000;
}
.searchShop__modal .modal-body {
  position: relative;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.searchShop__modal__content {
  padding: 30px 40px 30px 30px;
}
.searchShop__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  line-height: 27px;
  margin-bottom: 20px;
}
.searchShop__modal__input {
  margin-top: 30px;
}
.searchShop__modal__input .form-control {
  background: url('../images/layout/search-light.svg') no-repeat -webkit-calc(100% - 15px) center;
  background: url('../images/layout/search-light.svg') no-repeat -moz-calc(100% - 15px) center;
  background: url('../images/layout/search-light.svg') no-repeat calc(100% - 15px) center;
  -webkit-background-size: 19px auto;
     -moz-background-size: 19px auto;
          background-size: 19px auto;
  height: 38px;
  margin: 0;
}
.searchShop__modal__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 15px;
  display: block;
  overflow-y: auto;
  max-height: 460px;
}
.searchShop__modal__shop {
  display: block;
  border-bottom: 1px solid #DEDEDE;
}
.searchShop__modal__shop-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  padding: 15px 15px 15px 13px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}
.searchShop__modal__shop-link:hover,
.searchShop__modal__shop-link:focus {
  color: #95c11f;
  text-decoration: none;
}
.searchShop__modal__shop-link:hover .searchShop__modal__shop-address,
.searchShop__modal__shop-link:focus .searchShop__modal__shop-address {
  color: #95c11f;
}
.searchShop__modal__shop-wrapper {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
     -moz-box-flex: 1;
          flex: 1 1 100%;
  padding-left: 25px;
}
.searchShop__modal__shop svg {
  position: absolute;
  top: 0;
  left: 0;
}
.searchShop__modal__shop svg path {
  -webkit-transition: fill 0.25s ease-in-out;
  -o-transition: fill 0.25s ease-in-out;
  -moz-transition: fill 0.25s ease-in-out;
  transition: fill 0.25s ease-in-out;
}
.searchShop__modal__shop-address {
  color: #999999;
  padding-left: 1ch;
}
.searchShop__modal__shop-status {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
          flex: 0 0 auto;
  text-align: right;
  padding-left: 15px;
}
.searchShop__modal__shop-details {
  display: none;
  padding: 20px 65px 20px 40px;
  color: #95c11f;
  background: #F9FFE9;
}
.searchShop__modal__shop-details-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 5px;
}
.searchShop__modal__shop-details table {
  width: 100%;
}
.searchShop__modal__shop-details table th,
.searchShop__modal__shop-details table td {
  padding: 7px 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
}
.searchShop__modal__shop-details .button {
  margin-top: 23px;
}
.searchShop__modal__shop.is-active .searchShop__modal__shop-link {
  background: #F9FFE9;
}
.searchShop__modal__shop.is-active .searchShop__modal__shop-link,
.searchShop__modal__shop.is-active .searchShop__modal__shop-address {
  color: #95c11f;
}
.searchShop__modal__shop.is-active svg path {
  fill: #95c11f;
}
.searchShop__modal__map iframe {
  border: none;
  width: 100%;
  height: 100%;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
}
.articleBox-container {
  position: relative;
  overflow: hidden;
}
.articleBox {
  width: 915px;
  float: left;
}
.articleBox--mb {
  margin-bottom: 30px;
}
.articleBox-title {
  font-size: 24px;
  color: #292929;
  line-height: 0.75;
  margin: 0;
  border-bottom: 1px solid #efefef;
  padding: 25px 0 35px;
}
.articleBox-item {
  padding: 40px 0 40px 300px;
  border-bottom: 1px solid #efefef;
  display: block;
  position: relative;
  text-decoration: none;
}
.articleBox-item .item-image {
  position: absolute;
  left: 0;
  top: 40px;
}
.articleBox-item .item-image:hover,
.articleBox-item .item-image:focus {
  opacity: 0.9;
}
.articleBox-item .item-image img {
  width: 260px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.articleBox-item .articleTags {
  margin: 0;
  padding: 0;
  float: left;
}
.articleBox-item .articleTags .articleTag {
  float: left;
  display: inline-block;
  margin-right: 6px;
}
.articleBox-item .articleTags .articleTag a,
.articleBox-item .articleTags .articleTag span {
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  background: #aaaaaa;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 4px;
  color: #ffffff;
  display: block;
  text-decoration: none;
}
.articleBox-item .articleTags .articleTag a:hover,
.articleBox-item .articleTags .articleTag a:focus {
  text-decoration: none;
  opacity: 0.5;
}
.articleBox-item .articleTags .articleTag--default a,
.articleBox-item .articleTags .articleTag--default span {
  background: #aaaaaa;
}
.articleBox-item .articleTags .articleTag--success a,
.articleBox-item .articleTags .articleTag--success span {
  background: #77B200;
}
.articleBox-item .articleTags .articleTag--danger a,
.articleBox-item .articleTags .articleTag--danger span {
  background: #dc3522;
}
.articleBox-item .articleTags .articleTag--info a,
.articleBox-item .articleTags .articleTag--info span {
  background: #0077e7;
}
.articleBox-item .articleTags .articleTag--primary a,
.articleBox-item .articleTags .articleTag--primary span {
  background: #95c11f;
}
.articleBox-item .articleTags .articleTag--warning a,
.articleBox-item .articleTags .articleTag--warning span {
  background: #ffa500;
}
.articleBox-item .item-info:before,
.articleBox-item .item-info:after {
  content: " ";
  display: table;
}
.articleBox-item .item-info:after {
  clear: both;
}
.articleBox-item .item-info:before,
.articleBox-item .item-info:after {
  content: " ";
  display: table;
}
.articleBox-item .item-info:after {
  clear: both;
}
.articleBox-item .item-date {
  font-size: 12px;
  color: #666666;
  line-height: 1;
  padding: 4px;
  margin-left: 7px;
  font-weight: 600;
  float: left;
}
.articleBox-item .item-title {
  font-size: 22px;
  color: #292929;
  font-weight: bold;
  line-height: 1.182;
  margin: 14px 0;
  padding: 0;
}
.articleBox-item .item-title a {
  color: #292929;
}
.articleBox-item .item-title a:hover,
.articleBox-item .item-title a:focus {
  color: #aeca36;
  text-decoration: none;
}
.articleBox-item .item-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.429;
  margin: 0 0 18px;
  width: 540px;
}
.articleBox-item .item-in {
  min-height: 130px;
}
.articleBox-item .item-in:before,
.articleBox-item .item-in:after {
  content: " ";
  display: table;
}
.articleBox-item .item-in:after {
  clear: both;
}
.articleBox-item .item-in:before,
.articleBox-item .item-in:after {
  content: " ";
  display: table;
}
.articleBox-item .item-in:after {
  clear: both;
}
.articleBox-item:last-child {
  border-bottom: none;
}
.articleBox-item .btn {
  text-transform: none;
}
.articleBox-item .item-moreContent {
  padding-top: 60px;
}
.articleBox-item .item-moreContent-text {
  font-size: 14px;
  color: #000000;
  line-height: 1.429;
  margin-bottom: 40px;
}
.articleBox-item .item-moreContent-text h1,
.articleBox-item .item-moreContent-text .h1 {
  font-size: 30px;
  color: #292929;
  font-weight: bold;
  line-height: 1.182;
}
.articleBox-item .item-moreContent-text h2,
.articleBox-item .item-moreContent-text .h2 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 1.556;
}
.articleBox-item .item-moreContent-text h3,
.articleBox-item .item-moreContent-text .h3 {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  line-height: 1.75;
}
.articleBox-item .item-moreContent-text h1.text-primary,
.articleBox-item .item-moreContent-text h2.text-primary,
.articleBox-item .item-moreContent-text h3.text-primary,
.articleBox-item .item-moreContent-text .h1.text-primary,
.articleBox-item .item-moreContent-text .h2.text-primary,
.articleBox-item .item-moreContent-text .h3.text-primary {
  color: #95c11f;
}
a.articleBox-item .item-moreContent-text h1.text-primary:hover,
a.articleBox-item .item-moreContent-text h2.text-primary:hover,
a.articleBox-item .item-moreContent-text h3.text-primary:hover,
a.articleBox-item .item-moreContent-text .h1.text-primary:hover,
a.articleBox-item .item-moreContent-text .h2.text-primary:hover,
a.articleBox-item .item-moreContent-text .h3.text-primary:hover,
a.articleBox-item .item-moreContent-text h1.text-primary:focus,
a.articleBox-item .item-moreContent-text h2.text-primary:focus,
a.articleBox-item .item-moreContent-text h3.text-primary:focus,
a.articleBox-item .item-moreContent-text .h1.text-primary:focus,
a.articleBox-item .item-moreContent-text .h2.text-primary:focus,
a.articleBox-item .item-moreContent-text .h3.text-primary:focus {
  color: #739518;
}
.articleBox-item .item-moreContent-text h1.text-success,
.articleBox-item .item-moreContent-text h2.text-success,
.articleBox-item .item-moreContent-text h3.text-success,
.articleBox-item .item-moreContent-text .h1.text-success,
.articleBox-item .item-moreContent-text .h2.text-success,
.articleBox-item .item-moreContent-text .h3.text-success {
  color: #3c763d;
}
a.articleBox-item .item-moreContent-text h1.text-success:hover,
a.articleBox-item .item-moreContent-text h2.text-success:hover,
a.articleBox-item .item-moreContent-text h3.text-success:hover,
a.articleBox-item .item-moreContent-text .h1.text-success:hover,
a.articleBox-item .item-moreContent-text .h2.text-success:hover,
a.articleBox-item .item-moreContent-text .h3.text-success:hover,
a.articleBox-item .item-moreContent-text h1.text-success:focus,
a.articleBox-item .item-moreContent-text h2.text-success:focus,
a.articleBox-item .item-moreContent-text h3.text-success:focus,
a.articleBox-item .item-moreContent-text .h1.text-success:focus,
a.articleBox-item .item-moreContent-text .h2.text-success:focus,
a.articleBox-item .item-moreContent-text .h3.text-success:focus {
  color: #2b542c;
}
.articleBox-item .item-moreContent-text h1.text-info,
.articleBox-item .item-moreContent-text h2.text-info,
.articleBox-item .item-moreContent-text h3.text-info,
.articleBox-item .item-moreContent-text .h1.text-info,
.articleBox-item .item-moreContent-text .h2.text-info,
.articleBox-item .item-moreContent-text .h3.text-info {
  color: #31708f;
}
a.articleBox-item .item-moreContent-text h1.text-info:hover,
a.articleBox-item .item-moreContent-text h2.text-info:hover,
a.articleBox-item .item-moreContent-text h3.text-info:hover,
a.articleBox-item .item-moreContent-text .h1.text-info:hover,
a.articleBox-item .item-moreContent-text .h2.text-info:hover,
a.articleBox-item .item-moreContent-text .h3.text-info:hover,
a.articleBox-item .item-moreContent-text h1.text-info:focus,
a.articleBox-item .item-moreContent-text h2.text-info:focus,
a.articleBox-item .item-moreContent-text h3.text-info:focus,
a.articleBox-item .item-moreContent-text .h1.text-info:focus,
a.articleBox-item .item-moreContent-text .h2.text-info:focus,
a.articleBox-item .item-moreContent-text .h3.text-info:focus {
  color: #245269;
}
.articleBox-item .item-moreContent-text h1.text-warning,
.articleBox-item .item-moreContent-text h2.text-warning,
.articleBox-item .item-moreContent-text h3.text-warning,
.articleBox-item .item-moreContent-text .h1.text-warning,
.articleBox-item .item-moreContent-text .h2.text-warning,
.articleBox-item .item-moreContent-text .h3.text-warning {
  color: #8a6d3b;
}
a.articleBox-item .item-moreContent-text h1.text-warning:hover,
a.articleBox-item .item-moreContent-text h2.text-warning:hover,
a.articleBox-item .item-moreContent-text h3.text-warning:hover,
a.articleBox-item .item-moreContent-text .h1.text-warning:hover,
a.articleBox-item .item-moreContent-text .h2.text-warning:hover,
a.articleBox-item .item-moreContent-text .h3.text-warning:hover,
a.articleBox-item .item-moreContent-text h1.text-warning:focus,
a.articleBox-item .item-moreContent-text h2.text-warning:focus,
a.articleBox-item .item-moreContent-text h3.text-warning:focus,
a.articleBox-item .item-moreContent-text .h1.text-warning:focus,
a.articleBox-item .item-moreContent-text .h2.text-warning:focus,
a.articleBox-item .item-moreContent-text .h3.text-warning:focus {
  color: #66512c;
}
.articleBox-item .item-moreContent-text h1.text-danger,
.articleBox-item .item-moreContent-text h2.text-danger,
.articleBox-item .item-moreContent-text h3.text-danger,
.articleBox-item .item-moreContent-text .h1.text-danger,
.articleBox-item .item-moreContent-text .h2.text-danger,
.articleBox-item .item-moreContent-text .h3.text-danger {
  color: #ff0000;
}
a.articleBox-item .item-moreContent-text h1.text-danger:hover,
a.articleBox-item .item-moreContent-text h2.text-danger:hover,
a.articleBox-item .item-moreContent-text h3.text-danger:hover,
a.articleBox-item .item-moreContent-text .h1.text-danger:hover,
a.articleBox-item .item-moreContent-text .h2.text-danger:hover,
a.articleBox-item .item-moreContent-text .h3.text-danger:hover,
a.articleBox-item .item-moreContent-text h1.text-danger:focus,
a.articleBox-item .item-moreContent-text h2.text-danger:focus,
a.articleBox-item .item-moreContent-text h3.text-danger:focus,
a.articleBox-item .item-moreContent-text .h1.text-danger:focus,
a.articleBox-item .item-moreContent-text .h2.text-danger:focus,
a.articleBox-item .item-moreContent-text .h3.text-danger:focus {
  color: #cc0000;
}
.articleBox-item .item-moreContent-text h1.text-default,
.articleBox-item .item-moreContent-text h2.text-default,
.articleBox-item .item-moreContent-text h3.text-default,
.articleBox-item .item-moreContent-text .h1.text-default,
.articleBox-item .item-moreContent-text .h2.text-default,
.articleBox-item .item-moreContent-text .h3.text-default {
  color: #000000;
}
a.articleBox-item .item-moreContent-text h1.text-default:hover,
a.articleBox-item .item-moreContent-text h2.text-default:hover,
a.articleBox-item .item-moreContent-text h3.text-default:hover,
a.articleBox-item .item-moreContent-text .h1.text-default:hover,
a.articleBox-item .item-moreContent-text .h2.text-default:hover,
a.articleBox-item .item-moreContent-text .h3.text-default:hover,
a.articleBox-item .item-moreContent-text h1.text-default:focus,
a.articleBox-item .item-moreContent-text h2.text-default:focus,
a.articleBox-item .item-moreContent-text h3.text-default:focus,
a.articleBox-item .item-moreContent-text .h1.text-default:focus,
a.articleBox-item .item-moreContent-text .h2.text-default:focus,
a.articleBox-item .item-moreContent-text .h3.text-default:focus {
  color: #000000;
}
.articleBox-item .item-moreContent-text ul.list-styled li {
  list-style: none;
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 15px;
  padding-left: 70px;
  position: relative;
}
.articleBox-item .item-moreContent-text ul.list-styled li:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  background: url('../images/layout/list-styled.svg') no-repeat center;
  -webkit-background-size: 29px 29px;
     -moz-background-size: 29px;
          background-size: 29px;
  width: 29px;
  height: 28px;
}
.articleBox-item .item-moreContent-text ul.list-styled li:last-child {
  margin-bottom: 0;
}
.articleBox-item .item-moreContent-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0 -10px;
  padding: 0;
}
.articleBox-item .item-moreContent-list:before,
.articleBox-item .item-moreContent-list:after {
  content: " ";
  display: table;
}
.articleBox-item .item-moreContent-list:after {
  clear: both;
}
.articleBox-item .item-moreContent-list:before,
.articleBox-item .item-moreContent-list:after {
  content: " ";
  display: table;
}
.articleBox-item .item-moreContent-list:after {
  clear: both;
}
.articleBox-item .item-moreContent-list li {
  display: inline-block;
  float: left;
  padding: 0 10px 20px;
}
.articleBox-item .item-moreContent-list a {
  display: block;
  background: #000;
  position: relative;
}
.articleBox-item .item-moreContent-list a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #fff;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  z-index: 1;
}
.articleBox-item .item-moreContent-list a:after {
  content: '';
  width: 42px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  z-index: 1;
  background: url('../images/layout/zoom.svg') no-repeat center;
  -webkit-background-size: 34px 34px;
     -moz-background-size: 34px;
          background-size: 34px;
}
.articleBox-item .item-moreContent-list a:hover:before,
.articleBox-item .item-moreContent-list a:focus:before {
  width: 90%;
  height: 90%;
  opacity: 1;
}
.articleBox-item .item-moreContent-list a:hover:after,
.articleBox-item .item-moreContent-list a:focus:after {
  opacity: 1;
}
.articleBox-item .item-moreContent-list a:hover img,
.articleBox-item .item-moreContent-list a:focus img {
  opacity: 0.5;
}
.articleBox-item .item-moreContent-list img {
  width: 190px;
  height: 143px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.articleBox-item .item-moreContent .articleDetail-product .product-image {
  width: 180px;
  padding: 10px;
}
.articleBox-item .item-moreContent .articleDetail-product .product-info {
  padding: 15px;
}
.articleBox-body--search .articleBox-item {
  padding: 30px 0 30px 300px;
}
.articleBox-body--search .articleBox-item .item-image {
  top: 30px;
}
.articleBox-body--search .articleBox-item:first-child {
  padding-top: 0;
}
.articleBox-body--search .articleBox-item:first-child .item-image {
  top: 0;
}
.articleNavigation {
  position: absolute;
  top: 0;
  right: 0;
  width: 205px;
  background: #f3f8de;
  padding: 15px 0;
}
.articleNavigation-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.articleNavigation li.active a {
  font-weight: bold;
  color: #668800;
}
.articleNavigation a {
  font-size: 13px;
  line-height: 2.769;
  color: #000000;
  display: block;
  padding: 0 0 0 21px;
}
.articleNavigation a:hover,
.articleNavigation a:focus {
  background: #fcfff1;
  color: #668800;
  text-decoration: none;
}
.articleDetail {
  overflow: hidden;
  position: relative;
}
.articleDetail-share {
  position: absolute;
  right: -135px;
  top: 50px;
  width: 80px;
}
.articleDetail-share a {
  display: block;
  text-align: center;
}
.articleDetail-share a .icon {
  display: block;
  width: 40px;
  height: 40px;
  background: #3f67c0 url('../images/layout/facebook1.svg') no-repeat center;
  position: relative;
  margin: 0 auto;
  -webkit-border-radius: 100px;
     -moz-border-radius: 100px;
          border-radius: 100px;
}
.articleDetail-share a .text {
  display: block;
  color: #3f67c0;
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}
.articleDetail-share a:hover,
.articleDetail-share a:focus {
  text-decoration: none;
}
.articleDetail-share a:hover .icon,
.articleDetail-share a:focus .icon {
  background-color: #395dad;
}
.articleDetail-share a:hover .text,
.articleDetail-share a:focus .text {
  color: #395dad;
}
.articleDetail-image {
  width: 100%;
  height: auto;
}
.articleDetail-content {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.articleDetail-header {
  padding: 60px 0 25px;
  border-bottom: 1px solid #efefef;
}
.articleDetail-header .articleTags {
  margin: 0;
  padding: 0;
  float: left;
}
.articleDetail-header .articleTags .articleTag {
  float: left;
  display: inline-block;
  margin-right: 6px;
}
.articleDetail-header .articleTags .articleTag a,
.articleDetail-header .articleTags .articleTag span {
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  background: #cccccc;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 4px;
  color: #ffffff;
  display: block;
  text-decoration: none;
}
.articleDetail-header .articleTags .articleTag a:hover,
.articleDetail-header .articleTags .articleTag a:focus {
  text-decoration: none;
  opacity: 0.5;
}
.articleDetail-header .articleTags .articleTag--default a,
.articleDetail-header .articleTags .articleTag--default span {
  background: #aaaaaa;
}
.articleDetail-header .articleTags .articleTag--success a,
.articleDetail-header .articleTags .articleTag--success span {
  background: #77B200;
}
.articleDetail-header .articleTags .articleTag--danger a,
.articleDetail-header .articleTags .articleTag--danger span {
  background: #dc3522;
}
.articleDetail-header .articleTags .articleTag--info a,
.articleDetail-header .articleTags .articleTag--info span {
  background: #0077e7;
}
.articleDetail-header .articleTags .articleTag--primary a,
.articleDetail-header .articleTags .articleTag--primary span {
  background: #95c11f;
}
.articleDetail-header .articleTags .articleTag--warning a,
.articleDetail-header .articleTags .articleTag--warning span {
  background: #ffa500;
}
.articleDetail-header .item-info {
  margin-bottom: 32px;
}
.articleDetail-header .item-info:before,
.articleDetail-header .item-info:after {
  content: " ";
  display: table;
}
.articleDetail-header .item-info:after {
  clear: both;
}
.articleDetail-header .item-info:before,
.articleDetail-header .item-info:after {
  content: " ";
  display: table;
}
.articleDetail-header .item-info:after {
  clear: both;
}
.articleDetail-header .item-date {
  font-size: 12px;
  color: #666666;
  line-height: 1;
  padding: 4px;
  margin-left: 7px;
  font-weight: 600;
  float: left;
}
.articleDetail-header .item-title {
  font-size: 30px;
  color: #292929;
  font-weight: bold;
  line-height: 1.182;
  margin: 0;
  padding: 0;
}
.articleDetail-body {
  padding-top: 40px;
  padding-bottom: 150px;
  line-height: 1.75;
  font-size: 16px;
}
.articleDetail-body p {
  color: #333333;
}
.articleDetail-body p strong {
  font-weight: 500;
  color: #000;
}
.articleDetail-body h1,
.articleDetail-body h2,
.articleDetail-body h3 {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  line-height: 1.556;
}
.articleDetail-text {
  margin-bottom: 65px;
}
.articleDetail-text h1,
.articleDetail-text h2,
.articleDetail-text h3,
.articleDetail-text .h1,
.articleDetail-text .h2,
.articleDetail-text .h3 {
  margin-bottom: 28px;
  margin-top: 50px;
}
.articleDetail-text h1.text-primary,
.articleDetail-text h2.text-primary,
.articleDetail-text h3.text-primary,
.articleDetail-text .h1.text-primary,
.articleDetail-text .h2.text-primary,
.articleDetail-text .h3.text-primary {
  color: #95c11f;
}
a.articleDetail-text h1.text-primary:hover,
a.articleDetail-text h2.text-primary:hover,
a.articleDetail-text h3.text-primary:hover,
a.articleDetail-text .h1.text-primary:hover,
a.articleDetail-text .h2.text-primary:hover,
a.articleDetail-text .h3.text-primary:hover,
a.articleDetail-text h1.text-primary:focus,
a.articleDetail-text h2.text-primary:focus,
a.articleDetail-text h3.text-primary:focus,
a.articleDetail-text .h1.text-primary:focus,
a.articleDetail-text .h2.text-primary:focus,
a.articleDetail-text .h3.text-primary:focus {
  color: #739518;
}
.articleDetail-text h1.text-success,
.articleDetail-text h2.text-success,
.articleDetail-text h3.text-success,
.articleDetail-text .h1.text-success,
.articleDetail-text .h2.text-success,
.articleDetail-text .h3.text-success {
  color: #3c763d;
}
a.articleDetail-text h1.text-success:hover,
a.articleDetail-text h2.text-success:hover,
a.articleDetail-text h3.text-success:hover,
a.articleDetail-text .h1.text-success:hover,
a.articleDetail-text .h2.text-success:hover,
a.articleDetail-text .h3.text-success:hover,
a.articleDetail-text h1.text-success:focus,
a.articleDetail-text h2.text-success:focus,
a.articleDetail-text h3.text-success:focus,
a.articleDetail-text .h1.text-success:focus,
a.articleDetail-text .h2.text-success:focus,
a.articleDetail-text .h3.text-success:focus {
  color: #2b542c;
}
.articleDetail-text h1.text-info,
.articleDetail-text h2.text-info,
.articleDetail-text h3.text-info,
.articleDetail-text .h1.text-info,
.articleDetail-text .h2.text-info,
.articleDetail-text .h3.text-info {
  color: #31708f;
}
a.articleDetail-text h1.text-info:hover,
a.articleDetail-text h2.text-info:hover,
a.articleDetail-text h3.text-info:hover,
a.articleDetail-text .h1.text-info:hover,
a.articleDetail-text .h2.text-info:hover,
a.articleDetail-text .h3.text-info:hover,
a.articleDetail-text h1.text-info:focus,
a.articleDetail-text h2.text-info:focus,
a.articleDetail-text h3.text-info:focus,
a.articleDetail-text .h1.text-info:focus,
a.articleDetail-text .h2.text-info:focus,
a.articleDetail-text .h3.text-info:focus {
  color: #245269;
}
.articleDetail-text h1.text-warning,
.articleDetail-text h2.text-warning,
.articleDetail-text h3.text-warning,
.articleDetail-text .h1.text-warning,
.articleDetail-text .h2.text-warning,
.articleDetail-text .h3.text-warning {
  color: #8a6d3b;
}
a.articleDetail-text h1.text-warning:hover,
a.articleDetail-text h2.text-warning:hover,
a.articleDetail-text h3.text-warning:hover,
a.articleDetail-text .h1.text-warning:hover,
a.articleDetail-text .h2.text-warning:hover,
a.articleDetail-text .h3.text-warning:hover,
a.articleDetail-text h1.text-warning:focus,
a.articleDetail-text h2.text-warning:focus,
a.articleDetail-text h3.text-warning:focus,
a.articleDetail-text .h1.text-warning:focus,
a.articleDetail-text .h2.text-warning:focus,
a.articleDetail-text .h3.text-warning:focus {
  color: #66512c;
}
.articleDetail-text h1.text-danger,
.articleDetail-text h2.text-danger,
.articleDetail-text h3.text-danger,
.articleDetail-text .h1.text-danger,
.articleDetail-text .h2.text-danger,
.articleDetail-text .h3.text-danger {
  color: #ff0000;
}
a.articleDetail-text h1.text-danger:hover,
a.articleDetail-text h2.text-danger:hover,
a.articleDetail-text h3.text-danger:hover,
a.articleDetail-text .h1.text-danger:hover,
a.articleDetail-text .h2.text-danger:hover,
a.articleDetail-text .h3.text-danger:hover,
a.articleDetail-text h1.text-danger:focus,
a.articleDetail-text h2.text-danger:focus,
a.articleDetail-text h3.text-danger:focus,
a.articleDetail-text .h1.text-danger:focus,
a.articleDetail-text .h2.text-danger:focus,
a.articleDetail-text .h3.text-danger:focus {
  color: #cc0000;
}
.articleDetail-text h1.text-default,
.articleDetail-text h2.text-default,
.articleDetail-text h3.text-default,
.articleDetail-text .h1.text-default,
.articleDetail-text .h2.text-default,
.articleDetail-text .h3.text-default {
  color: #000000;
}
a.articleDetail-text h1.text-default:hover,
a.articleDetail-text h2.text-default:hover,
a.articleDetail-text h3.text-default:hover,
a.articleDetail-text .h1.text-default:hover,
a.articleDetail-text .h2.text-default:hover,
a.articleDetail-text .h3.text-default:hover,
a.articleDetail-text h1.text-default:focus,
a.articleDetail-text h2.text-default:focus,
a.articleDetail-text h3.text-default:focus,
a.articleDetail-text .h1.text-default:focus,
a.articleDetail-text .h2.text-default:focus,
a.articleDetail-text .h3.text-default:focus {
  color: #000000;
}
.articleDetail-text h1,
.articleDetail-text .h1 {
  font-size: 30px;
  color: #292929;
  font-weight: bold;
  line-height: 1.182;
}
.articleDetail-text h2,
.articleDetail-text .h2 {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 1.556;
}
.articleDetail-text h3,
.articleDetail-text .h3 {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  line-height: 1.75;
}
.articleDetail-text ul.list-styled li {
  list-style: none;
  font-size: 16px;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 15px;
  padding-left: 70px;
  position: relative;
}
.articleDetail-text ul.list-styled li:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  background: url('../images/layout/list-styled.svg') no-repeat center;
  -webkit-background-size: 29px 29px;
     -moz-background-size: 29px;
          background-size: 29px;
  width: 29px;
  height: 28px;
}
.articleDetail-text ul.list-styled li:last-child {
  margin-bottom: 0;
}
.articleDetail-text p {
  margin: 0 0 28px;
}
.articleDetail-text a {
  color: #95c11f;
  font-weight: 500;
  text-decoration: underline;
}
.articleDetail-text a:hover,
.articleDetail-text a:focus {
  text-decoration: none;
}
.articleDetail .articleDetail-text > h2:first-child {
  margin-top: 0;
}
.articleDetail .articleDetail-text > h3:first-child {
  margin-top: 0;
}
.articleDetail-product {
  border: 1px solid #efefef;
  display: table;
  margin-bottom: 70px;
}
.articleDetail-product:before,
.articleDetail-product:after {
  content: " ";
  display: table;
}
.articleDetail-product:after {
  clear: both;
}
.articleDetail-product:before,
.articleDetail-product:after {
  content: " ";
  display: table;
}
.articleDetail-product:after {
  clear: both;
}
.articleDetail-product .product-image {
  float: left;
  width: 280px;
  display: table-cell;
  padding: 20px;
}
.articleDetail-product .product-image img {
  width: 100%;
  height: auto;
}
.articleDetail-product .product-info {
  width: 518px;
  padding-left: 20px;
  padding-right: 40px;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.articleDetail-product .product-info-tags {
  margin: 0 0 15px;
  padding: 0;
}
.articleDetail-product .product-info-tags:before,
.articleDetail-product .product-info-tags:after {
  content: " ";
  display: table;
}
.articleDetail-product .product-info-tags:after {
  clear: both;
}
.articleDetail-product .product-info-tags:before,
.articleDetail-product .product-info-tags:after {
  content: " ";
  display: table;
}
.articleDetail-product .product-info-tags:after {
  clear: both;
}
.articleDetail-product .product-info-tag {
  margin-right: 6px;
  float: left;
  display: inline-block;
}
.articleDetail-product .product-info-tag a,
.articleDetail-product .product-info-tag span {
  font-size: 12px;
  color: #ffffff;
  font-weight: bold;
  background: #cccccc;
  line-height: 1;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  padding: 4px 10px;
}
.articleDetail-product .product-info-tag a:hover,
.articleDetail-product .product-info-tag a:focus {
  text-decoration: none;
  opacity: 0.5;
}
.articleDetail-product .product-info-tag--default a,
.articleDetail-product .product-info-tag--default span {
  background: #cccccc;
}
.articleDetail-product .product-info-tag--success a,
.articleDetail-product .product-info-tag--success span {
  background: #77B200;
}
.articleDetail-product .product-info-tag--danger a,
.articleDetail-product .product-info-tag--danger span {
  background: #dc3522;
}
.articleDetail-product .product-info-tag--info a,
.articleDetail-product .product-info-tag--info span {
  background: #0077e7;
}
.articleDetail-product .product-info-tag--primary a,
.articleDetail-product .product-info-tag--primary span {
  background: #95c11f;
}
.articleDetail-product .product-info-tag--warning a,
.articleDetail-product .product-info-tag--warning span {
  background: #ffa500;
}
.articleDetail-product .product-info-title {
  font-size: 18px;
  color: #000000;
  line-height: 1.333;
  margin: 0 0 10px;
}
.articleDetail-product .product-info-title a {
  color: #000;
  text-decoration: none;
}
.articleDetail-product .product-info-title a:hover,
.articleDetail-product .product-info-title a:focus {
  text-decoration: underline;
  color: #95c11f;
}
.articleDetail-product .product-info-stock {
  font-size: 14px;
  text-decoration: underline;
  line-height: 1.286;
}
.articleDetail-product .product-info-stock.stock-warning {
  color: #ffa500;
}
.articleDetail-product .product-info-stock.stock-success {
  color: #95c11f;
}
.articleDetail-product .product-info-stock.stock-danger {
  color: #ff0000;
}
.articleDetail-product .product-info-stock.stock-info {
  color: #0077e7;
}
.articleDetail-product .product-info-footer {
  float: right;
  padding-top: 35px;
}
.articleDetail-product .product-info-footer:before,
.articleDetail-product .product-info-footer:after {
  content: " ";
  display: table;
}
.articleDetail-product .product-info-footer:after {
  clear: both;
}
.articleDetail-product .product-info-footer:before,
.articleDetail-product .product-info-footer:after {
  content: " ";
  display: table;
}
.articleDetail-product .product-info-footer:after {
  clear: both;
}
.articleDetail-product .product-info-footer .btn {
  float: left;
  height: 33px;
  line-height: 33px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  margin-left: 40px;
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
  text-align: left;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
  padding: 0 20px 0 50px;
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #95c11f 100%);
  position: relative;
}
.articleDetail-product .product-info-footer .btn:after {
  content: '';
  display: block;
  width: 21px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: 20px;
  background: url('../images/layout/buy.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.articleDetail-product .product-info-footer .btn:hover,
.articleDetail-product .product-info-footer .btn:focus {
  background-color: #669900;
  background-image: -moz-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -webkit-linear-gradient(90deg, #669900 0%, #669900 100%);
  background-image: -ms-linear-gradient(90deg, #669900 0%, #669900 100%);
}
.articleDetail-product .product-info-price {
  float: left;
}
.articleDetail-product .product-info-price .price,
.articleDetail-product .product-info-price .old {
  float: left;
  line-height: 33px;
}
.articleDetail-product .product-info-price .old {
  font-size: 14px;
  color: #999999;
  margin-right: 20px;
  text-decoration: line-through;
}
.articleDetail-product .product-info-price .price {
  font-size: 24px;
  font-weight: bold;
}
.articleDetail-product .product-info-price .price.text-danger {
  color: #f20d0d;
}
.articleDetail-gallery {
  margin-bottom: 70px;
}
.articleDetail-gallery-title {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.556;
}
.articleDetail-gallery-text {
  padding-top: 25px;
  margin-bottom: -10px;
}
.articleDetail-gallery-text p {
  font-size: 16px;
  color: #333333;
  line-height: 1.75;
}
.articleDetail-gallery-content {
  padding-top: 35px;
}
.articleDetail-gallery-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0 -10px -20px;
  padding: 0;
}
.articleDetail-gallery-list:before,
.articleDetail-gallery-list:after {
  content: " ";
  display: table;
}
.articleDetail-gallery-list:after {
  clear: both;
}
.articleDetail-gallery-list:before,
.articleDetail-gallery-list:after {
  content: " ";
  display: table;
}
.articleDetail-gallery-list:after {
  clear: both;
}
.articleDetail-gallery-list li {
  display: inline-block;
  float: left;
  padding: 0 10px 20px;
}
.articleDetail-gallery-list a {
  display: block;
  background: #000;
  position: relative;
}
.articleDetail-gallery-list a:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #fff;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  z-index: 1;
}
.articleDetail-gallery-list a:after {
  content: '';
  width: 42px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  z-index: 1;
  background: url('../images/layout/zoom.svg') no-repeat center;
  -webkit-background-size: 34px 34px;
     -moz-background-size: 34px;
          background-size: 34px;
}
.articleDetail-gallery-list a:hover:before,
.articleDetail-gallery-list a:focus:before {
  width: 90%;
  height: 90%;
  opacity: 1;
}
.articleDetail-gallery-list a:hover:after,
.articleDetail-gallery-list a:focus:after {
  opacity: 1;
}
.articleDetail-gallery-list a:hover img,
.articleDetail-gallery-list a:focus img {
  opacity: 0.5;
}
.articleDetail-gallery-list img {
  width: 253px;
  height: 185px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.articleDetail-video {
  margin-bottom: 70px;
}
.articleDetail-video-title {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.556;
}
.articleDetail-video-text {
  padding-top: 25px;
  margin-bottom: -10px;
}
.articleDetail-video-text p {
  font-size: 16px;
  color: #333333;
  line-height: 1.75;
}
.articleDetail-video-content {
  padding-top: 35px;
}
.rating {
  height: 20px;
}
.rating .rating-item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: inline-block;
  max-width: none;
  margin-bottom: 0;
  font-weight: normal;
  font-size: inherit;
  color: inherit;
  line-height: 1;
}
.rating .rating-item .rating-icon {
  float: left;
  margin-right: 4px;
  width: 21px;
  height: 20px;
}
.rating--form .rating-item {
  cursor: pointer;
}
.rating--form .rating-item input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.rating--form .rating-item .rating-icon .fill {
  opacity: 0;
  fill: transparent;
}
.rating--form .rating-item:last-child {
  position: static;
}
.rating--form .rating-item:last-child .rating-icon .fill {
  opacity: 1;
  fill: #ccc;
}
.rating--form .rating-item:nth-child(1) {
  z-index: 5;
}
.rating--form .rating-item:nth-child(2) {
  z-index: 4;
}
.rating--form .rating-item:nth-child(3) {
  z-index: 3;
}
.rating--form .rating-item:nth-child(4) {
  z-index: 2;
}
.rating--form .rating-item:nth-child(5) {
  z-index: 1;
}
.rating--form:not(:hover) .rating-item input:checked ~ .rating-icon .fill,
.rating--form:hover .rating-item:hover input ~ .rating-icon .fill {
  opacity: 1;
  fill: #ffdd00;
}
.rating--form .rating-item input:focus:not(:checked) ~ .rating-icon:last-child .fill {
  opacity: 1;
  fill: #cccccc;
}
.rating--static .rating-item {
  position: static;
}
.rating--static .rating-item .rating-icon .fill {
  fill: #ccc;
}
.rating--static .rating-item--1 .rating-icon:nth-child(1) .fill {
  fill: #ffdd00;
}
.rating--static .rating-item--2 .rating-icon:nth-child(1) .fill,
.rating--static .rating-item--2 .rating-icon:nth-child(2) .fill {
  fill: #ffdd00;
}
.rating--static .rating-item--3 .rating-icon:nth-child(1) .fill,
.rating--static .rating-item--3 .rating-icon:nth-child(2) .fill,
.rating--static .rating-item--3 .rating-icon:nth-child(3) .fill {
  fill: #ffdd00;
}
.rating--static .rating-item--4 .rating-icon:nth-child(1) .fill,
.rating--static .rating-item--4 .rating-icon:nth-child(2) .fill,
.rating--static .rating-item--4 .rating-icon:nth-child(3) .fill,
.rating--static .rating-item--4 .rating-icon:nth-child(4) .fill {
  fill: #ffdd00;
}
.rating--static .rating-item--5 .rating-icon:nth-child(1) .fill,
.rating--static .rating-item--5 .rating-icon:nth-child(2) .fill,
.rating--static .rating-item--5 .rating-icon:nth-child(3) .fill,
.rating--static .rating-item--5 .rating-icon:nth-child(4) .fill,
.rating--static .rating-item--5 .rating-icon:nth-child(5) .fill {
  fill: #ffdd00;
}
.rating--md {
  height: 16px;
}
.rating--md .rating-item .rating-icon {
  width: 17px;
  height: 16px;
  margin-right: 3px;
}
.rating--sm {
  height: 12px;
}
.rating--sm .rating-item .rating-icon {
  width: 13px;
  height: 12px;
  margin-right: 3px;
}
.rating--xs {
  height: 8px;
}
.rating--xs .rating-item .rating-icon {
  width: 9px;
  height: 8px;
  margin-right: 1px;
}
.productDetail {
  position: relative;
}
.productDetail-categories {
  margin-bottom: -10px;
}
.productDetail-categories:before,
.productDetail-categories:after {
  content: " ";
  display: table;
}
.productDetail-categories:after {
  clear: both;
}
.productDetail-categories:before,
.productDetail-categories:after {
  content: " ";
  display: table;
}
.productDetail-categories:after {
  clear: both;
}
.productDetail-categories-item {
  font-size: 12px;
  border: 1px solid #E5E5E5;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}
.productDetail-categories-item a,
.productDetail-categories-item span {
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  color: #95c11f;
  padding: 8px 10px;
}
.productDetail-categories-item a:nth-child(2),
.productDetail-categories-item span:nth-child(2) {
  color: #999999;
  padding: 8px 10px;
}
.productDetail-categories-item a:hover,
.productDetail-categories-item a:focus {
  color: #669900;
}
.productDetail-categories-item a:nth-child(2):hover,
.productDetail-categories-item a:nth-child(2):focus {
  color: #000;
}
.productDetail-categories a.productDetail-categories-item {
  text-decoration: none;
  color: #000;
}
.productDetail-categories a.productDetail-categories-item:hover,
.productDetail-categories a.productDetail-categories-item:focus {
  text-decoration: none;
}
.productDetail-categories a.productDetail-categories-item:hover span,
.productDetail-categories a.productDetail-categories-item:focus span {
  color: #669900;
}
.productDetail-categories a.productDetail-categories-item:hover span:nth-child(2),
.productDetail-categories a.productDetail-categories-item:focus span:nth-child(2) {
  color: #000;
}
.productDetail-brand {
  position: absolute;
  top: 0;
  right: 0;
}
.productDetail-brand img,
.productDetail-brand svg {
  height: 30px;
  width: auto;
}
.productDetail-title {
  margin: 28px 0 0;
  font-size: 36px;
  color: #000;
  font-weight: bold;
  line-height: 41px;
}
.productDetail-wrap {
  margin-top: 40px;
}
.productDetail-wrap:before,
.productDetail-wrap:after {
  content: " ";
  display: table;
}
.productDetail-wrap:after {
  clear: both;
}
.productDetail-wrap:before,
.productDetail-wrap:after {
  content: " ";
  display: table;
}
.productDetail-wrap:after {
  clear: both;
}
.productDetail-gallery {
  float: left;
  width: 350px;
  outline: 1px solid #fff;
}
.productDetail-gallery__big {
  min-height: 350px;
  position: relative;
}
.productDetail-gallery__big img {
  width: 100%;
  height: auto;
}
.productDetail-gallery__big-open {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background: url('../images/layout/fullscreen.svg') no-repeat center;
  -webkit-background-size: 25px 25px;
     -moz-background-size: 25px;
          background-size: 25px;
  opacity: 0.5;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  z-index: 5;
}
.productDetail-gallery__big-open:focus {
  opacity: 0.8;
}
.productDetail-gallery__big-open:hover {
  opacity: 1;
}
.productDetail-gallery__carousel {
  height: 80px;
  padding-right: 30px;
  padding-left: 20px;
  position: relative;
  margin-top: 20px;
}
.productDetail-gallery__carousel-in:not(.slick-initialized) {
  opacity: 0;
}
.productDetail-gallery__carousel-item {
  width: 80px;
  height: 80px;
  margin: 0 10px;
}
.productDetail-gallery__carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}
.productDetail-gallery__carousel-item img.slick-loading {
  opacity: 0;
}
.productDetail-gallery__carousel-item a {
  width: 80px;
  height: 80px;
  display: block;
  border: 1px solid #E3E3E3;
  -webkit-transition: border-color 250ms ease-in-out;
  -o-transition: border-color 250ms ease-in-out;
  -moz-transition: border-color 250ms ease-in-out;
  transition: border-color 250ms ease-in-out;
}
.productDetail-gallery__carousel-item a:hover,
.productDetail-gallery__carousel-item a:focus {
  border-color: #95c11f;
}
.productDetail-gallery__carousel-item--360 a {
  background: url('../images/layout/360.svg') no-repeat center;
  -webkit-background-size: 50px 50px;
     -moz-background-size: 50px;
          background-size: 50px;
}
.productDetail-gallery__carousel-prev,
.productDetail-gallery__carousel-next {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  width: 20px;
  height: 80px;
  background: #fff;
}
.productDetail-gallery__carousel-prev svg,
.productDetail-gallery__carousel-next svg {
  width: 11px;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.productDetail-gallery__carousel-prev svg path,
.productDetail-gallery__carousel-next svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-gallery__carousel-prev:hover svg path,
.productDetail-gallery__carousel-next:hover svg path,
.productDetail-gallery__carousel-prev:focus svg path,
.productDetail-gallery__carousel-next:focus svg path {
  fill: #95c11f;
}
.productDetail-gallery__carousel-prev {
  left: 0;
}
.productDetail-gallery__carousel-prev svg {
  left: 0;
}
.productDetail-gallery__carousel-next {
  right: 0;
  width: 30px;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.productDetail-gallery__carousel-next svg {
  right: 10px;
}
.productDetail-info {
  float: right;
  width: 730px;
}
.productDetail-tags {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  text-align: left;
}
.productDetail-tags:before,
.productDetail-tags:after {
  content: " ";
  display: table;
}
.productDetail-tags:after {
  clear: both;
}
.productDetail-tags:before,
.productDetail-tags:after {
  content: " ";
  display: table;
}
.productDetail-tags:after {
  clear: both;
}
.productDetail-tags li {
  display: block;
  float: left;
  margin-right: 10px;
}
.productDetail-tags li a,
.productDetail-tags li span {
  display: block;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  background: #999;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  line-height: 30px;
  padding: 0 15px;
}
.productDetail-tags li a.item--default,
.productDetail-tags li span.item--default {
  background: #cccccc;
}
.productDetail-tags li a.item--primary,
.productDetail-tags li span.item--primary {
  background: #95c11f;
}
.productDetail-tags li a.item--info,
.productDetail-tags li span.item--info {
  background: #0077e7;
}
.productDetail-tags li a.item--warning,
.productDetail-tags li span.item--warning {
  background: #ffa500;
}
.productDetail-tags li a.item--danger,
.productDetail-tags li span.item--danger {
  background: #ff0000;
}
.productDetail-tags li a:hover,
.productDetail-tags li a:focus {
  text-decoration: none;
}
.productDetail-tags li a.item--default:hover,
.productDetail-tags li a.item--default:focus {
  background: #999;
}
.productDetail-tags li a.item--primary:hover,
.productDetail-tags li a.item--primary:focus {
  background: #669900;
}
.productDetail-tags li a.item--info:hover,
.productDetail-tags li a.item--info:focus {
  background: #005db4;
}
.productDetail-tags li a.item--warning:hover,
.productDetail-tags li a.item--warning:focus {
  background: #cc8400;
}
.productDetail-tags li a.item--danger:hover,
.productDetail-tags li a.item--danger:focus {
  background: #cc0000;
}
.productDetail-ratingShare {
  margin-top: 20px;
}
.productDetail-ratingShare:before,
.productDetail-ratingShare:after {
  content: " ";
  display: table;
}
.productDetail-ratingShare:after {
  clear: both;
}
.productDetail-ratingShare:before,
.productDetail-ratingShare:after {
  content: " ";
  display: table;
}
.productDetail-ratingShare:after {
  clear: both;
}
.productDetail-rating {
  margin-top: 5px;
  float: left;
}
.productDetail-rating .rating {
  float: left;
}
.productDetail-rating .rating-info {
  float: left;
  font-size: 13px;
  color: #666666;
  margin-left: 20px;
  line-height: 16px;
}
.productDetail-share {
  float: right;
}
.productDetail-share:before,
.productDetail-share:after {
  content: " ";
  display: table;
}
.productDetail-share:after {
  clear: both;
}
.productDetail-share:before,
.productDetail-share:after {
  content: " ";
  display: table;
}
.productDetail-share:after {
  clear: both;
}
.productDetail-share a {
  position: relative;
  display: block;
  padding: 5px 10px 6px 30px;
  font-weight: 700;
  font-size: 10px;
  line-height: 13px;
  color: #FFFFFF;
  text-transform: uppercase;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#19AEFE), to(#0062E0));
  background-image: -webkit-linear-gradient(top, #19AEFE 0%, #0062E0 100%);
  background-image: -moz-linear-gradient(top, #19AEFE 0%, #0062E0 100%);
  background-image: -o-linear-gradient(top, #19AEFE 0%, #0062E0 100%);
  background-image: linear-gradient(180deg, #19AEFE 0%, #0062E0 100%);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.productDetail-share a svg {
  position: absolute;
  left: 10px;
  bottom: 0;
}
.productDetail-share a:hover,
.productDetail-share a:focus {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0062E0), to(#0062E0));
  background-image: -webkit-linear-gradient(top, #0062E0 0%, #0062E0 100%);
  background-image: -moz-linear-gradient(top, #0062E0 0%, #0062E0 100%);
  background-image: -o-linear-gradient(top, #0062E0 0%, #0062E0 100%);
  background-image: linear-gradient(180deg, #0062E0 0%, #0062E0 100%);
  text-decoration: none;
}
.productDetail-shortDescription {
  margin-top: 20px;
}
.productDetail-shortDescription p {
  margin: 0;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.productDetail-shortDescription a.more {
  display: inline;
}
.productDetail-gifts {
  margin-top: 25px;
}
.productDetail-gifts:before,
.productDetail-gifts:after {
  content: " ";
  display: table;
}
.productDetail-gifts:after {
  clear: both;
}
.productDetail-gifts:before,
.productDetail-gifts:after {
  content: " ";
  display: table;
}
.productDetail-gifts:after {
  clear: both;
}
.productDetail-gifts-item {
  display: block;
  position: relative;
  border: 1px solid #CAE08F;
  height: 45px;
  margin-bottom: 15px;
  padding-left: 15px;
  background: #F9FFE9;
}
.productDetail-gifts-item:before,
.productDetail-gifts-item:after {
  content: " ";
  display: table;
}
.productDetail-gifts-item:after {
  clear: both;
}
.productDetail-gifts-item:before,
.productDetail-gifts-item:after {
  content: " ";
  display: table;
}
.productDetail-gifts-item:after {
  clear: both;
}
.productDetail-gifts-item-icon {
  display: block;
  width: 22px;
  height: auto;
  float: left;
  margin-top: 10px;
}
.productDetail-gifts-item-icon path {
  fill: #D7EAA2;
}
.productDetail-gifts-item-title {
  float: left;
  display: block;
  line-height: 45px;
  margin-left: 10px;
  color: #95c11f;
  font-size: 13px;
  font-weight: 500;
}
.productDetail-gifts-item-productImage {
  float: left;
  display: block;
  margin-left: 20px;
  width: 31px;
  height: auto;
  margin-top: 6px;
}
.productDetail-gifts-item-productTitle {
  float: left;
  display: block;
  line-height: 45px;
  margin-left: 10px;
  color: #000;
  font-size: 13px;
}
a.productDetail-gifts-item:hover .productDetail-gifts-item-productTitle,
a.productDetail-gifts-item:focus .productDetail-gifts-item-productTitle {
  text-decoration: none;
}
.productDetail-gifts-item:last-child {
  margin-bottom: 0;
}
.productDetail-quantityDiscounts {
  display: block;
  border: 1px solid #CAE08F;
  background: #F9FFE9;
}
.productDetail-quantityDiscounts-item {
  position: relative;
  display: block;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  padding-left: 47px;
}
.productDetail-quantityDiscounts-item:before,
.productDetail-quantityDiscounts-item:after {
  content: " ";
  display: table;
}
.productDetail-quantityDiscounts-item:after {
  clear: both;
}
.productDetail-quantityDiscounts-item:before,
.productDetail-quantityDiscounts-item:after {
  content: " ";
  display: table;
}
.productDetail-quantityDiscounts-item:after {
  clear: both;
}
.productDetail-quantityDiscounts-item strong {
  font-weight: 500;
}
.productDetail-quantityDiscounts-item .icon {
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  font-size: 24px;
  color: #D7EAA2;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.productDetail-variants {
  margin-top: 20px;
}
.productDetail-variants-item {
  height: 70px;
  border-bottom: 1px solid #e5e5e5;
}
.productDetail-variants-item:before,
.productDetail-variants-item:after {
  content: " ";
  display: table;
}
.productDetail-variants-item:after {
  clear: both;
}
.productDetail-variants-item:before,
.productDetail-variants-item:after {
  content: " ";
  display: table;
}
.productDetail-variants-item:after {
  clear: both;
}
.productDetail-variants-item-productImage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 70px;
  float: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.productDetail-variants-item-productImage img {
  width: 50px;
  height: 50px;
}
.productDetail-variants-item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 70px;
  width: 154px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-left: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 17px;
  float: left;
}
.productDetail-variants-item-stockInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 70px;
  width: 179px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  float: left;
}
.productDetail-variants-item-stockInfo .stock {
  display: block;
  font-size: 13px;
  color: #999999;
  line-height: 1;
  font-weight: 500;
}
.productDetail-variants-item-stockInfo .stock-default {
  color: #999999;
}
.productDetail-variants-item-stockInfo .stock-primary {
  color: #95c11f;
}
.productDetail-variants-item-stockInfo .stock-info {
  color: #0077e7;
}
.productDetail-variants-item-stockInfo .stock-warning {
  color: #ffa500;
}
.productDetail-variants-item-stockInfo .stock-danger {
  color: #ff0000;
}
.productDetail-variants-item-stockInfo .shops {
  display: block;
  font-size: 13px;
  color: #95c11f;
  line-height: 1;
  margin-top: 3px;
  position: relative;
}
.productDetail-variants-item-stockInfo .shops-default {
  color: #999999;
}
.productDetail-variants-item-stockInfo .shops-primary {
  color: #95c11f;
}
.productDetail-variants-item-stockInfo .shops-info {
  color: #0077e7;
}
.productDetail-variants-item-stockInfo .shops-warning {
  color: #ffa500;
}
.productDetail-variants-item-stockInfo .shops-danger {
  color: #ff0000;
}
.productDetail-variants-item-stockInfo .shops-more {
  text-decoration: underline;
}
.productDetail-variants-item-stockInfo .shops-more:hover,
.productDetail-variants-item-stockInfo .shops-more:focus {
  text-decoration: none;
}
.productDetail-variants-item-prices {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 70px;
  width: 85px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  float: left;
  text-align: right;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
}
.productDetail-variants-item-prices .old {
  display: block;
  font-size: 13px;
  color: #999999;
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 3px;
}
.productDetail-variants-item-prices .price {
  display: block;
  font-size: 18px;
  color: #f20d0d;
  font-weight: bold;
  line-height: 20px;
}
.productDetail-variants-item-quantity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  width: 72px;
  height: 70px;
  margin-left: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  float: left;
}
.productDetail-variants-item-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  height: 70px;
  width: 130px;
  float: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
}
.productDetail-variants-item-btn .button--full,
.productDetail-variants-item-btn .button--guard {
  width: 120px;
}
.productDetail-variants-item-btn .button-icon-right-cart {
  padding-left: 20px;
}
.productDetail-variants-item-btn .button-icon-right-cart i {
  right: 8px;
}
.productDetail-variants-item-btn .button-icon-right-bell {
  padding-left: 20px;
}
.productDetail-variants-item-btn .button-icon-right-bell i {
  right: 8px;
}
.productDetail-variants-item-btn .button-info:not(.button--guard) {
  width: 120px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.productDetail-infoLine:before,
.productDetail-infoLine:after {
  content: " ";
  display: table;
}
.productDetail-infoLine:after {
  clear: both;
}
.productDetail-infoLine:before,
.productDetail-infoLine:after {
  content: " ";
  display: table;
}
.productDetail-infoLine:after {
  clear: both;
}
.productDetail-infoLine-button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  float: left;
  margin-right: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 13px;
  color: #95C11F;
  text-decoration: none;
  line-height: 20px;
}
.productDetail-infoLine-button svg {
  position: absolute;
  top: 50%;
  left: 0;
  height: 16px;
  width: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.productDetail-infoLine-button svg path {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  fill: #999999;
}
.productDetail-infoLine-button:hover,
.productDetail-infoLine-button:focus {
  text-decoration: underline;
  color: #669900;
}
.productDetail-infoLine-button:hover svg path,
.productDetail-infoLine-button:focus svg path {
  fill: #666666;
}
.productDetail-infoLine-button--recommendation {
  margin-right: 0;
}
.productDetail-infoLine-button--recommendation svg {
  height: 18px;
}
.productDetail-infoLine-button--compare svg {
  height: 18px;
}
.productDetail-infoLine-remove {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  float: left;
  margin-right: 20px;
  margin-left: -15px;
  margin-top: 4px;
  position: relative;
  width: 14px;
  height: 14px;
}
.productDetail-infoLine-remove svg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 14px;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.productDetail-infoLine-remove svg path {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productDetail-infoLine-remove:hover svg path,
.productDetail-infoLine-remove:focus svg path {
  fill: #ff0000;
}
.productDetail-infoLine-points {
  float: right;
  text-align: right;
  font-size: 13px;
  color: #666666;
  line-height: 20px;
}
.productDetail-content {
  margin-top: 20px;
}
.productDetail-content:before,
.productDetail-content:after {
  content: " ";
  display: table;
}
.productDetail-content:after {
  clear: both;
}
.productDetail-content:before,
.productDetail-content:after {
  content: " ";
  display: table;
}
.productDetail-content:after {
  clear: both;
}
.productDetail-tabs {
  width: 856px;
  float: left;
}
.productDetail-tabs .tab-content-text {
  padding-top: 40px;
}
.productDetail-tabs .tab-content-text p {
  margin-bottom: 24px;
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.productDetail-tabs .tab-content-text p:last-child {
  margin-bottom: 0;
}
.productDetail-tabs .tab-content-text .tab-content-text--title,
p.productDetail-tabs .tab-content-text .tab-content-text--title {
  font-size: 24px;
  line-height: 27px;
  color: #000;
  font-weight: bold;
  margin: 0 0 24px;
  padding: 0;
}
.productDetail-tabs .tab-content-text .tab-content-text--bigger,
p.productDetail-tabs .tab-content-text .tab-content-text--bigger {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 28px;
}
.productDetail-tabs .tab-content-text strong {
  font-weight: 500;
}
.productDetail-tabs .tab-content-text-grid {
  padding-top: 40px;
  padding-left: 40px;
}
.productDetail-tabs .tab-content-text-grid .item {
  text-align: left;
  margin-bottom: 40px;
}
.productDetail-tabs .tab-content-text-grid .item:last-child {
  margin-bottom: 0;
}
.productDetail-tabs .tab-content-text-grid .item:before,
.productDetail-tabs .tab-content-text-grid .item:after {
  content: " ";
  display: table;
}
.productDetail-tabs .tab-content-text-grid .item:after {
  clear: both;
}
.productDetail-tabs .tab-content-text-grid .item:before,
.productDetail-tabs .tab-content-text-grid .item:after {
  content: " ";
  display: table;
}
.productDetail-tabs .tab-content-text-grid .item:after {
  clear: both;
}
.productDetail-tabs .tab-content-text-grid .item__image {
  display: inline-block;
  width: auto;
  height: auto;
}
.productDetail-tabs .tab-content-text-grid .item__content p {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  margin: 0 0 24px;
}
.productDetail-tabs .tab-content-text-grid .item__content p:last-child {
  margin-bottom: 0;
}
.productDetail-tabs .tab-content-text-grid .item .item__title,
p.productDetail-tabs .tab-content-text-grid .item .item__title {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  margin: 0 0 32px;
  padding: 0;
  position: relative;
  width: 100%;
}
.productDetail-tabs .tab-content-text-grid .item .item__title:after,
p.productDetail-tabs .tab-content-text-grid .item .item__title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 352px;
  height: 2px;
  background: #95c11f;
}
.productDetail-tabs .tab-content-text-grid .item--textRight .item__image {
  float: left;
  max-width: 425px;
}
.productDetail-tabs .tab-content-text-grid .item--textRight .item__content {
  width: 352px;
  float: right;
  padding-top: 35px;
}
.productDetail-tabs .tab-content-text-grid .item--textLeft .item__image {
  float: right;
  max-width: 425px;
}
.productDetail-tabs .tab-content-text-grid .item--textLeft .item__content {
  width: 352px;
  float: left;
  padding-top: 35px;
}
.productDetail-tabs .tab-content-text-grid .item--textCenter {
  text-align: center;
}
.productDetail-tabs .tab-content-questions {
  padding-top: 20px;
  padding-bottom: 40px;
}
.productDetail-tabs .tab-content-questions-form {
  padding: 40px;
  margin-top: 40px;
  background: #F8F8F8;
  border: 1px solid #CCC;
}
.productDetail-tabs .tab-content-questions-form-w50 {
  width: 50%;
}
.productDetail-tabs .tab-content-videos,
.productDetail-tabs .tab-content-reviews {
  padding-top: 40px;
}
.productDetail-tabs .tab-content-params {
  padding-top: 40px;
}
.productDetail-tabs .tab-content-params__title {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 23px;
}
.productDetail-related {
  width: 225px;
  float: right;
}
.productDetail-related-title {
  height: 60px;
  padding-top: 20px;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
}
.productDetail-recommended {
  margin-top: 60px;
}
.productDetail-recommended-title {
  padding-top: 20px;
  margin-bottom: 20px;
  line-height: 27px;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
.productDetail-recommended .productList-item {
  margin-bottom: 0;
}
.productDetail-unavailable {
  margin-top: 80px;
  padding-bottom: 60px;
}
.productDetail-unavailable-title {
  line-height: 27px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 0;
}
.productDetail-unavailable-subTitle {
  font-size: 16px;
  color: #999;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  margin-top: 11px;
}
.productDetail-unavailable-products {
  padding-top: 80px;
}
.productDetail-unavailable .productList-item {
  margin-top: 0;
}
a.productDetail-quantityDiscounts {
  position: relative;
  text-decoration: none;
  color: #000;
  padding-right: 50px;
}
a.productDetail-quantityDiscounts:before {
  content: "\64";
}
a.productDetail-quantityDiscounts:before {
  content: "\64";
}
a.productDetail-quantityDiscounts:before {
  position: absolute;
  top: 13px;
  right: 18px;
  pointer-events: none;
  font-size: 15px;
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #95c11f;
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
a.productDetail-quantityDiscounts:hover,
a.productDetail-quantityDiscounts:focus {
  text-decoration: none;
  color: #000;
}
a.productDetail-quantityDiscounts:not(.isOpen) {
  height: 45px;
  overflow: hidden;
}
a.productDetail-quantityDiscounts.isOpen:before {
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.contactBox_1__title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 27px;
}
.contactBox_1__name {
  font-size: 18px;
  color: #95C11F;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 30px;
}
.contactBox_1__address,
.contactBox_1__info,
.contactBox_1__other {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.contactBox_1__address-small,
.contactBox_1__info-small,
.contactBox_1__other-small {
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 6px;
}
.contactBox_1__address-normal,
.contactBox_1__info-normal,
.contactBox_1__other-normal {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  line-height: 28px;
}
.contactBox_1__address-normal a,
.contactBox_1__info-normal a,
.contactBox_1__other-normal a {
  color: #333333;
  text-decoration: none;
}
.contactBox_1__address-normal a:hover,
.contactBox_1__info-normal a:hover,
.contactBox_1__other-normal a:hover,
.contactBox_1__address-normal a:focus,
.contactBox_1__info-normal a:focus,
.contactBox_1__other-normal a:focus {
  color: #95c11f;
  text-decoration: underline;
}
.contactBox_1__info:before,
.contactBox_1__info:after {
  content: " ";
  display: table;
}
.contactBox_1__info:after {
  clear: both;
}
.contactBox_1__info:before,
.contactBox_1__info:after {
  content: " ";
  display: table;
}
.contactBox_1__info:after {
  clear: both;
}
.contactBox_1__info-ic {
  float: left;
  padding-right: 30px;
}
.contactBox_1__info-dic {
  float: left;
  padding-right: 30px;
}
.contactBox_1__info-vat {
  float: left;
}
.contactBox_1__info-vat-text {
  font-size: 14px;
  color: #666666;
  margin-top: 25px;
}
.contactBox_2__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #95c11f;
  margin: 40px 0 30px;
}
.contactBox_3__title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 27px;
}
.brandsList-title {
  font-size: 24px;
  color: #000;
  font-weight: bold;
  margin-bottom: 30px;
}
.brandsList-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row wrap;
}
.brandsList-list__item {
  width: 208px;
  margin: 0 10px 40px;
  text-align: center;
}
.brandsList-list__item-img {
  height: 80px;
  width: 100%;
  background: #F8F8F8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.brandsList-list__item-img img {
  width: auto;
  height: 30px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.brandsList-list__item-name {
  font-size: 14px;
  color: #95C11F;
  text-align: center;
  font-weight: 500;
  padding-top: 10px;
  line-height: 19px;
  display: block;
}
.brandsList-list__item:hover,
.brandsList-list__item:focus {
  text-decoration: none;
}
.brandsList-list__item:hover .brandsList-list__item-name,
.brandsList-list__item:focus .brandsList-list__item-name {
  color: #669900;
}
.brandsList-list__item:hover .brandsList-list__item-img img,
.brandsList-list__item:focus .brandsList-list__item-img img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.shopsList-small .shopsList__item {
  position: relative;
  display: block;
  background: #F8F8F8;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  -webkit-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
     -moz-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
          box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.shopsList-small .shopsList__item:before,
.shopsList-small .shopsList__item:after {
  content: " ";
  display: table;
}
.shopsList-small .shopsList__item:after {
  clear: both;
}
.shopsList-small .shopsList__item:before,
.shopsList-small .shopsList__item:after {
  content: " ";
  display: table;
}
.shopsList-small .shopsList__item:after {
  clear: both;
}
.shopsList-small .shopsList__item:last-child {
  margin-bottom: 0;
}
.shopsList-small .shopsList__item .status {
  position: absolute;
  top: 7px;
  right: 6px;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.shopsList-small .shopsList__item .status:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 8px;
  height: 8px;
  background: #ccc;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.shopsList-small .shopsList__item--open .status:after {
  background: #95c11f;
}
.shopsList-small .shopsList__item--closed .status:after {
  background: #ff0000;
}
.shopsList-small .shopsList__image {
  float: left;
  width: 128px;
  height: 88px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.shopsList-small .shopsList__info {
  float: left;
  margin-left: 20px;
  max-width: 200px;
}
.shopsList-small .shopsList__info-title {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 20px;
  margin: 8px 0 0;
}
.shopsList-small .shopsList__info-address {
  font-size: 12px;
  color: #666666;
  font-weight: 500;
  line-height: 16px;
  margin-top: 9px;
}
.shopsList-small .shopsList__openingHours {
  float: right;
  background: #FFFFFF;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding: 10px;
}
.shopsList-small .shopsList__openingHours-table {
  min-width: 229px;
}
.shopsList-small .shopsList__openingHours-table td,
.shopsList-small .shopsList__openingHours-table th {
  font-size: 10px;
  color: #999;
  font-weight: 500;
  line-height: 11px;
  height: 24px;
  vertical-align: middle;
}
.shopsList-small .shopsList__openingHours-table tr:not(:last-child) td,
.shopsList-small .shopsList__openingHours-table tr:not(:last-child) th {
  border-bottom: 1px solid #E2E2E2;
}
.shopsList-small .shopsList__openingHours-table th {
  padding-left: 10px;
  width: 65px;
}
.shopsList-small .shopsList__openingHours-table td {
  padding-right: 10px;
}
.shopsList-small .shopsList__openingHours-table td span {
  font-size: 14px;
}
.shopsList-small .shopsList__openingHours-table tr.today th,
.shopsList-small .shopsList__openingHours-table tr.today td {
  color: #000;
}
.shopsList-small .shopsList__item:hover,
.shopsList-small .shopsList__item:focus {
  background: #FFFFFF;
  -webkit-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0.1);
}
.shopsList-big .shopsList__item {
  position: relative;
  display: block;
  background: #F8F8F8;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
     -moz-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
          box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.shopsList-big .shopsList__item:before,
.shopsList-big .shopsList__item:after {
  content: " ";
  display: table;
}
.shopsList-big .shopsList__item:after {
  clear: both;
}
.shopsList-big .shopsList__item:before,
.shopsList-big .shopsList__item:after {
  content: " ";
  display: table;
}
.shopsList-big .shopsList__item:after {
  clear: both;
}
.shopsList-big .shopsList__item:last-child {
  margin-bottom: 0;
}
.shopsList-big .shopsList__item .status {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  background: #FFFFFF;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.shopsList-big .shopsList__item .status:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  background: #ccc;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.shopsList-big .shopsList__item--open .status:after {
  background: #95c11f;
}
.shopsList-big .shopsList__item--closed .status:after {
  background: #ff0000;
}
.shopsList-big .shopsList__item--go {
  background: transparent;
  border: 1px solid #E2E2E2;
}
.shopsList-big .shopsList__image {
  float: left;
  width: 224px;
  height: 152px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.shopsList-big .shopsList__info {
  float: left;
  margin-left: 53px;
}
.shopsList-big .shopsList__info-tags {
  display: block;
  margin-top: 5px;
}
.shopsList-big .shopsList__info-tags span {
  line-height: 21px;
  padding: 0 5px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  font-weight: bold;
  background: #ccc;
  font-size: 12px;
  color: #FFF;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 5px;
}
.shopsList-big .shopsList__info-tags span.tag-warning {
  background: #ffa500;
}
.shopsList-big .shopsList__info-tags span.tag-success {
  background: #77B200;
}
.shopsList-big .shopsList__info-tags span.tag-danger {
  background: #ff0000;
}
.shopsList-big .shopsList__info-tags span.tag-info {
  background: #0077e7;
}
.shopsList-big .shopsList__info-tags + .shopsList__info-title {
  margin-top: 7px;
}
.shopsList-big .shopsList__info-title {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 26px;
  margin: 18px 0 0;
}
.shopsList-big .shopsList__info-title--go {
  padding-right: 34px;
}
.shopsList-big .shopsList__info-title--go:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('../images/go.svg') no-repeat center;
}
.shopsList-big .shopsList__info-address {
  position: relative;
  font-size: 16px;
  color: #999;
  font-weight: 500;
  line-height: 28px;
  margin-top: 3px;
  padding-left: 22px;
}
.shopsList-big .shopsList__info-address:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 18px;
  background: url('../images/layout/pin.gray.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.shopsList-big .shopsList__info-button {
  margin-top: 23px;
  display: inline-block;
}
.shopsList-big .shopsList__openingHours {
  float: right;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding: 7px 20px;
}
.shopsList-big .shopsList__openingHours-table {
  min-width: 373px;
}
.shopsList-big .shopsList__openingHours-table td,
.shopsList-big .shopsList__openingHours-table th {
  font-size: 14px;
  color: #999;
  font-weight: 500;
  line-height: 20px;
  height: 45px;
  vertical-align: middle;
}
.shopsList-big .shopsList__openingHours-table tr:not(:last-child) td,
.shopsList-big .shopsList__openingHours-table tr:not(:last-child) th {
  border-bottom: 1px solid #E2E2E2;
}
.shopsList-big .shopsList__openingHours-table th {
  padding-left: 20px;
  width: 110px;
}
.shopsList-big .shopsList__openingHours-table td {
  padding-right: 20px;
}
.shopsList-big .shopsList__openingHours-table td span {
  font-size: 18px;
}
.shopsList-big .shopsList__openingHours-table tr.today th,
.shopsList-big .shopsList__openingHours-table tr.today td {
  color: #000;
}
.shopsList-big .shopsList__item:hover,
.shopsList-big .shopsList__item:focus {
  background: #FFFFFF;
  -webkit-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0.1);
}
.shopsList-big .shopsList__item:hover .shopsList__info-title,
.shopsList-big .shopsList__item:focus .shopsList__info-title {
  color: #95c11f;
}
.shopsList-big .shopsList__item:hover .shopsList__info-button,
.shopsList-big .shopsList__item:focus .shopsList__info-button {
  background: #669900;
  text-decoration: none;
  color: #ffffff;
}
.shopsList-small--search .shopsList__item .shopsList__info {
  max-width: 440px;
}
.shopsListBox__header-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 27px;
}
.shopsListBox__header-subTitle {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
  line-height: 26px;
}
.shopsListBox__header-subTitle p:last-child {
  margin-bottom: 0;
}
.shopsListBox__header-text {
  font-size: 14px;
  color: #333333;
  margin: 20px 0 0;
  line-height: 24px;
}
.shopsListBox__header-text p:last-child {
  margin-bottom: 0;
}
.shopsListBox__header--thin {
  width: 703px;
}
.shopsListBox__map {
  margin-top: 40px;
}
.shopsListBox__map-in {
  width: 100%;
  height: 350px;
}
.shopsListBox__map iframe {
  border: 0;
}
.shopsListBox__form {
  margin-top: 40px;
}
.shopsListBox__form:before,
.shopsListBox__form:after {
  content: " ";
  display: table;
}
.shopsListBox__form:after {
  clear: both;
}
.shopsListBox__form:before,
.shopsListBox__form:after {
  content: " ";
  display: table;
}
.shopsListBox__form:after {
  clear: both;
}
.shopsListBox__form-input {
  width: 707px;
  float: left;
  position: relative;
}
.shopsListBox__form-input svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.shopsListBox__form-select {
  width: 393px;
  float: right;
}
.shopsListBox__list {
  margin-top: 40px;
}
.shopsListBox__table {
  border: 1px solid #E5E5E5;
}
.shopsListBox__table > thead > tr > th {
  height: 66px;
  color: #95c11f;
  vertical-align: middle;
  background: #F8F8F8;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  border: 1px solid #E5E5E5;
}
.shopsListBox__table > thead > tr > th:first-child {
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
}
.shopsListBox__table tbody > tr > th,
.shopsListBox__table tbody > tr > td {
  height: 60px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #E5E5E5;
  -webkit-transition: background 250ms ease-in-out, color 250ms ease-in-out;
  -o-transition: background 250ms ease-in-out, color 250ms ease-in-out;
  -moz-transition: background 250ms ease-in-out, color 250ms ease-in-out;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
.shopsListBox__table tbody > tr > th {
  text-align: left;
  padding-left: 30px;
  padding-right: 30px;
}
.shopsListBox__table tbody > tr:hover > th,
.shopsListBox__table tbody > tr:hover > td {
  color: #95c11f;
  background: #F9FFE9;
}
.shopDetail__top:before,
.shopDetail__top:after {
  content: " ";
  display: table;
}
.shopDetail__top:after {
  clear: both;
}
.shopDetail__top:before,
.shopDetail__top:after {
  content: " ";
  display: table;
}
.shopDetail__top:after {
  clear: both;
}
.shopDetail__bottom:before,
.shopDetail__bottom:after {
  content: " ";
  display: table;
}
.shopDetail__bottom:after {
  clear: both;
}
.shopDetail__bottom:before,
.shopDetail__bottom:after {
  content: " ";
  display: table;
}
.shopDetail__bottom:after {
  clear: both;
}
.shopDetail__logo {
  display: block;
  top: 29px;
  right: 40px;
  position: absolute;
  height: 27px;
}
.shopDetail__title {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  margin: 0 0 30px;
  line-height: 27px;
}
.shopDetail__info {
  float: left;
  width: 450px;
}
.shopDetail__info__title {
  margin: 0;
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  line-height: 34px;
}
.shopDetail__info__base-position {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: relative;
  display: block;
  font-size: 18px;
  color: #95C11F;
  font-weight: 500;
  line-height: 20px;
  padding-left: 26px;
  margin-bottom: 35px;
  text-decoration: underline;
}
.shopDetail__info__base-position:hover,
.shopDetail__info__base-position:focus {
  text-decoration: none;
}
.shopDetail__info__base-position:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  width: 16px;
  height: 24px;
  background: url('../images/layout/pin.gray.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.shopDetail__info__base-go {
  display: block;
  width: 129px;
  height: auto;
  margin-bottom: 29px;
}
.shopDetail__info__base-text {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.shopDetail__info__base-text strong {
  font-weight: 500;
}
.shopDetail__info__base-text p:last-child {
  margin-bottom: 0;
}
.shopDetail__info__base-text--bigger {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #000;
}
.shopDetail__info__openingHours {
  margin-top: 60px;
  margin-bottom: 60px;
}
.shopDetail__info__openingHours-title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  line-height: 34px;
  position: relative;
}
.shopDetail__info__openingHours-title .status {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  background: #cccccc;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.shopDetail__info__openingHours-title .status--open {
  background: #95c11f;
}
.shopDetail__info__openingHours-title .status--closed {
  background: #ff0000;
}
.shopDetail__info__openingHours-subtitle {
  position: relative;
  margin-top: 30px;
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  line-height: 26px;
}
.shopDetail__info__openingHours-subtitle .status {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  background: #cccccc;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.shopDetail__info__openingHours-subtitle .status--open {
  background: #95c11f;
}
.shopDetail__info__openingHours-subtitle .status--closed {
  background: #ff0000;
}
.shopDetail__info__openingHours-tag {
  display: inline-block;
  padding: 0 14px;
  background: #FF0000;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  font-weight: bold;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 21px;
  margin-left: 5px;
  -webkit-transform: translateY(-2px);
     -moz-transform: translateY(-2px);
       -o-transform: translateY(-2px);
          transform: translateY(-2px);
  text-transform: uppercase;
}
.shopDetail__info__openingHours-table {
  margin-top: 10px;
  width: 100%;
}
.shopDetail__info__openingHours-table {
  min-width: 373px;
}
.shopDetail__info__openingHours-table td,
.shopDetail__info__openingHours-table th {
  font-size: 14px;
  color: #999;
  font-weight: 500;
  line-height: 20px;
  height: 45px;
  vertical-align: middle;
}
.shopDetail__info__openingHours-table tr td,
.shopDetail__info__openingHours-table tr th {
  border-bottom: 1px solid #E2E2E2;
}
.shopDetail__info__openingHours-table th {
  width: 90px;
}
.shopDetail__info__openingHours-table td {
  padding-right: 20px;
}
.shopDetail__info__openingHours-table td span {
  font-size: 18px;
}
.shopDetail__info__openingHours-table tr.today th,
.shopDetail__info__openingHours-table tr.today td {
  color: #000;
}
.shopDetail__info__line {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.shopDetail__info__line-small {
  font-size: 12px;
  color: #666666;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 16px;
  margin-bottom: 6px;
}
.shopDetail__info__line-normal {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
}
.shopDetail__info__line-normal a {
  text-decoration: underline;
}
.shopDetail__info__line-normal a:hover,
.shopDetail__info__line-normal a:focus {
  text-decoration: none;
}
.shopDetail__info__line-methods {
  margin-top: 20px;
  padding-bottom: 10px;
}
.shopDetail__gallery {
  float: right;
  width: 630px;
}
.shopDetail__gallery__big {
  min-height: 350px;
  position: relative;
  padding: 32px;
  border: 2px solid #E2E2E2;
}
.shopDetail__gallery__big img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.shopDetail__gallery__carousel {
  position: relative;
  height: 120px;
  padding-right: 30px;
  padding-left: 26px;
  margin-top: 30px;
  margin-left: -2px;
}
.shopDetail__gallery__carousel-in:not(.slick-initialized) {
  opacity: 0;
}
.shopDetail__gallery__carousel-item {
  width: 160px;
  height: 120px;
  margin: 0 5px;
}
.shopDetail__gallery__carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}
.shopDetail__gallery__carousel-item img.slick-loading {
  opacity: 0;
}
.shopDetail__gallery__carousel-item a {
  position: relative;
  display: block;
  width: 160px;
  height: 120px;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.shopDetail__gallery__carousel-item a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #95c11f;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.shopDetail__gallery__carousel-item a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url('../images/layout/magnifier.white.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.shopDetail__gallery__carousel-item a:focus:before {
  opacity: 0.2;
}
.shopDetail__gallery__carousel-item a:hover:before {
  opacity: 0.5;
}
.shopDetail__gallery__carousel-item a:hover:after {
  opacity: 1;
}
.shopDetail__gallery__carousel .slick-slide:not(.slick-active) .shopDetail__gallery__carousel-item a {
  opacity: 0.25;
}
.shopDetail__gallery__carousel .slick-slide:not(.slick-active) .shopDetail__gallery__carousel-item a:after,
.shopDetail__gallery__carousel .slick-slide:not(.slick-active) .shopDetail__gallery__carousel-item a:before {
  display: none;
  background: red;
}
.shopDetail__gallery__carousel-prev,
.shopDetail__gallery__carousel-next {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  width: 35px;
  height: 120px;
  background: #fff;
}
.shopDetail__gallery__carousel-prev svg,
.shopDetail__gallery__carousel-next svg {
  width: 14px;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.shopDetail__gallery__carousel-prev svg path,
.shopDetail__gallery__carousel-next svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.shopDetail__gallery__carousel-prev:hover svg path,
.shopDetail__gallery__carousel-next:hover svg path,
.shopDetail__gallery__carousel-prev:focus svg path,
.shopDetail__gallery__carousel-next:focus svg path {
  fill: #95c11f;
}
.shopDetail__gallery__carousel-prev {
  left: 0;
}
.shopDetail__gallery__carousel-prev svg {
  left: 0;
}
.shopDetail__gallery__carousel-next {
  right: 0;
  width: 34px;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.shopDetail__gallery__carousel-next svg {
  left: 0;
}
.shopDetail__path {
  margin-top: 60px;
}
.shopDetail__path-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin: 0;
  line-height: 27px;
}
.shopDetail__path-text {
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 28px;
  margin-top: 20px;
}
.shopDetail__path-text p:last-child {
  margin-bottom: 0;
}
.shopDetail__map {
  margin-top: 40px;
}
.shopDetail__map-in {
  width: 100%;
  height: 480px;
}
.shopDetail__map iframe {
  border: 0;
}
.giftCards__list:before,
.giftCards__list:after {
  content: " ";
  display: table;
}
.giftCards__list:after {
  clear: both;
}
.giftCards__list:before,
.giftCards__list:after {
  content: " ";
  display: table;
}
.giftCards__list:after {
  clear: both;
}
.giftCards__bottom:before,
.giftCards__bottom:after {
  content: " ";
  display: table;
}
.giftCards__bottom:after {
  clear: both;
}
.giftCards__bottom:before,
.giftCards__bottom:after {
  content: " ";
  display: table;
}
.giftCards__bottom:after {
  clear: both;
}
.giftCards__title {
  font-weight: bold;
  font-size: 24px;
  color: #000;
  margin: 0 0 30px;
  line-height: 27px;
}
.giftCards__text {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.giftCards__text strong {
  font-weight: 500;
}
.giftCards__text p:last-child {
  margin-bottom: 0;
}
.giftCards__text .bigger {
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.giftCards__list {
  margin-top: 60px;
  margin-bottom: 40px;
}
.giftCards__list-title {
  font-weight: bold;
  font-size: 18px;
  color: #95c11f;
  margin: 0 0 40px;
  line-height: 20px;
}
.giftCards__table {
  width: 100%;
}
.giftCards__table th {
  background: #F8F8F8;
  font-size: 12px;
  color: #999999;
  font-weight: bold;
  padding: 25px 20px;
  line-height: 16px;
  text-transform: uppercase;
}
.giftCards__table th:first-child {
  padding-left: 40px;
}
.giftCards__table td {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 13px;
  padding: 18px 20px;
  border-bottom: 1px solid #E3E3E3;
}
.giftCards__table td:first-child {
  padding-left: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.giftCards__table tr.used td {
  color: #aaaaaa;
}
.giftCards__table .button--full {
  display: inline-block;
}
.giftCards__table .print {
  opacity: 0.2;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.giftCards__table .print:hover,
.giftCards__table .print:focus {
  opacity: 1;
}
.giftCards__order {
  margin-top: 90px;
}
.giftCards__order-title {
  font-weight: 700;
  font-size: 36px;
  color: #95c11f;
  text-align: center;
  line-height: 48px;
}
.giftCards__value .giftCards__value-label {
  display: block;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #95c11f;
}
.giftCards__value-input {
  margin: 0 auto;
  position: relative;
  width: 300px;
  height: 70px;
  background: #FFF;
  border: 2px solid #DEDEDE;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.giftCards__value-input input {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  text-align: center;
  font-weight: bold;
  font-size: 36px;
  color: #000;
  line-height: 26px;
}
.giftCards__value-button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  width: 50px;
  height: 100%;
  font-size: 30px;
  color: #CAE08F;
  -webkit-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.giftCards__value-button:hover,
.giftCards__value-button:focus {
  color: #95c11f;
}
.giftCards__value-button[disabled] {
  color: #DEDEDE;
}
.giftCards__value-button .icon:before {
  display: block;
}
.giftCards__value-down {
  left: 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
}
.giftCards__value-up {
  right: 0;
}
.giftCards__fast-title {
  font-weight: 700;
  font-size: 12px;
  color: #95C11F;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
.giftCards__fast-values {
  text-align: center;
}
.giftCards__fast-values-inner {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: auto;
  margin: 30px auto 0;
  padding: 17px 30px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  background: #F8F8F8;
}
.giftCards__fast-button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  height: 56px;
  line-height: 56px;
  padding: 0 30px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  background: transparent;
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0);
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-align: center;
  -webkit-transition: color 0.25s ease-in-out, background 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
}
.giftCards__fast-button:hover,
.giftCards__fast-button:focus,
.giftCards__fast-button.isActive {
  background: #FFFFFF;
  color: #95c11f;
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.giftCards__form {
  max-width: 546px;
  margin-left: auto;
  margin-right: auto;
}
.giftCards__form-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.giftCards__form-button {
  margin-left: auto;
  margin-right: auto;
}
.jobsList:before,
.jobsList:after {
  content: " ";
  display: table;
}
.jobsList:after {
  clear: both;
}
.jobsList:before,
.jobsList:after {
  content: " ";
  display: table;
}
.jobsList:after {
  clear: both;
}
.jobsList__title {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  margin: 0 0 25px;
  line-height: 27px;
}
.jobsList__info {
  float: left;
  width: 450px;
  font-size: 14px;
  color: #666666;
  line-height: 28px;
}
.jobsList__info strong {
  font-weight: 500;
}
.jobsList__info p:last-child {
  margin-bottom: 0;
}
.jobsList__info .bigger {
  font-size: 16px;
  color: #333333;
}
.jobsList__info .sibTitle {
  margin: 60px 0 20px;
  font-size: 18px;
  font-weight: 500;
  color: #95c11f;
  line-height: 22px;
}
.jobsList__list {
  float: right;
  width: 630px;
}
.jobsList__list ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: block;
}
.jobsList__list ul li {
  display: block;
  margin-bottom: 10px;
}
.jobsList__list ul .jobsList__list__item {
  position: relative;
  display: block;
  padding: 20px 51px 20px 20px;
  background: #F8F8F8;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  text-decoration: none;
  -webkit-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
     -moz-box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
          box-shadow: 1px 0px 15px 3px rgba(0, 0, 0, 0);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.jobsList__list ul .jobsList__list__item svg {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 11px;
  height: 19px;
  -webkit-transform: translateY(-50%) rotate(-180deg);
     -moz-transform: translateY(-50%) rotate(-180deg);
       -o-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.jobsList__list ul .jobsList__list__item svg path {
  fill: #cccccc;
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.jobsList__list ul .jobsList__list__item-title {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  margin: 0;
  line-height: 20px;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.jobsList__list ul .jobsList__list__item-address {
  position: relative;
  font-size: 14px;
  color: #999;
  font-weight: 500;
  line-height: 14px;
  margin-top: 10px;
  padding-left: 18px;
}
.jobsList__list ul .jobsList__list__item-address:before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 12px;
  height: 18px;
  background: url('../images/layout/pin.gray.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.jobsList__list ul .jobsList__list__item:hover,
.jobsList__list ul .jobsList__list__item:focus {
  text-decoration: none;
  background: #fff;
  -webkit-box-shadow: 3px 3px 15px 3px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 3px 3px 15px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 15px 3px rgba(0, 0, 0, 0.1);
}
.jobsList__list ul .jobsList__list__item:hover .jobsList__list__item-title,
.jobsList__list ul .jobsList__list__item:focus .jobsList__list__item-title {
  color: #95c11f;
}
.jobsList__list ul .jobsList__list__item:hover path,
.jobsList__list ul .jobsList__list__item:focus path {
  fill: #95c11f;
}
.jobsDetail {
  background: red;
}
.jobsDetailBox_1__title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 27px;
}
.jobsDetailBox_1__address,
.jobsDetailBox_1__other {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.jobsDetailBox_1__address-small,
.jobsDetailBox_1__other-small {
  font-size: 12px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 6px;
}
.jobsDetailBox_1__address-normal,
.jobsDetailBox_1__other-normal {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 28px;
}
.jobsDetailBox_1__address-normal a,
.jobsDetailBox_1__other-normal a {
  color: #95c11f;
  text-decoration: underline;
}
.jobsDetailBox_1__address-normal a:hover,
.jobsDetailBox_1__other-normal a:hover,
.jobsDetailBox_1__address-normal a:focus,
.jobsDetailBox_1__other-normal a:focus {
  color: #669900;
  text-decoration: none;
}
.jobsDetailBox_1__info:before,
.jobsDetailBox_1__info:after {
  content: " ";
  display: table;
}
.jobsDetailBox_1__info:after {
  clear: both;
}
.jobsDetailBox_1__info:before,
.jobsDetailBox_1__info:after {
  content: " ";
  display: table;
}
.jobsDetailBox_1__info:after {
  clear: both;
}
.jobsDetailBox_1__info-ic {
  float: left;
  padding-right: 30px;
}
.jobsDetailBox_1__info-dic {
  float: left;
  padding-right: 30px;
}
.jobsDetailBox_1__info-vat {
  float: left;
}
.jobsDetailBox_1__info-vat-text {
  font-size: 14px;
  color: #666666;
  margin-top: 25px;
}
.jobsDetailBox_2__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  color: #95c11f;
  margin: 60px 0 30px;
}
.jobsDetailBox_3 {
  position: relative;
  padding: 30px;
  background: #F8F8F8;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  margin-bottom: 30px;
}
.jobsDetailBox_3:last-child {
  margin-bottom: 0;
}
.jobsDetailBox_3__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  margin: 0;
}
.jobsDetailBox_3__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 20px;
}
.jobsDetailBox_3__list li {
  position: relative;
  font-size: 14px;
  color: #333333;
  line-height: 1.2;
  font-weight: 500;
  padding-left: 28px;
  margin-bottom: 16px;
}
.jobsDetailBox_3__list li:last-child {
  margin-bottom: 0;
}
.jobsDetailBox_3__list li:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 11px;
  background: url('../images/layout/check.green.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.jobsDetailBox_3--primary,
.jobsDetailBox_3--success {
  background: #f9ffe9;
}
.jobsDetailBox_3--primary .jobsDetailBox_3__title,
.jobsDetailBox_3--success .jobsDetailBox_3__title {
  color: #95c11f;
}
.jobsDetailBox_3--info {
  background: #E7F3FF;
}
.jobsDetailBox_3--info .jobsDetailBox_3__title {
  color: #0077e7;
}
.jobsDetailBox_3--warning {
  background: #fff6e9;
}
.jobsDetailBox_3--warning .jobsDetailBox_3__title {
  color: #ffa500;
}
.jobsDetailBox_3--danger {
  background: #fff2f2;
}
.jobsDetailBox_3--danger .jobsDetailBox_3__title {
  color: #ff0000;
}
.jobsDetailBox_3--withMascot-1 > .mascot {
  bottom: -20px;
  right: -24px;
  position: absolute;
  width: 158px;
  height: 170px;
  z-index: 1;
  background: url('../images/mascot/mascot-1.svg') no-repeat top right;
}
.compare__header {
  position: relative;
}
.compare__header-title {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  margin: 0 0 24px;
  line-height: 27px;
}
.compare__header-subtitle {
  margin: 0;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  line-height: 28px;
}
.compare__header-text {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.compare__header-text p:last-child {
  margin-bottom: 0;
}
.compare__header-share {
  position: absolute;
  top: 0;
  right: 0;
}
.compare__header-share:before,
.compare__header-share:after {
  content: " ";
  display: table;
}
.compare__header-share:after {
  clear: both;
}
.compare__header-share:before,
.compare__header-share:after {
  content: " ";
  display: table;
}
.compare__header-share:after {
  clear: both;
}
.compare__header-share-facebook {
  float: left;
  height: 45px;
  margin-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.compare__header-share-facebook svg {
  height: 24px;
  width: auto;
}
.compare__header-share__link {
  float: left;
  position: relative;
  width: 390px;
  height: 45px;
  padding-right: 155px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  line-height: 45px;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.compare__header-share__link-input {
  display: block;
  width: 100%;
  height: 43px;
  padding: 0 0 0 25px;
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 24px;
  border: none;
  background: transparent;
}
.compare__header-share__link-button {
  position: absolute;
  top: 9px;
  right: 9px;
}
.compare__header-share:hover,
.compare__header-share:focus {
  opacity: 0.9;
}
.compare__header-add {
  margin-top: 28px;
}
.compare__header-add:before,
.compare__header-add:after {
  content: " ";
  display: table;
}
.compare__header-add:after {
  clear: both;
}
.compare__header-add:before,
.compare__header-add:after {
  content: " ";
  display: table;
}
.compare__header-add:after {
  clear: both;
}
.compare__header-add label.compare__header-add__label {
  display: block;
  height: 45px;
  width: 292px;
  float: left;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 45px;
}
.compare__header-add__search {
  position: relative;
  width: 868px;
  float: right;
}
.compare__header-add__search-input {
  position: relative;
  z-index: 5;
}
.compare__header-add__search-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  width: 45px;
  height: 45px;
  top: 0;
  right: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  z-index: 11;
  color: #666666;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.compare__header-add__search-close i {
  font-size: 15px;
  display: block;
}
.compare__header-add__search-close:hover,
.compare__header-add__search-close:focus {
  color: #ff0000;
}
.compare__header-add__results {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 45px;
  width: 100%;
  background: #fff;
  z-index: 4;
  border: 1px solid #DEDEDE;
  -webkit-box-shadow: 10px 25px 50px 0 rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 10px 25px 50px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 10px 25px 50px 0 rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.compare__header-add__results-list {
  padding-top: 5px;
  padding-bottom: 5px;
}
.compare__header-add__results-item {
  position: relative;
}
.compare__header-add__results-item-anchor {
  display: block;
  padding: 15px 0 15px 109px;
  margin: 0;
  text-decoration: none;
  color: #000;
  -webkit-transition: background 250ms ease-in-out;
  -o-transition: background 250ms ease-in-out;
  -moz-transition: background 250ms ease-in-out;
  transition: background 250ms ease-in-out;
}
.compare__header-add__results-item-anchor:hover,
.compare__header-add__results-item-anchor:focus {
  text-decoration: none;
}
.compare__header-add__results-item-imageCounter {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 76px;
}
.compare__header-add__results-item-image {
  width: 70px;
  height: 70px;
  border: 1px solid #dedede;
}
.compare__header-add__results-item-content {
  height: 70px;
  padding-top: 3px;
}
.compare__header-add__results-item-title {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 14px;
}
.compare__header-add__results-item-title .in {
  display: inline-block;
  position: relative;
}
.compare__header-add__results-item-title .in .rating {
  position: absolute;
  top: 0;
  right: -95px;
  height: 12px;
}
.compare__header-add__results-item-stockInfo {
  margin-top: 3px;
}
.compare__header-add__results-item-stockInfo .stock {
  display: inline-block;
  font-size: 13px;
  color: #999999;
  line-height: 17px;
  font-weight: 500;
}
.compare__header-add__results-item-stockInfo .stock-default {
  color: #999999;
}
.compare__header-add__results-item-stockInfo .stock-primary {
  color: #95c11f;
}
.compare__header-add__results-item-stockInfo .stock-info {
  color: #0077e7;
}
.compare__header-add__results-item-stockInfo .stock-warning {
  color: #ffa500;
}
.compare__header-add__results-item-stockInfo .stock-danger {
  color: #ff0000;
}
.compare__header-add__results-item-stockInfo .shops {
  display: inline-block;
  font-size: 13px;
  color: #95c11f;
  line-height: 17px;
}
.compare__header-add__results-item-stockInfo .shops-default {
  color: #999999;
}
.compare__header-add__results-item-stockInfo .shops-primary {
  color: #95c11f;
}
.compare__header-add__results-item-stockInfo .shops-info {
  color: #0077e7;
}
.compare__header-add__results-item-stockInfo .shops-warning {
  color: #ffa500;
}
.compare__header-add__results-item-stockInfo .shops-danger {
  color: #ff0000;
}
.compare__header-add__results-item-prices {
  position: absolute;
  bottom: 33px;
  right: 70px;
  width: 130px;
  text-align: right;
}
.compare__header-add__results-item-prices .old {
  position: absolute;
  top: -14px;
  right: 0;
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
}
.compare__header-add__results-item-prices .price {
  font-size: 18px;
  color: #f20d0d;
  font-weight: bold;
  line-height: 20px;
}
.compare__header-add__results-item-compare {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  right: 14px;
  bottom: 39px;
  width: 30px;
  height: 28px;
  padding: 5px;
}
.compare__header-add__results-item-compare svg {
  height: 18px;
}
.compare__header-add__results-item-compare svg path {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.compare__header-add__results-item-compare:hover svg path,
.compare__header-add__results-item-compare:focus svg path {
  fill: #999;
}
.compare__header-add__results-item:hover,
.compare__header-add__results-item:focus {
  background: #F8F8F8;
}
.compare__header-add__results-item:hover .compare__header-add__results-item-compare svg path,
.compare__header-add__results-item:focus .compare__header-add__results-item-compare svg path {
  fill: #888;
}
.compare__header-add__results-footer {
  text-align: center;
  padding-bottom: 40px;
}
.compare__header-add__results-button {
  display: inline-block;
}
.compare__box {
  position: relative;
  margin-top: 20px;
}
.compare__box:before,
.compare__box:after {
  content: " ";
  display: table;
}
.compare__box:after {
  clear: both;
}
.compare__box:before,
.compare__box:after {
  content: " ";
  display: table;
}
.compare__box:after {
  clear: both;
}
.compare__box-params {
  float: left;
  width: 292px;
  height: 100%;
  background: #fff;
  z-index: 2;
}
.compare__box-params-contact {
  height: 791px;
}
.compare__box-params-contact--noGifts {
  height: 676px;
}
.compare__box-params-contact__mascot {
  width: 135px;
  height: 145px;
  background: url('../images/mascot/mascot-1.svg') no-repeat top right;
  -webkit-transform: scaleX(-1);
     -moz-transform: scaleX(-1);
       -o-transform: scaleX(-1);
          transform: scaleX(-1);
}
.compare__box-params-contact__title {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 18px;
  color: #95C11F;
  font-weight: 500;
  line-height: 24px;
}
.compare__box-params-contact__phone {
  margin-top: 20px;
  padding-left: 20px;
}
.compare__box-params-contact__phone-title {
  font-weight: bold;
  font-size: 12px;
  color: #666666;
  line-height: 16px;
  text-transform: uppercase;
}
.compare__box-params-contact__phone-link {
  margin-top: 6px;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 28px;
  text-decoration: none;
}
.compare__box-params-contact__phone-link:hover,
.compare__box-params-contact__phone-link:focus {
  color: #95c11f;
  text-decoration: underline;
}
.compare__box-params .compare__box-param {
  color: #000;
}
.compare__box-param {
  height: 42px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding-left: 20px;
  font-size: 14px;
  color: #999999;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.compare__box-param.compare__box-param--primary {
  background: #F9FFE9;
}
.compare__box-param.compare__box-param--title {
  font-weight: bold;
  font-size: 18px;
  color: #95c11f;
  margin-bottom: 10px;
}
.compare__box-param.compare__box-param--gray {
  background: #F8F8F8;
}
.compare__box-items {
  float: right;
  width: 868px;
  height: auto;
  overflow-x: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
}
.compare__box-items.hiddenOverflow {
  overflow: hidden;
}
.compare__box-items--fake {
  overflow-x: auto;
}
.compare__box-items--fake__in {
  width: 100px;
  height: 100%;
}
.compare__box-item {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 290px;
          flex-basis: 290px;
  margin-right: -1px;
}
.compare__box-item .productList-item {
  margin: 0;
  float: none;
}
.compare__box-item .productList-item .shops {
  position: static;
}
.compare__box-item .productList-item .shopsInfo {
  width: 290px;
  left: -21px;
  -webkit-transform: none;
     -moz-transform: none;
       -o-transform: none;
          transform: none;
}
.compare__box-item .productList-item .shopsInfo-body:before,
.compare__box-item .productList-item .shopsInfo-body:after {
  left: 30%;
}
.compare__box-item__remove {
  height: 40px;
  text-align: center;
  border: 1px solid #DEDEDE;
  border-top: none;
}
.compare__box-item__remove button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  font-size: 13px;
  color: #666666;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  text-align: center;
}
.compare__box-item__remove button svg {
  width: 15px;
  margin-right: 10px;
}
.compare__box-item__remove button svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.compare__box-item__remove button:hover,
.compare__box-item__remove button:focus {
  color: #999;
}
.compare__box-item__remove button:hover svg path,
.compare__box-item__remove button:focus svg path {
  fill: #ff0000;
}
.compare__box-item__shoppingList {
  height: 40px;
  text-align: center;
  border: 1px solid #DEDEDE;
  border-top: none;
}
.compare__box-item__shoppingList button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  font-size: 13px;
  color: #95c11f;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: underline;
}
.compare__box-item__shoppingList button svg {
  width: 15px;
  margin-right: 10px;
}
.compare__box-item__shoppingList button svg path {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.compare__box-item__shoppingList button:hover,
.compare__box-item__shoppingList button:focus {
  color: #669900;
  text-decoration: none;
}
.compare__box-item__shoppingList button:hover svg path,
.compare__box-item__shoppingList button:focus svg path {
  fill: #999;
}
.compare__box-item__rating {
  padding-top: 40px;
  text-align: center;
}
.compare__box-item__rating .rating .rating-item .rating-icon {
  width: 17px;
}
.compare__box-item__rating-info {
  font-size: 13px;
  color: #666666;
  text-align: center;
  line-height: 14px;
  margin-top: 2px;
}
.compare__box-item__params {
  margin-top: 40px;
}
.compare__box-item .hoverBox {
  position: relative;
  background: #fff;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  -moz-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}
.compare__box-item .hoverBox__border-bottom {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: transparent;
  z-index: 1;
  -webkit-transition: background 150ms ease-in-out;
  -o-transition: background 150ms ease-in-out;
  -moz-transition: background 150ms ease-in-out;
  transition: background 150ms ease-in-out;
}
.compare__box-item .hoverBox:before,
.compare__box-item .hoverBox:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: transparent;
  z-index: 1;
  -webkit-transition: background 150ms ease-in-out;
  -o-transition: background 150ms ease-in-out;
  -moz-transition: background 150ms ease-in-out;
  transition: background 150ms ease-in-out;
}
.compare__box-item .hoverBox:before {
  left: 0;
}
.compare__box-item .hoverBox:after {
  right: 0;
}
.compare__box-item:hover .compare__box-param {
  color: #000;
}
.compare__box-item:hover .compare__box-param--gray {
  background: #F3F3F3;
}
.compare__box-item:hover .compare__box-param--primary {
  background: #F4FAE4;
}
.compare__box-item:hover .productList-item-title {
  text-decoration: underline;
}
.compare__box-item:hover .hoverBox {
  background: #FAFAFA;
}
.compare__box-item:hover .hoverBox:before,
.compare__box-item:hover .hoverBox:after,
.compare__box-item:hover .hoverBox__border-bottom {
  background: #DEDEDE;
}
body:not(.showCompareSearchResults) .compare__header-add__results {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
}
body:not(.showCompareSearchClose) .compare__header-add__search-close {
  opacity: 0;
}
.errorPage {
  text-align: center;
}
.errorPage-img {
  height: 215px;
  width: auto;
  display: inline-block;
  margin-bottom: 40px;
}
.errorPage-title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  line-height: 27px;
  margin: 0;
}
.errorPage-text {
  font-size: 16px;
  color: #999999;
  font-weight: 500;
  line-height: 22px;
  margin-top: 11px;
}
.errorPage-text p {
  margin: 0 0 16px;
}
.errorPage-text p:last-child {
  margin-bottom: 0;
}
.errorPage-btn {
  margin-top: 80px;
  display: inline-block;
}
.loyaltyProgram__header {
  position: relative;
  padding-left: 20px;
  padding-right: 265px;
}
.loyaltyProgram__header:after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 158px;
  height: 170px;
  z-index: 1;
  background: url('../images/mascot/mascot-1.svg') no-repeat top right;
}
.loyaltyProgram__header-title {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  line-height: 34px;
}
.loyaltyProgram__header-text {
  font-size: 14px;
  color: #333333;
  letter-spacing: 0;
  line-height: 24px;
  margin-top: 23px;
}
.loyaltyProgram__header-text strong {
  line-height: 26px;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}
.loyaltyProgram__body:before,
.loyaltyProgram__body:after {
  content: " ";
  display: table;
}
.loyaltyProgram__body:after {
  clear: both;
}
.loyaltyProgram__body:before,
.loyaltyProgram__body:after {
  content: " ";
  display: table;
}
.loyaltyProgram__body:after {
  clear: both;
}
.loyaltyProgram__item--card {
  width: 560px;
  float: left;
}
.loyaltyProgram__item--program {
  width: 560px;
  float: right;
}
.loyaltyProgram__item-header {
  padding-bottom: 40px;
}
.loyaltyProgram__item-header__title {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #95c11f;
  line-height: 26px;
  font-weight: bold;
  font-size: 36px;
}
.loyaltyProgram__item-header__title small {
  color: #95c11f;
  display: block;
  font-weight: 500;
  font-size: 18px;
}
.loyaltyProgram__item-info {
  position: relative;
  background: #F8F8F8;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  padding: 20px 20px 20px 60px;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.loyaltyProgram__item-info:before {
  content: "\48";
}
.loyaltyProgram__item-info p:last-child {
  margin-bottom: 0;
}
.loyaltyProgram__item-info:before {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  color: #cccccc;
}
.loyaltyProgram__item-image img {
  display: inline-block;
}
.loyaltyProgram__item-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  padding-left: 60px;
}
.loyaltyProgram__item-list li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 28px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 22px;
}
.loyaltyProgram__item-list li:before {
  content: "\46";
}
.loyaltyProgram__item-list li .button {
  display: inline-block;
}
.loyaltyProgram__item-list li:before {
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  color: #95c11f;
  font-size: 14px;
}
.loyaltyProgram__item-list li:last-child {
  margin-bottom: 0;
}
.videoItem {
  display: block;
  text-decoration: none;
}
.videoItem__img {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  -webkit-border-radius: 9px;
     -moz-border-radius: 9px;
          border-radius: 9px;
  background: #000;
}
.videoItem__img-in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-border-radius: 9px;
     -moz-border-radius: 9px;
          border-radius: 9px;
}
.videoItem__img-in:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 28px;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/layout/play.svg) no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
  z-index: 1;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  -o-transition: opacity 0.25s ease, -o-transform 0.25s ease;
  -moz-transition: opacity 0.25s ease, transform 0.25s ease, -moz-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease, -moz-transform 0.25s ease, -o-transform 0.25s ease;
}
.videoItem__img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-border-radius: 9px;
     -moz-border-radius: 9px;
          border-radius: 9px;
  border: 5px solid #000;
  -webkit-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  opacity: 1;
}
.videoItem__time {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  height: 33px;
  width: 74px;
  background: #000;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
  font-weight: 500;
  font-size: 12px;
  color: #999;
  line-height: 12px;
}
body.darkTheme .videoItem__time {
  background: #000;
}
.videoItem__time i {
  color: #95c11f;
  margin-right: 8px;
}
.videoItem__title {
  margin-top: 13px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  line-height: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.videoItem__panel {
  font-weight: 500;
  font-size: 12px;
  color: #696969;
  line-height: 18px;
  margin-top: 14px;
  padding-left: 10px;
  padding-right: 10px;
}
.videoItem__panel-time {
  display: inline-block;
  @include tagReset();
  margin-right: 20px;
}
.videoItem__panel-views {
  display: inline-block;
}
.videoItem:hover,
.videoItem:focus {
  text-decoration: none;
}
.videoItem:hover .videoItem__img-in img,
.videoItem:focus .videoItem__img-in img {
  opacity: 0.75;
}
.videoItem:hover .videoItem__img-in:before,
.videoItem:focus .videoItem__img-in:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
     -moz-transform: translate(-50%, -50%) scale(1);
       -o-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
@media screen and (min-width: 1250px) {
  body.withBanner {
    overflow-x: hidden;
  }
}
body.withBanner .page-container {
  position: relative;
}
.pageBanner {
  position: absolute;
  top: 0;
  display: block;
}
.pageBanner--left {
  left: 0;
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}
.pageBanner--right {
  right: 0;
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
}
@media screen and (max-width: 1249px) {
  .pageBanner {
    display: none;
  }
}
.competition__container {
  min-height: 1308px;
  padding-top: 366px;
}
.competition__container--summer {
  padding-top: 513px;
  min-height: 1168px;
}
.competition__container--birthday {
  padding-top: 513px;
  min-height: 454px;
}
.competition__box {
  position: relative;
  padding: 60px;
  width: 923px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.competition__box-reload {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  opacity: 0.1;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.competition__box-reload svg {
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  -o-transition: -o-transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out, -moz-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out, -moz-transform 250ms ease-in-out, -o-transform 250ms ease-in-out;
  -webkit-transform-origin: 16px 18px;
     -moz-transform-origin: 16px 18px;
       -o-transform-origin: 16px 18px;
          transform-origin: 16px 18px;
}
.competition__box-reload:hover,
.competition__box-reload:focus {
  opacity: 1;
}
.competition__box-reload:hover svg,
.competition__box-reload:focus svg {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.competition__header {
  text-align: center;
}
.competition__header-title {
  margin: 0;
  padding: 0;
  font-size: 48px;
  line-height: 54px;
  font-weight: bold;
}
.competition__header-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.competition__header-text p {
  margin-bottom: 22px;
}
.competition__header-text p:last-child {
  margin-bottom: 0;
}
.competition__header-navigation {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}
.competition__header-navigation-itemLeft,
.competition__header-navigation-itemRight {
  position: absolute;
  top: 50%;
}
.competition__header-navigation-itemLeft {
  left: 0;
  margin-left: -60px;
  -webkit-transform: translate(-100%, -50%);
     -moz-transform: translate(-100%, -50%);
       -o-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
.competition__header-navigation-itemRight {
  right: 0;
  -webkit-transform: translate(100%, -50%);
     -moz-transform: translate(100%, -50%);
       -o-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  margin-right: -60px;
}
.competition__content {
  margin-top: 80px;
}
.competition__content-header {
  text-align: center;
}
.competition__content-header_title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
}
.competition__content-header_text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  color: #333333;
}
.competition__content-header_text p {
  margin-bottom: 22px;
}
.competition__content-header_text p:last-child {
  margin-bottom: 0;
}
.competition__content-box {
  position: relative;
  width: 803px;
  margin: 67px auto 0;
}
.competition__content-box:before,
.competition__content-box:after {
  content: " ";
  display: table;
}
.competition__content-box:after {
  clear: both;
}
.competition__content-box:before,
.competition__content-box:after {
  content: " ";
  display: table;
}
.competition__content-box:after {
  clear: both;
}
.competition__content-box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 393px;
  background: #F9FFE9;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.competition__content-form {
  position: relative;
  width: 335px;
  float: right;
  margin-right: 8px;
  margin-top: 30px;
  padding-right: 30px;
}
.competition__content-form .form-group:not(.has-error) label {
  color: #95c11f;
}
.competition__content-form .form-group:not(.has-error) .form-control {
  border-color: #CAE08F;
}
.competition__content-form .form-group.has-error label {
  color: #ff0000;
}
.competition__content-form .form-group.has-error .form-control {
  border-color: #ff0000;
}
.competition__content-form__bottom {
  position: relative;
  margin-top: 60px;
}
.competition__content-summerBox {
  margin-top: 60px;
}
.competition__content-summerBox-inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  padding: 30px 30px 38px;
  background: #F9FFE9;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.competition__content-summerBox-inner-image {
  position: absolute;
  top: -51px;
  right: -20px;
  width: 89px;
  height: 143px;
  background: url('../images/competition/summer-picture.png') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.competition__content-summerBox-inner-image img {
  position: absolute;
  left: 14px;
  bottom: 18px;
  width: 55px;
  height: 74px;
}
.competition__content-summerBox-button {
  text-align: center;
  margin-top: 30px;
}
.competition__content-summerBox-button .button {
  display: inline-block;
}
.competition__content-summerBox-col {
  width: 321px;
}
.competition__content-summerBox-col-title {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  text-align: center;
  line-height: 26px;
  margin-bottom: 30px;
}
.competition__content-summerBox-col .form-group label {
  width: 100%;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
.competition__content-summerBox-col .form-control {
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.competition__content-summerBox-col .form-group:not(.has-error) label {
  color: #95c11f;
}
.competition__content-summerBox-col .form-group:not(.has-error) .form-control {
  border-color: #CAE08F;
}
.competition__content-summerBox-col .form-group.has-error label {
  color: #ff0000;
}
.competition__content-summerBox-col .form-group.has-error .form-control {
  border-color: #ff0000;
}
.competition__content-summerBox-divider {
  position: absolute;
  top: 32px;
  left: 50%;
  font-size: 14px;
  line-height: 24px;
  color: #AFB2A7;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.competition__content-summerBox-divider:after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  width: 1px;
  height: 90px;
  background: #CAE08F;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.competition__content-summerWeekBox {
  position: relative;
  background: #F9FFE9;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding: 30px 30px 30px 438px;
}
.competition__content-summerWeekBox .competition__content {
  margin: 0;
}
.competition__content-summerWeekBox__image {
  position: absolute;
  top: 50%;
  left: 130px;
  width: 177px;
  height: 286px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url('../images/competition/summer-picture.png') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.competition__content-summerWeekBox__image img {
  position: absolute;
  left: 28px;
  bottom: 36px;
  width: 110px;
  height: 148px;
}
.competition__content-birthdayBox {
  background: #F9FFE9;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding: 60px 240px;
  margin-top: 30px;
}
.competition__buttonOpen {
  position: absolute;
  bottom: 0;
  left: -430px;
  width: 335px;
}
.competition__mainPrize {
  margin-top: 90px;
  padding-top: 30px;
}
.competition__mainPrize img {
  display: block;
  width: 100%;
  height: auto;
}
.competition__prizes {
  padding-top: 90px;
}
.competition__prizes-title {
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  line-height: 41px;
}
.competition__prizes-subtitle {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  line-height: 26px;
}
.competition__prizes-content {
  padding-top: 60px;
}
.competition__prizes-list {
  margin-left: -10px;
  margin-right: -10px;
}
.competition__prizes-list:before,
.competition__prizes-list:after {
  content: " ";
  display: table;
}
.competition__prizes-list:after {
  clear: both;
}
.competition__prizes-list:before,
.competition__prizes-list:after {
  content: " ";
  display: table;
}
.competition__prizes-list:after {
  clear: both;
}
.competition__prizes-item {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.competition__prizes-item-in {
  position: relative;
  width: 208px;
  height: 208px;
  background: #F8F8F8;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.competition__prizes-item-in img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-height: 140px;
  max-width: 140px;
}
.competition__prizes-item-title {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #95c11f;
  text-align: center;
}
.competition__prizes-item:hover,
.competition__prizes-item:focus {
  text-decoration: none;
}
.competition__prizes-item:hover .competition__prizes-item-in,
.competition__prizes-item:focus .competition__prizes-item-in {
  background: #FFFFFF;
  -webkit-box-shadow: 15px 15px 30px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 15px 15px 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 15px 15px 30px 0 rgba(0, 0, 0, 0.1);
}
.competition__prizes-item:hover .competition__prizes-item-title,
.competition__prizes-item:focus .competition__prizes-item-title {
  color: #95c11f;
  text-decoration: none;
}
.competition__prizes-footer {
  padding-top: 40px;
}
.competition__prizes-footer .button {
  display: inline-block;
}
.competition__prizes--birthday {
  padding-top: 120px;
}
.competition__rules {
  margin-top: 120px;
}
.competition__rules-title {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 26px;
}
.competition__rules-content {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  -webkit-transition: height 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out;
  -moz-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
}
.competition__rules-content:not(.isActive) {
  height: 511px;
  cursor: pointer;
}
.competition__rules-content:not(.isActive):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  -webkit-box-shadow: 0px 0 100px 150px rgba(255, 255, 255, 0.75);
     -moz-box-shadow: 0px 0 100px 150px rgba(255, 255, 255, 0.75);
          box-shadow: 0px 0 100px 150px rgba(255, 255, 255, 0.75);
}
.competition__rules-content ul {
  margin: 0;
  padding: 0;
  counter-reset: rules;
  list-style: none;
}
.competition__rules-content li {
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 25px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.competition__rules-content li p {
  margin: 0 0 15px;
}
.competition__rules-content li p:last-child {
  margin-bottom: 0;
}
.competition__rules-content li:before {
  counter-increment: rules;
  content: counter(rules) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 26px;
}
.competition__rules-content li:last-child {
  margin-bottom: 0;
}
.competition__cornerInfo {
  position: absolute;
  top: -30px;
  right: -30px;
  text-align: center;
  -webkit-transform: rotate(45deg) translate(25%, 50%);
     -moz-transform: rotate(45deg) translate(25%, 50%);
       -o-transform: rotate(45deg) translate(25%, 50%);
          transform: rotate(45deg) translate(25%, 50%);
  -webkit-transform-origin: center;
     -moz-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
}
.competition__cornerInfo-top {
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: -0.67px;
  line-height: 40px;
  background: #95c11f;
  width: 340px;
}
.competition__cornerInfo-bottom {
  margin-top: 30px;
  font-size: 18px;
  color: #FFFFFF;
}
.competition__gift {
  position: absolute;
  top: 0;
  right: 411px;
}
.competition__gift img {
  position: absolute;
  top: -5px;
  right: 0;
}
.competition__gift-item {
  position: absolute;
  width: 325px;
  height: 325px;
  top: 30px;
  right: 35px;
}
.competition__gift-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 280px;
  max-height: 280px;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.competition__gift-front {
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
  cursor: pointer;
}
.competition__gift.isActive .competition__gift-front {
  opacity: 0;
}
.competition__date {
  position: absolute;
  top: 949px;
  left: 50%;
  font-size: 18px;
  color: #95c11f;
  text-align: center;
  line-height: 30px;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.competition__mainPrizeForm {
  padding: 30px 60px 0;
}
.competition__mainPrizeForm-inner {
  position: relative;
  background: #F9FFE9;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding: 60px 60px 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.competition__mainPrizeForm-image {
  position: absolute;
  left: 26px;
  bottom: -42px;
}
.competition__mainPrizeForm-title {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  text-align: center;
  line-height: 26px;
}
.competition__mainPrizeForm-values {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.competition__mainPrizeForm .radio label {
  color: #95c11f;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  min-height: 29px;
  padding-left: 41px;
}
.competition__mainPrizeForm .radio label:before {
  width: 29px;
  height: 29px;
}
.competition__mainPrizeForm .radio label:after {
  top: 7px;
  left: 7px;
  width: 15px;
  height: 15px;
}
.competitionSuccess {
  position: relative;
  width: 923px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  -webkit-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.competitionSuccess-video {
  width: 923px;
}
.competitionSuccess-video iframe {
  -webkit-border-top-left-radius: 15px;
     -moz-border-radius-topleft: 15px;
          border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
     -moz-border-radius-topright: 15px;
          border-top-right-radius: 15px;
}
.competitionSuccess-content {
  margin-top: 60px;
  padding-bottom: 90px;
}
.competitionSuccess-content__title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 48px;
  line-height: 54px;
  text-align: center;
}
.competitionSuccess-price {
  position: relative;
  min-height: 388px;
  background: #F9FFE9;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  padding: 40px 30px 123px 452px;
  width: 803px;
  margin: 47px auto 0;
}
.competitionSuccess-price__title {
  margin: 0;
  padding: 0;
  width: 310px;
  font-weight: bold;
  font-size: 36px;
  color: #95c11f;
  line-height: 41px;
}
.competitionSuccess-price__label {
  font-weight: bold !important;
  font-size: 12px !important;
  color: #95c11f !important;
  line-height: 16px !important;
  margin: 40px 0 0 !important;
  text-transform: uppercase;
}
.competitionSuccess-price__link {
  position: relative;
  width: 321px;
  height: 45px;
  padding-right: 110px;
  background: #FFFFFF;
  line-height: 45px;
  border: 1px solid #CAE08F;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  margin-top: 10px;
}
.competitionSuccess-price__link-input {
  display: block;
  width: 100%;
  height: 43px;
  padding: 0 0 0 25px;
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  letter-spacing: 3.43px;
  line-height: 22px;
  border: none;
  background: transparent;
  outline: none;
}
.competitionSuccess-price__link-button {
  position: absolute;
  top: 9px;
  right: 9px;
}
.competitionSuccess-navigation {
  position: relative;
  display: inline-block;
  margin-top: 90px;
}
.competitionSuccess-navigation-itemLeft,
.competitionSuccess-navigation-itemRight {
  position: absolute;
  top: 50%;
}
.competitionSuccess-navigation-itemLeft {
  left: 0;
  margin-left: -30px;
  -webkit-transform: translate(-100%, -50%);
     -moz-transform: translate(-100%, -50%);
       -o-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}
.competitionSuccess-navigation-itemRight {
  right: 0;
  -webkit-transform: translate(100%, -50%);
     -moz-transform: translate(100%, -50%);
       -o-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  margin-right: -30px;
}
.competitionSuccess-date {
  position: absolute;
  right: 170px;
  bottom: 30px;
  font-size: 14px;
  line-height: 24px;
}
.competitionSuccess-share {
  position: absolute;
  right: 30px;
  bottom: 24px;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.competitionSuccess-share:hover,
.competitionSuccess-share:focus {
  opacity: 0.8;
}
.wideChristmasBanner {
  position: relative;
  display: block;
  padding: 8px 15px 9px 65px;
  margin-top: 50px;
  margin-bottom: 40px;
  background: #F9FFE9;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  text-decoration: none;
}
.wideChristmasBanner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 100%;
  background: #fff;
}
.wideChristmasBanner:hover,
.wideChristmasBanner:focus {
  text-decoration: none;
}
.wideChristmasBanner:hover .wideChristmasBanner-title,
.wideChristmasBanner:focus .wideChristmasBanner-title {
  color: #669900;
}
.wideChristmasBanner:hover .wideChristmasBanner-date,
.wideChristmasBanner:focus .wideChristmasBanner-date {
  color: #333;
}
.wideChristmasBanner-image {
  position: absolute;
  top: -18px;
  left: 0;
  width: 51px;
  height: auto;
}
.wideChristmasBanner-title {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #95c11f;
  line-height: 34px;
}
.wideChristmasBanner-date {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: #999;
  line-height: 26px;
  margin-left: 20px;
}
.wideChristmasBanner-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
}
.smallChristmasBanner {
  position: relative;
  display: block;
  padding: 20px 50px 23px 105px;
  margin-top: 57px;
  margin-bottom: 40px;
  background: #F9FFE9;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  text-decoration: none;
}
.smallChristmasBanner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 100%;
  background: #fff;
}
.smallChristmasBanner:hover,
.smallChristmasBanner:focus {
  text-decoration: none;
}
.smallChristmasBanner:hover .smallChristmasBanner-title,
.smallChristmasBanner:focus .smallChristmasBanner-title {
  color: #669900;
}
.smallChristmasBanner:hover .smallChristmasBanner-date,
.smallChristmasBanner:focus .smallChristmasBanner-date {
  color: #333;
}
.smallChristmasBanner-image {
  position: absolute;
  top: -27px;
  left: 0;
  width: 88px;
  height: auto;
}
.smallChristmasBanner-title {
  display: block;
  font-weight: bold;
  font-size: 24px;
  color: #95c11f;
  line-height: 34px;
}
.smallChristmasBanner-date {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #999;
  line-height: 26px;
}
.smallChristmasBanner-icon {
  position: absolute;
  top: 28px;
  right: 20px;
  font-size: 24px;
}
.searchOther {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.searchOther li {
  margin-bottom: 10px;
}
.searchOther li:last-child {
  margin-bottom: 0;
}
.searchOther a {
  font-size: 14px;
  line-height: 16px;
  color: #000;
}
.searchOther a:hover,
.searchOther a:focus {
  text-decoration: underline;
  color: #95c11f;
}
.manufacturersList {
  margin: -7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row wrap;
}
.manufacturersList-item {
  margin: 7px;
  padding: 10px;
  display: block;
  width: 123px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.manufacturersList-item img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
a.manufacturersList-item {
  text-decoration: none;
}
a.manufacturersList-item:hover,
a.manufacturersList-item:focus {
  border-color: #c6c4c4;
}
.quitSmoking__header {
  text-align: center;
  margin-top: 120px;
  color: #fff;
}
.quitSmoking__header-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
}
.quitSmoking__header-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin-top: 60px;
}
.quitSmoking__content {
  margin-top: 105px;
  margin-bottom: 100px;
  padding: 60px;
  width: 923px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.quitSmoking__info {
  text-align: center;
}
.quitSmoking__info-title {
  margin: 0;
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
}
.quitSmoking__info-subTitle {
  margin: 10px 0 0;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #95c11f;
}
.quitSmoking__info-text {
  margin-top: 60px;
}
.quitSmoking__info-text strong {
  font-weight: 500;
}
.quitSmoking__sale {
  margin-top: 60px;
  text-align: center;
}
.quitSmoking__sale-title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}
.quitSmoking__sale-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.quitSmoking__sale-image {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.quitSmoking__shops {
  margin-top: 30px;
  text-align: center;
}
.quitSmoking__shops-text {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.quitSmoking__shops-text a {
  color: #666;
  text-decoration: underline;
}
.quitSmoking__shops-text a:hover,
.quitSmoking__shops-text a:focus {
  text-decoration: none;
}
.quitSmoking__brochure {
  margin-top: 90px;
}
.quitSmoking__brochure-title {
  margin: 0 0 30px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
}
.ticket {
  position: relative;
  display: inline-block;
  padding: 13px 54px;
  margin: 0;
  background: #F9FFE9;
  font-size: 24px;
  font-weight: 700;
  color: #95c11f;
  letter-spacing: 3px;
  line-height: 34px;
  -webkit-border-radius: 5.17px;
     -moz-border-radius: 5.17px;
          border-radius: 5.17px;
}
.ticket:before,
.ticket:after {
  content: '';
  position: absolute;
  top: 50%;
  background: #FFFFFF;
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.ticket:before {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ticket:after {
  right: 0;
  -webkit-transform: translate(50%, -50%);
     -moz-transform: translate(50%, -50%);
       -o-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.basketPreview {
  position: absolute;
  top: 64px;
  right: 15px;
}
.basketPreview__toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-flow: column;
  width: 105px;
  height: 110px;
  padding-top: 20px;
  text-decoration: none;
  cursor: pointer;
}
.basketPreview__toggle:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 0;
  background: #fff;
  display: block;
  width: 100%;
  height: 85px;
  pointer-events: none;
  opacity: 0;
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
  z-index: -1;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.basketPreview__toggle-icon {
  position: relative;
}
.basketPreview__toggle-icon svg {
  display: block;
}
.basketPreview__toggle-icon path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.basketPreview__toggle-value {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  margin-top: 7px;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.basketPreview__toggle-counter {
  position: absolute;
  top: -2px;
  right: 6px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  padding: 0 3px;
  height: 25px;
  min-width: 25px;
  background: #95c11f;
  color: #fff;
  border: 2px solid #000;
  -webkit-border-radius: 24px;
     -moz-border-radius: 24px;
          border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  -webkit-transform: translate(100%, 0);
     -moz-transform: translate(100%, 0);
       -o-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: border 250ms ease-in-out;
  -o-transition: border 250ms ease-in-out;
  -moz-transition: border 250ms ease-in-out;
  transition: border 250ms ease-in-out;
}
.basketPreview__toggle-counter:empty {
  display: none;
}
.basketPreview__toggle-close {
  position: absolute;
  top: 5px;
  right: 0;
  width: 24px;
  height: 24px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  -webkit-transform: translate(50%, -50%);
     -moz-transform: translate(50%, -50%);
       -o-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.basketPreview__toggle-close:hover,
.basketPreview__toggle-close:focus {
  opacity: 0.8;
}
.basketPreview__toggle:hover,
.basketPreview__toggle:focus {
  text-decoration: none;
}
.basketPreview__content {
  position: absolute;
  top: 90px;
  right: 0;
  width: 630px;
  background: #fff;
  -webkit-border-radius: 5px 0 10px 10px;
     -moz-border-radius: 5px 0 10px 10px;
          border-radius: 5px 0 10px 10px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.basketPreview__content-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 20px;
  background: #F9FFE9;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
}
.basketPreview__content-footer__shipping {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
  color: #95c11f;
}
.basketPreview__content-footer__shipping img {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  -webkit-transition-delay: 500ms;
     -moz-transition-delay: 500ms;
       -o-transition-delay: 500ms;
          transition-delay: 500ms;
  -webkit-transform-origin: left bottom;
     -moz-transform-origin: left bottom;
       -o-transform-origin: left bottom;
          transform-origin: left bottom;
}
.basketPreview__content-footer__shipping span {
  color: #000;
}
.basketPreview__content-footer__shipping strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
}
.basketPreview__item {
  position: relative;
}
.basketPreview__item-link {
  position: absolute;
  inset: 0;
}
.basketPreview__item-link:hover + .basketPreview__item-inner,
.basketPreview__item-link:focus + .basketPreview__item-inner {
  background: #F8F8F8;
}
.basketPreview__item-inner {
  display: grid;
  padding: 10px 20px 10px 15px;
  grid-template: "image . content . quantity . price . remove" auto / 70px 20px 1fr 20px 72px 0px 100px 5px 18px;
  -webkit-transition: background 250ms ease-in-out;
  -o-transition: background 250ms ease-in-out;
  -moz-transition: background 250ms ease-in-out;
  transition: background 250ms ease-in-out;
}
.basketPreview__item:first-child .basketPreview__item-inner {
  -webkit-border-top-left-radius: 7px;
     -moz-border-radius-topleft: 7px;
          border-top-left-radius: 7px;
  padding-top: 20px;
}
.basketPreview__item:last-child .basketPreview__item-inner {
  padding-bottom: 30px;
}
.basketPreview__item-image {
  border: 1px solid #DEDEDE;
  width: 70px;
  height: 70px;
  grid-area: image;
}
.basketPreview__item-content,
.basketPreview__item-price {
  padding-top: 5px;
}
.basketPreview__item-content {
  grid-area: content;
}
.basketPreview__item-content > * {
  display: block;
  margin: 0 0 5px;
}
.basketPreview__item-content > *:last-child {
  margin-bottom: 0;
}
.basketPreview__item-quantity {
  grid-area: quantity;
}
.basketPreview__item .quantityInput {
  background: #fff;
}
.basketPreview__item-name,
.basketPreview__item-stock,
.basketPreview__item-price {
  font-weight: 500;
}
.basketPreview__item-stock {
  font-size: 13px;
  line-height: 17px;
}
.basketPreview__item-stock.stock-warning {
  color: #ffa500;
}
.basketPreview__item-stock.stock-success {
  color: #95c11f;
}
.basketPreview__item-stock.stock-danger {
  color: #ff0000;
}
.basketPreview__item-stock.stock-info {
  color: #0077e7;
}
.basketPreview__item-price {
  grid-area: price;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  padding-right: 15px;
}
.basketPreview__item-variant {
  color: #999999;
  font-size: 13px;
  line-height: 17px;
}
.basketPreview__item-remove {
  position: relative;
  padding-top: 7px;
  grid-area: remove;
}
.basketPreview__item-remove button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}
.basketPreview__item-remove button:hover .icon,
.basketPreview__item-remove button:focus .icon {
  fill: #fff;
}
.basketPreview__item-remove button:hover .circle,
.basketPreview__item-remove button:focus .circle {
  fill: #ff0000;
  stroke: #ff0000;
}
.basketPreview__item-remove svg {
  width: 18px;
  height: 18px;
  display: block;
}
.basketPreview__item-remove svg path {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
body:not(.open-basketPreview) .basketPreview__toggle:hover,
body:not(.open-basketPreview) .basketPreview__toggle:focus {
  opacity: 0.9;
}
body:not(.open-basketPreview) .basketPreview__toggle-close {
  -webkit-transform: translate(50%, -50%) scale(0);
     -moz-transform: translate(50%, -50%) scale(0);
       -o-transform: translate(50%, -50%) scale(0);
          transform: translate(50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}
body:not(.open-basketPreview) .basketPreview__content {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
}
body:not(.open-basketPreview) .basketPreview__content-footer__shipping img {
  -webkit-transform: translateX(-25px) scale(0.9);
     -moz-transform: translateX(-25px) scale(0.9);
       -o-transform: translateX(-25px) scale(0.9);
          transform: translateX(-25px) scale(0.9);
  opacity: 0;
  -webkit-transition-delay: 150ms;
     -moz-transition-delay: 150ms;
       -o-transition-delay: 150ms;
          transition-delay: 150ms;
}
body.open-basketPreview .basketPreview__toggle:before {
  filter: alpha(opacity=100);
  opacity: 1;
}
body.open-basketPreview .basketPreview__toggle-counter {
  border-color: #fff;
}
body.open-basketPreview .basketPreview__toggle-value {
  color: #000;
}
body.open-basketPreview .basketPreview__toggle-icon path {
  fill: #000;
}
.articleCard {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.articleCard img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.articleCard:not(.articleCard--noLink):hover img,
.articleCard:not(.articleCard--noLink):focus-within img {
  opacity: 0.8;
}
.articleCard:not(.articleCard--noLink):hover .articleCard__title,
.articleCard:not(.articleCard--noLink):focus-within .articleCard__title {
  text-decoration: underline;
}
.articleCard__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.articleCard__title {
  margin: 20px 0 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}
.articleCard__text {
  margin: 10px 0 0;
  color: #666666;
  font-size: 12px;
  line-height: 18px;
}
.articleCard__text p {
  margin: 0;
}
.articleCard__text p:not(:last-child) {
  margin-bottom: 8px;
}
.articleCard__text a {
  position: relative;
  z-index: 1;
}
.box18 {
  position: relative;
  outline: 1px solid #DEDEDE;
  padding: 30px;
}
.box18__icon {
  position: absolute;
  top: -10px;
  right: -10px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px #fff;
     -moz-box-shadow: 0 0 0 10px #fff;
          box-shadow: 0 0 0 10px #fff;
  background: #fff;
}
.box18__title {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  padding-right: 40px;
}
.box18__text {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.box18__text p:last-child {
  margin-bottom: 0;
}
.box18__info {
  font-weight: 500;
  color: #000;
}
.ageVerification__header {
  position: relative;
  padding-right: 120px;
}
.ageVerification__header-title {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  margin: 0 0 24px;
  line-height: 27px;
}
.ageVerification__header-text {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
.ageVerification__header-text p:last-child {
  margin-bottom: 0;
}
.ageVerification__header-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.ageVerification__body-title {
  font-weight: bold;
  font-size: 36px;
  color: #95c11f;
  text-align: center;
  line-height: 48px;
}
.ageVerification__list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ageVerification__list li {
  list-style: none;
}
.ageVerification__card {
  position: relative;
  padding: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: box-shadow 0.25s ease-in-out;
  -moz-transition: box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  isolation: isolate;
}
.ageVerification__card:hover,
.ageVerification__card:focus-within {
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.25);
}
.ageVerification__card-image {
  width: 100%;
  height: auto;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.ageVerification__card-title {
  margin: 32px 0 19px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.ageVerification__card-text {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.ageVerification__card-text a {
  z-index: 1;
  position: relative;
}
.ageVerification__card-button {
  margin-top: 30px;
  position: static;
}
.ageVerification__card-button:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.ageVerification__footer {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
.premium__header h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.premium__header img {
  display: block;
  margin-inline: auto;
}
.premium__content {
  margin-bottom: 100px;
  padding: 60px;
  width: 923px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 15px;
     -moz-border-radius: 15px;
          border-radius: 15px;
}
.premium__info {
  text-align: center;
}
.premium__info-title {
  margin: 0;
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
}
.premium__info-text {
  margin-top: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  max-width: 670px;
  margin-inline: auto;
}
.premium__info-text strong {
  font-weight: 500;
}
.premium__text {
  margin-top: 60px;
  text-align: center;
}
.premium__text-title {
  margin: 40px 0 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}
.premium__text-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.premium__text-image {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.premium__rules {
  margin-top: 120px;
}
.premium__rules-title {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  line-height: 26px;
  text-align: center;
}
.premium__rules-content {
  position: relative;
  max-width: 740px;
  margin: 20px auto 0;
  overflow: hidden;
  -webkit-transition: height 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out;
  -moz-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
}
.premium__rules-content:not(.isActive) {
  height: 511px;
  cursor: pointer;
}
.premium__rules-content:not(.isActive):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  -webkit-box-shadow: 0 0 100px 150px rgba(255, 255, 255, 0.75);
     -moz-box-shadow: 0 0 100px 150px rgba(255, 255, 255, 0.75);
          box-shadow: 0 0 100px 150px rgba(255, 255, 255, 0.75);
}
.premium__rules-content.isActive + .premium__rules-footer {
  display: none;
}
.premium__rules-content ul {
  margin: 0;
  padding: 0;
  counter-reset: rules;
  list-style: none;
}
.premium__rules-content li {
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 25px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.premium__rules-content li p {
  margin: 0 0 15px;
}
.premium__rules-content li p:last-child {
  margin-bottom: 0;
}
.premium__rules-content li:before {
  counter-increment: rules;
  content: counter(rules) ".";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  line-height: 26px;
}
.premium__rules-content li:last-child {
  margin-bottom: 0;
}
.premium__rules-footer {
  margin-top: 30px;
  text-align: center;
}
.carouselBox {
  display: grid;
  grid-template-columns: 760px 400px;
  height: 350px;
  background: #eaeaea;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.carouselBox__list-item {
  display: block;
}
.carouselBox__list-item img {
  display: block;
  width: 760px;
  height: 350px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
     -moz-border-radius-topleft: 10px;
          border-top-left-radius: 10px;
}
.carouselBox__navigation {
  display: block;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
}
.carouselBox__navigation a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 5px 20px;
  height: 70px;
  font-weight: 500;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.carouselBox__navigation a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  border-style: solid;
  border-width: 35px 20px 35px 0;
  border-color: transparent #95c11f transparent transparent;
  -webkit-transform: translateX(-100%);
     -moz-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}
.carouselBox__navigation a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.carouselBox__navigation a:hover,
.carouselBox__navigation a:focus {
  background: #cae08f;
}
.carouselBox__navigation li:first-child a {
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
}
.carouselBox__navigation li:last-child a {
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
}
.carouselBox__navigation li:last-child a:after {
  width: -webkit-calc(100% - 5px);
  width: -moz-calc(100% - 5px);
  width: calc(100% - 5px);
}
.carouselBox__navigation li.is-active a {
  color: #fff;
  background: #95c11f;
}
.carouselBox__navigation li.is-active a:before {
  opacity: 1;
}
.discountOfToday {
  position: relative;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  background-clip: padding-box;
  height: 150px;
  display: grid;
  grid-template: 'info product action counter' auto / 180px 1fr 130px 320px;
}
.discountOfToday > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  text-align: center;
}
.discountOfToday:focus-within {
  border-color: #999;
}
.discountOfToday:not(.discountOfToday--soldOut) .discountOfToday__soldOut {
  display: none;
}
.discountOfToday.discountOfToday--soldOut {
  grid-template-areas: 'info product soldOut soldOut';
}
.discountOfToday.discountOfToday--soldOut .discountOfToday__action,
.discountOfToday.discountOfToday--soldOut .discountOfToday__counter {
  display: none;
}
.discountOfToday.discountOfToday--soldOut .discountOfToday__product {
  opacity: 0.5;
}
.discountOfToday__link {
  position: absolute;
  inset: 0;
}
.discountOfToday__info {
  position: relative;
  grid-area: info;
  background: #FFEDED;
  color: #ff0000;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
     -moz-border-radius-topleft: 10px;
          border-top-left-radius: 10px;
}
.discountOfToday__info-number {
  font-size: 30px;
  line-height: 34px;
  margin-top: 10px;
}
.discountOfToday__info:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  background: #FFEDED;
  -webkit-transform: translate(-webkit-calc(100% - 8px), -50%) rotate(45deg);
     -moz-transform: translate(-moz-calc(100% - 8px), -50%) rotate(45deg);
       -o-transform: translate(calc(100% - 8px), -50%) rotate(45deg);
          transform: translate(calc(100% - 8px), -50%) rotate(45deg);
}
.discountOfToday__product {
  grid-area: product;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 700;
  gap: 30px;
  text-align: left;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.discountOfToday__product img {
  display: block;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
}
.discountOfToday__action {
  grid-area: action;
  text-align: left;
}
.discountOfToday__action .button {
  z-index: 1;
}
.discountOfToday__action-discount {
  font-size: 18px;
  line-height: 20px;
  color: #999;
}
.discountOfToday__action-price {
  font-size: 24px;
  line-height: 27px;
  color: #ff0000;
  font-weight: 700;
  margin-bottom: 10px;
}
.discountOfToday__counter {
  grid-area: counter;
  font-size: 16px;
  font-weight: 700;
}
.discountOfToday__counter-time {
  font-size: 36px;
  color: #95c11f;
}
.discountOfToday__soldOut {
  grid-area: soldOut;
  font-size: 16px;
  font-weight: 700;
}
.discountOfToday__soldOut-title {
  font-size: 36px;
  line-height: 41px;
  color: #ff0000;
  margin-bottom: 5px;
}
.homeTitle {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 24px;
  color: #95c11f;
  line-height: 34px;
}
.brandsCarousel {
  position: relative;
}
.brandsCarousel .brandsCarousel__list:not(.slick-initialized) {
  height: 55px;
  overflow: hidden;
  opacity: 0;
}
.brandsCarousel__prev,
.brandsCarousel__next {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ccc;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.brandsCarousel__prev svg,
.brandsCarousel__next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 13px;
  height: auto;
}
.brandsCarousel__prev:hover,
.brandsCarousel__next:hover,
.brandsCarousel__prev:focus-visible,
.brandsCarousel__next:focus-visible {
  color: #000;
}
.brandsCarousel__prev.slick-disabled,
.brandsCarousel__next.slick-disabled {
  opacity: 0.6;
}
.brandsCarousel__prev {
  left: 0;
}
.brandsCarousel__next {
  right: 0;
}
.brandsCarousel__list {
  margin-right: 55px;
  margin-left: 55px;
  overflow: hidden;
  -webkit-transform: translateX(-6px);
     -moz-transform: translateX(-6px);
       -o-transform: translateX(-6px);
          transform: translateX(-6px);
}
.brandsCarousel__list .slick-track {
  padding-left: 13px;
}
.brandsCarousel__list-item {
  margin-left: 6px;
  margin-right: 6px;
}
.brandsCarousel__list-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  padding: 0 10px;
  width: 150px;
  height: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.brandsCarousel__list-item a:hover,
.brandsCarousel__list-item a:focus {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.brandsCarousel__list-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-filter 250ms ease-in-out;
  transition: -webkit-filter 250ms ease-in-out;
  -o-transition: filter 250ms ease-in-out;
  -moz-transition: filter 250ms ease-in-out;
  transition: filter 250ms ease-in-out;
  transition: filter 250ms ease-in-out, -webkit-filter 250ms ease-in-out;
}
.cardCarousel {
  position: relative;
}
.cardCarousel:not(.initialized) .swiper-button-prev,
.cardCarousel:not(.initialized) .swiper-button-next {
  display: none;
}
.cardCarousel--resetContainer {
  margin-inline: -20px;
}
.cardCarousel--resetContainer:not(.initialized) .swiper-slide:first-child {
  margin-left: 20px;
}
.productCarousel .productList-item {
  margin: 0;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  width: auto;
}
.productCarousel .productList-item-stockInfo .shops {
  position: static;
}
.productCarousel .productList-item-stockInfo .shopsInfo {
  position: absolute;
  inset: -1px;
  -webkit-transform: none;
     -moz-transform: none;
       -o-transform: none;
          transform: none;
  width: -webkit-calc(100% + 2px);
  width: -moz-calc(100% + 2px);
  width: calc(100% + 2px);
  height: -webkit-calc(100% - 120px);
  height: -moz-calc(100% - 120px);
  height: calc(100% - 120px);
}
.productCarousel .productList-item-stockInfo .shopsInfo-body {
  overflow: auto;
  max-height: -webkit-calc(100% - 30px);
  max-height: -moz-calc(100% - 30px);
  max-height: calc(100% - 30px);
}
.productCarousel .productList-item-stockInfo .shopsInfo-body ul {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
.productCarousel .productList-item-stockInfo .shopsInfo:after {
  height: 38px;
}
.productCarousel .productList-item.productList-item--quantityDiscounts .shopsInfo {
  height: -webkit-calc(100% - 120px - 40px);
  height: -moz-calc(100% - 120px - 40px);
  height: calc(100% - 120px - 40px);
}
.productCarousel .productList-item-quantityDiscounts {
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
}
.productCarousel:not(.initialized) .swiper-slide {
  width: 288px;
}
.productCarousel:not(.initialized) .swiper-slide + .swiper-slide {
  margin-left: -1px;
}
.productCarousel--small:not(.initialized) .swiper-slide {
  width: 227px;
}
.productsBox .productList-item {
  background: #fff;
}
.productsBox__header {
  margin-bottom: -10px;
}
.productsBox__nav {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 5px;
}
.productsBox__nav li {
  list-style: none;
}
.productsBox__nav a {
  display: block;
  padding: 11px 20px 22px;
  font-weight: 500;
  font-size: 16px;
  color: #95c11f;
  border: 1px solid #CAE08F;
  background: #F9FFE9;
  line-height: 24px;
  -webkit-border-top-right-radius: 5px;
     -moz-border-radius-topright: 5px;
          border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
     -moz-border-radius-topleft: 5px;
          border-top-left-radius: 5px;
}
.productsBox__nav li.active a {
  color: #fff;
  border-color: #95c11f;
  background: #95c11f;
  text-decoration: none;
}
.mainArticle {
  position: relative;
}
.mainArticle__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 30px;
}
.mainArticle__item img {
  display: block;
  width: 400px;
  height: 200px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.mainArticle__item:hover img,
.mainArticle__item:focus-within img {
  opacity: 0.8;
}
.mainArticle__item:hover .mainArticle__item-title,
.mainArticle__item:focus-within .mainArticle__item-title {
  text-decoration: underline;
}
.mainArticle__item-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mainArticle__item-content {
  padding-bottom: 30px;
}
.mainArticle__item-title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}
.mainArticle__item-text {
  margin: 10px 0 0;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.mainArticle__item-text p {
  margin: 0;
}
.mainArticle__item-text p:not(:last-child) {
  margin-bottom: 10px;
}
.mainArticle__item-text a {
  position: relative;
  z-index: 1;
}
.mainArticle__more {
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: 500;
  z-index: 1;
}
.articleCardCarousel:not(.initialized) .swiper-wrapper {
  gap: 30px;
}
.articleCardCarousel:not(.initialized) .swiper-slide {
  width: 243px;
}
.profileUserBox {
  padding-top: 30px;
  padding-left: 40px;
  padding-bottom: 27px;
  position: relative;
}
.profileUserBox:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 3px;
  background: #cae08f;
}
.profileUserBox-name {
  display: block;
  border-bottom: 1px solid #cae08f;
  font-size: 18px;
  line-height: 55px;
  font-weight: bold;
  color: #000000;
}
.profileUserBox-edit {
  position: absolute;
  right: 17px;
  top: 44px;
  display: block;
  width: 25px;
  height: 25px;
}
.profileUserBox-edit svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: auto;
}
.profileUserBox-edit .fill {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.profileUserBox-edit:hover .fill,
.profileUserBox-edit:focus .fill {
  fill: #669900;
}
.profileNavigation {
  position: relative;
  margin-bottom: 55px;
}
.profileNavigation:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 3px;
  background: #cae08f;
}
.profileNavigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 3px;
}
.profileNavigation li {
  position: relative;
}
.profileNavigation a {
  font-size: 12px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  padding: 12px 0 12px 37px;
  position: relative;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.profileNavigation a svg {
  position: absolute;
  top: 50%;
  right: 20px;
  height: 10px;
  width: auto;
  margin-top: -5px;
}
.profileNavigation a .fill {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  fill: #bfbfbf;
}
.profileNavigation li.active a,
.profileNavigation a:hover,
.profileNavigation a:focus {
  background-color: #f8f8f8;
  color: #95c11f;
  text-decoration: none;
}
.profileNavigation li.active a .fill,
.profileNavigation a:hover .fill,
.profileNavigation a:focus .fill {
  fill: #000;
}
.profileNavigation li.withStar a:before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: 13px;
  background: url('../images/layout/star.svg') no-repeat center;
}
.profileProductList {
  padding-left: 20px;
  position: relative;
}
.profileProductList-header {
  padding-left: 20px;
  padding-bottom: 12px;
}
.profileProductList-header-title {
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.75;
}
.profileProductList-header-title a {
  color: #000000;
  text-decoration: none;
}
.profileProductList-header-title a:hover,
.profileProductList-header-title a:focus {
  text-decoration: underline;
}
.profileProductList-body .productList-item {
  margin: 0 0 -1px;
}
.profileBox-header {
  padding: 44px 0 36px;
  margin-bottom: 5px;
}
.profileBox-header:before,
.profileBox-header:after {
  content: " ";
  display: table;
}
.profileBox-header:after {
  clear: both;
}
.profileBox-header:before,
.profileBox-header:after {
  content: " ";
  display: table;
}
.profileBox-header:after {
  clear: both;
}
.profileBox-header-title {
  float: left;
  font-size: 30px;
  color: #292929;
  font-weight: bold;
  line-height: 0.6;
  margin: 0;
  padding: 0;
}
.profileBox-header-nav {
  float: right;
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
}
.profileBox-header-nav:before,
.profileBox-header-nav:after {
  content: " ";
  display: table;
}
.profileBox-header-nav:after {
  clear: both;
}
.profileBox-header-nav:before,
.profileBox-header-nav:after {
  content: " ";
  display: table;
}
.profileBox-header-nav:after {
  clear: both;
}
.profileBox-header-nav li {
  float: left;
  margin-left: 20px;
}
.profileBox-header-nav li a {
  font-size: 13px;
  display: block;
  text-decoration: underline;
  color: #95c11f;
  line-height: 1.538;
}
.profileBox-header-nav li a:hover,
.profileBox-header-nav li a:focus {
  text-decoration: none;
}
.profileBox-text strong {
  font-weight: 500;
}
.profileBox-text p {
  font-size: 14px;
  color: #000;
  line-height: 1.429;
  margin: 0;
}
.profileBox-info {
  margin-top: 16px;
}
.profileBox-info strong {
  font-weight: 500;
}
.profileBox-info--withIcon {
  padding-left: 30px;
  position: relative;
}
.profileBox-info--withIcon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 30px;
  height: 30px;
  background: url('../images/layout/info.svg') no-repeat top left;
  -webkit-background-size: 18px auto;
     -moz-background-size: 18px auto;
          background-size: 18px auto;
}
.profileBox-info p {
  margin: 0;
  font-size: 14px;
  color: #666666;
  line-height: 1.429;
}
.profileBox-info a {
  text-decoration: underline;
  color: #95c11f;
}
.profileBox-info a:hover,
.profileBox-info a:focus {
  text-decoration: none;
}
.profileBox-pagination:before,
.profileBox-pagination:after {
  content: " ";
  display: table;
}
.profileBox-pagination:after {
  clear: both;
}
.profileBox-pagination:before,
.profileBox-pagination:after {
  content: " ";
  display: table;
}
.profileBox-pagination:after {
  clear: both;
}
.slabsBox .slab-title {
  margin: 0 0 20px;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #000000;
  text-transform: uppercase;
}
.slabsBox .slab-title a,
.slabsBox .slab-title span {
  position: relative;
  display: inline-block;
}
.slabsBox .slab-title a:after,
.slabsBox .slab-title span:after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  display: block;
  width: 18px;
  height: 17px;
  -webkit-transform: translateX(100%) translateY(-50%);
     -moz-transform: translateX(100%) translateY(-50%);
       -o-transform: translateX(100%) translateY(-50%);
          transform: translateX(100%) translateY(-50%);
  background: url('../images/layout/info.svg') no-repeat top left;
  -webkit-background-size: 18px auto;
     -moz-background-size: 18px auto;
          background-size: 18px auto;
}
.slabsBox .slab-title a {
  color: #000000;
  text-decoration: none;
}
.slabsBox .slab-title a:hover,
.slabsBox .slab-title a:focus {
  text-decoration: underline;
}
.slabsBox .slab-anchor {
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  text-decoration: none;
  padding: 30px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.slabsBox .slab-anchor .title {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #666666;
  line-height: 1;
}
.slabsBox .slab-anchor .number {
  display: block;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #95c11f;
  line-height: 1;
  margin: 18px 0 22px;
}
.slabsBox .slab-anchor .text {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #95c11f;
  text-decoration: underline;
  line-height: 1;
}
.slabsBox .slab-anchor:hover,
.slabsBox .slab-anchor:focus {
  border-color: #cae08f;
  background-color: #f9ffe9;
}
.slabsBox .slab-anchor:hover .text,
.slabsBox .slab-anchor:focus .text {
  text-decoration: none;
}
.vouchersBox {
  width: 100%;
}
.vouchersBox:before,
.vouchersBox:after {
  content: " ";
  display: table;
}
.vouchersBox:after {
  clear: both;
}
.vouchersBox:before,
.vouchersBox:after {
  content: " ";
  display: table;
}
.vouchersBox:after {
  clear: both;
}
.vouchersBox-item {
  float: left;
  position: relative;
  border: 1px solid #DEDEDE;
  margin: 0 0 40px;
  width: 100%;
  height: 382px;
}
.vouchersBox-item-anchor {
  display: block;
  padding: 40px 40px 30px;
  width: 100%;
  height: 100%;
}
.vouchersBox-item-anchor:hover,
.vouchersBox-item-anchor:focus {
  text-decoration: none;
}
.vouchersBox-item-anchor:hover .vouchersBox-item-title,
.vouchersBox-item-anchor:focus .vouchersBox-item-title {
  text-decoration: underline;
}
.vouchersBox-item-title {
  font-size: 18px;
  color: #000000;
  margin: 0;
  font-weight: 500;
  line-height: 1.556;
  margin-top: -7px;
}
.vouchersBox-item-stockInfo {
  margin-top: 31px;
  height: 32px;
}
.vouchersBox-item-stockInfo .stock {
  display: block;
  color: #999999;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.vouchersBox-item-stockInfo .stock-default {
  color: #999999;
}
.vouchersBox-item-stockInfo .stock-primary {
  color: #95c11f;
}
.vouchersBox-item-stockInfo .stock-info {
  color: #0077e7;
}
.vouchersBox-item-stockInfo .stock-warning {
  color: #ffa500;
}
.vouchersBox-item-stockInfo .stock-danger {
  color: #ff0000;
}
.vouchersBox-item-stockInfo .shops {
  display: inline-block;
  position: relative;
  font-size: 12px;
  color: #95c11f;
  line-height: 1;
}
.vouchersBox-item-stockInfo .shops-default {
  color: #999999;
}
.vouchersBox-item-stockInfo .shops-primary {
  color: #95c11f;
}
.vouchersBox-item-stockInfo .shops-info {
  color: #0077e7;
}
.vouchersBox-item-stockInfo .shops-warning {
  color: #ffa500;
}
.vouchersBox-item-stockInfo .shops-danger {
  color: #ff0000;
}
.vouchersBox-item-stockInfo .shops-more {
  text-decoration: underline;
}
.vouchersBox-item-stockInfo .shops-more:hover,
.vouchersBox-item-stockInfo .shops-more:focus {
  text-decoration: none;
}
.vouchersBox-item-prices {
  position: absolute;
  right: 196px;
  bottom: 34px;
}
.vouchersBox-item-prices .price {
  color: #f20d0d;
  font-weight: bold;
  font-size: 24px;
  line-height: 0.75;
}
.vouchersBox-item-prices .price-title {
  font-size: 14px;
  color: #666666;
  line-height: 1.286;
  text-align: right;
}
.vouchersBox-item-prices--wide {
  right: 290px;
}
.vouchersBox-item-content {
  width: 800px;
  height: 200px;
  display: block;
  margin-top: 26px;
  background: url('../images/layout/vouchers_bg.jpg') no-repeat center;
  -webkit-background-size: cover;
     -moz-background-size: cover;
          background-size: cover;
  position: relative;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.vouchersBox-item-content-title {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 40px;
  color: #95c11f;
  line-height: 40px;
  text-align: right;
  font-weight: 500;
}
.vouchersBox-item-content-title small {
  display: block;
  font-size: 32px;
  color: #fff;
  font-weight: 300;
}
.vouchersBox-item-content-info {
  position: absolute;
  right: 40px;
  bottom: 20px;
  font-size: 14px;
  color: #666666;
  line-height: 1.429;
  text-align: right;
}
.vouchersBox-item-content-logo {
  position: absolute;
  left: 20px;
  bottom: 15px;
  display: block;
  width: auto;
  height: 70px;
}
.vouchersBox-item-btn {
  position: absolute;
  bottom: 30px;
  right: 40px;
  padding-left: 21px;
  padding-right: 21px;
  min-width: 116px;
}
.vouchersBox-item-btn--wide {
  min-width: 210px;
}
.vouchersBox-item-btn.btn-default-gradient {
  background: #ccc;
  color: #fff;
}
.vouchersBox-item-btn.btn-default-gradient:focus,
.vouchersBox-item-btn.btn-default-gradient.focus {
  background: #bbb;
}
.vouchersBox-item-btn.btn-default-gradient:hover {
  background: #bbb;
}
.vouchersBox-item-btn.btn-default-gradient:active,
.vouchersBox-item-btn.btn-default-gradient.active,
.open > .dropdown-toggle.vouchersBox-item-btn.btn-default-gradient {
  background: #bbb;
}
.vouchersBox-item-btn.btn-default-gradient:active:hover,
.vouchersBox-item-btn.btn-default-gradient.active:hover,
.open > .dropdown-toggle.vouchersBox-item-btn.btn-default-gradient:hover,
.vouchersBox-item-btn.btn-default-gradient:active:focus,
.vouchersBox-item-btn.btn-default-gradient.active:focus,
.open > .dropdown-toggle.vouchersBox-item-btn.btn-default-gradient:focus,
.vouchersBox-item-btn.btn-default-gradient:active.focus,
.vouchersBox-item-btn.btn-default-gradient.active.focus,
.open > .dropdown-toggle.vouchersBox-item-btn.btn-default-gradient.focus {
  background: #bbb;
}
.vouchersBox-item-btn.btn-default-gradient:active,
.vouchersBox-item-btn.btn-default-gradient.active,
.open > .dropdown-toggle.vouchersBox-item-btn.btn-default-gradient {
  background-image: none;
}
.vouchersBox-item-btn.btn-default-gradient.disabled,
.vouchersBox-item-btn.btn-default-gradient[disabled],
fieldset[disabled] .vouchersBox-item-btn.btn-default-gradient,
.vouchersBox-item-btn.btn-default-gradient.disabled:hover,
.vouchersBox-item-btn.btn-default-gradient[disabled]:hover,
fieldset[disabled] .vouchersBox-item-btn.btn-default-gradient:hover,
.vouchersBox-item-btn.btn-default-gradient.disabled:focus,
.vouchersBox-item-btn.btn-default-gradient[disabled]:focus,
fieldset[disabled] .vouchersBox-item-btn.btn-default-gradient:focus,
.vouchersBox-item-btn.btn-default-gradient.disabled.focus,
.vouchersBox-item-btn.btn-default-gradient[disabled].focus,
fieldset[disabled] .vouchersBox-item-btn.btn-default-gradient.focus,
.vouchersBox-item-btn.btn-default-gradient.disabled:active,
.vouchersBox-item-btn.btn-default-gradient[disabled]:active,
fieldset[disabled] .vouchersBox-item-btn.btn-default-gradient:active,
.vouchersBox-item-btn.btn-default-gradient.disabled.active,
.vouchersBox-item-btn.btn-default-gradient[disabled].active,
fieldset[disabled] .vouchersBox-item-btn.btn-default-gradient.active {
  background: #bbb;
}
.vouchersBox-item-btn.btn-default-gradient .badge {
  color: #fff;
  background-color: #bbb;
}
.vouchersBox-item-btn.withShoppingCart {
  padding-right: 50px;
  padding-left: 21px;
}
.vouchersBox-item-btn.withShoppingCart svg {
  right: 19px;
}
.shoppingListsBox ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-left: -10px;
  margin-right: -10px;
}
.shoppingListsBox ul:before,
.shoppingListsBox ul:after {
  content: " ";
  display: table;
}
.shoppingListsBox ul:after {
  clear: both;
}
.shoppingListsBox ul:before,
.shoppingListsBox ul:after {
  content: " ";
  display: table;
}
.shoppingListsBox ul:after {
  clear: both;
}
.shoppingListsBox-item {
  float: left;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.shoppingListsBox-item a {
  width: 422px;
  height: 162px;
  border: 1px solid #ccc;
  background: #fff;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.shoppingListsBox-item a .name {
  font-size: 18px;
  display: block;
  color: #000;
  line-height: 1.556;
  font-weight: 500;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.shoppingListsBox-item a .linkBox {
  font-size: 13px;
  color: #95c11f;
  line-height: 2.154;
  margin-top: 20px;
}
.shoppingListsBox-item a .linkBox .link {
  text-decoration: underline;
}
.shoppingListsBox-item a .linkBox .count {
  color: #666666;
}
.shoppingListsBox-item a:hover,
.shoppingListsBox-item a:focus {
  border-color: #CAE08F;
  background-color: #F9FFE9;
}
.shoppingListsBox-item a:hover .name,
.shoppingListsBox-item a:focus .name {
  color: #95c11f;
  text-decoration: underline;
}
.shoppingListsBox-item a:hover .linkBox .link,
.shoppingListsBox-item a:focus .linkBox .link {
  text-decoration: none;
}
.shoppingListsBox-item--new a {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  padding-left: 65px;
  position: relative;
  overflow: hidden;
}
.shoppingListsBox-item--new a .linkBox .link {
  position: relative;
  padding-top: 68px;
  display: block;
}
.shoppingListsBox-item--new a .linkBox .link svg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 52px;
  height: 52px;
}
.shoppingListsBox-item--new a .bg {
  position: absolute;
  bottom: -15px;
  right: 20px;
  width: 155px;
  height: auto;
}
.productCard {
  border: 1px solid #ccc;
  background: #fff;
  padding: 20px;
  height: 333px;
  position: relative;
  margin-bottom: 20px;
  -webkit-transition: background 250ms ease-in-out;
  -o-transition: background 250ms ease-in-out;
  -moz-transition: background 250ms ease-in-out;
  transition: background 250ms ease-in-out;
}
.productCard:before,
.productCard:after {
  content: " ";
  display: table;
}
.productCard:after {
  clear: both;
}
.productCard:before,
.productCard:after {
  content: " ";
  display: table;
}
.productCard:after {
  clear: both;
}
.productCard:hover {
  background: #f8f8f8;
}
.productCard-col-1 {
  float: left !important;
  width: 240px;
}
.productCard-col-2 {
  float: right !important;
  width: 540px;
  margin-right: 20px;
}
.productCard-image {
  width: 240px;
  height: 240px;
}
.productCard-date {
  font-size: 14px;
  color: #666666;
  line-height: 1.429;
  padding-top: 20px;
  display: block;
}
.productCard-title {
  margin: 0;
  font-size: 18px;
  color: #000000;
  line-height: 1.333;
  height: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.productCard-descriptions:before,
.productCard-descriptions:after {
  content: " ";
  display: table;
}
.productCard-descriptions:after {
  clear: both;
}
.productCard-descriptions:before,
.productCard-descriptions:after {
  content: " ";
  display: table;
}
.productCard-descriptions:after {
  clear: both;
}
.productCard-description {
  margin-top: 10px;
  width: 260px;
}
.productCard-description:before,
.productCard-description:after {
  content: " ";
  display: table;
}
.productCard-description:after {
  clear: both;
}
.productCard-description:before,
.productCard-description:after {
  content: " ";
  display: table;
}
.productCard-description:after {
  clear: both;
}
.productCard-description-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.358;
  font-weight: 500;
}
.productCard-description-textarea {
  display: block;
  margin-top: 7px;
  border: 1px solid #ccc;
  background: #fff;
  height: 102px;
  overflow-y: auto;
  resize: none;
  padding: 20px;
  font-size: 14px;
  color: #000000;
  line-height: 1.429;
  width: 260px;
}
.productCard-description--plus {
  float: left;
}
.productCard-description--plus .productCard-description-title {
  color: #95c11f;
}
.productCard-description--minus {
  float: right;
}
.productCard-description--minus .productCard-description-title {
  color: #ff0000;
}
.productCard-info {
  padding-left: 30px;
  margin-top: 20px;
  position: relative;
}
.productCard-info:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 30px;
  height: 30px;
  background: url('../images/layout/info.svg') no-repeat top left;
  -webkit-background-size: 18px auto;
     -moz-background-size: 18px auto;
          background-size: 18px auto;
}
.productCard-info p {
  margin: 0;
  font-size: 14px;
  color: #666666;
  line-height: 1.429;
}
.productCard-info a {
  text-decoration: underline;
  color: #95c11f;
}
.productCard-info a:hover,
.productCard-info a:focus {
  text-decoration: none;
}
.productCard-rating {
  position: absolute;
  bottom: 36px;
  left: 300px;
  height: 20px;
}
.productCard-button {
  position: absolute;
  right: 40px;
  bottom: 30px;
}
.voucherInfo {
  text-align: center;
  height: 112px;
  border: 1px solid #ccc;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  position: relative;
  padding-right: 150px;
}
.voucherInfo-title {
  font-size: 18px;
  color: #666666;
  line-height: 1.167;
  margin: 0 10px;
}
.voucherInfo-number {
  color: #95c11f;
  font-size: 36px;
  font-weight: bold;
  line-height: 0.583;
  margin: 0 10px;
}
.voucherInfo--withMascot-1 > .mascot {
  top: -16px;
  right: 20px;
  position: absolute;
  width: 130px;
  height: 140px;
  z-index: 1;
  background: url('../images/mascot/mascot-1.svg') no-repeat top right;
}
.discussionBox-item {
  border: 1px solid #ccc;
  background: #fff;
  margin-bottom: 20px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  padding: 30px 40px 30px 110px;
  position: relative;
}
.discussionBox-item:hover,
.discussionBox-item:focus,
.discussionBox-item.active {
  background: #f8f8f8;
}
.discussionBox-item-header {
  position: relative;
  padding-bottom: 14.5px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.discussionBox-item-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: auto;
}
.discussionBox-item-icon .arrow {
  opacity: 0;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  -webkit-transform-origin: 12px 10px;
     -moz-transform-origin: 12px 10px;
       -o-transform-origin: 12px 10px;
          transform-origin: 12px 10px;
}
.discussionBox-item-icon .dots path {
  opacity: 1;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.discussionBox-item-productImage {
  position: absolute;
  top: -5px;
  left: -70px;
}
.discussionBox-item-productImage img {
  width: 50px;
  height: 50px;
}
.discussionBox-item-date {
  margin: 5px 0 0;
  font-size: 12px;
  color: #666666;
  line-height: 1.251;
}
.discussionBox-item-productName {
  margin: 0;
  font-size: 13px;
  color: #95c11f;
  line-height: 1.155;
}
.discussionBox-item-productName a {
  color: #95c11f;
  text-decoration: underline;
}
.discussionBox-item-productName a:hover,
.discussionBox-item-productName a:focus {
  text-decoration: none;
}
.discussionBox-item-text {
  font-size: 14px;
  color: #000;
  line-height: 1.429;
  margin-top: 29px;
}
.discussionBox-item-body {
  display: none;
}
.discussionBox-item-answers {
  padding-left: 40px;
  border-left: 1px solid #ccc;
}
.discussionBox-item-answer {
  padding: 18px 0 18px;
}
.discussionBox-item-answer-header {
  font-size: 12px;
  line-height: 1.251;
}
.discussionBox-item-answer-name {
  color: #000;
  font-weight: 500;
  display: inline-block;
  padding-right: 5px;
}
.discussionBox-item-answer-date {
  display: inline-block;
  color: #666666;
}
.discussionBox-item-answer-body {
  font-size: 14px;
  color: #666666;
  line-height: 1.429;
  margin-top: 6px;
}
.discussionBox-item-answer-footer {
  margin-top: 4.5px;
}
.discussionBox-item-answer-footer:before,
.discussionBox-item-answer-footer:after {
  content: " ";
  display: table;
}
.discussionBox-item-answer-footer:after {
  clear: both;
}
.discussionBox-item-answer-footer:before,
.discussionBox-item-answer-footer:after {
  content: " ";
  display: table;
}
.discussionBox-item-answer-footer:after {
  clear: both;
}
.discussionBox-item-answer .discussionBox-item-answers {
  margin-top: 20px;
}
.discussionBox-item-footer:before,
.discussionBox-item-footer:after {
  content: " ";
  display: table;
}
.discussionBox-item-footer:after {
  clear: both;
}
.discussionBox-item-footer:before,
.discussionBox-item-footer:after {
  content: " ";
  display: table;
}
.discussionBox-item-footer:after {
  clear: both;
}
.discussionBox-item-reactions {
  float: left;
  margin: 0 12px 0 0;
  padding: 0;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  font-size: 14px;
  color: #95c11f;
  text-decoration: underline;
  line-height: 1.429;
}
.discussionBox-item-reactions:hover,
.discussionBox-item-reactions:focus {
  text-decoration: none;
}
.discussionBox-item-likes {
  float: left;
  margin: 1px 7px 0 0;
  padding: 0 5px;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  font-size: 12px;
  color: #999;
  line-height: 1.429;
  display: block;
}
.discussionBox-item-likes:before,
.discussionBox-item-likes:after {
  content: " ";
  display: table;
}
.discussionBox-item-likes:after {
  clear: both;
}
.discussionBox-item-likes:before,
.discussionBox-item-likes:after {
  content: " ";
  display: table;
}
.discussionBox-item-likes:after {
  clear: both;
}
.discussionBox-item-likes-icon {
  float: left;
  width: 16px;
  height: 16px;
}
.discussionBox-item-likes-icon .fill {
  fill: #ccc;
}
.discussionBox-item-likes-icon--active .fill {
  fill: #95c11f;
}
.discussionBox-item-likes-count {
  float: left;
  margin-left: 6px;
}
.discussionBox-item--hasAnswers {
  cursor: pointer;
}
.discussionBox-item--hasAnswers .discussionBox-item-icon .arrow {
  opacity: 1;
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}
.discussionBox-item--hasAnswers .discussionBox-item-icon .dots path {
  opacity: 0;
}
.discussionBox-item--active {
  background: #f8f8f8;
}
.discussionBox-item--active .discussionBox-item-header {
  padding-bottom: 6px;
}
.discussionBox-item--active .discussionBox-item-footer {
  padding-top: 22px;
}
.discussionBox-item--active .discussionBox-item-icon .arrow {
  opacity: 1;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.discussionBox-item--active .discussionBox-item-icon .dots path {
  opacity: 0;
}
.discussionBox-footer {
  text-align: center;
  position: relative;
}
.discussionBox-footer .pagination {
  position: absolute;
  top: 0;
  right: 0;
}
a.discussionBox-item-likes:hover .discussionBox-item-likes-icon .fill,
button.discussionBox-item-likes:hover .discussionBox-item-likes-icon .fill,
a.discussionBox-item-likes:focus .discussionBox-item-likes-icon .fill,
button.discussionBox-item-likes:focus .discussionBox-item-likes-icon .fill {
  fill: #95c11f;
}
.questionsBox-item {
  border: 1px solid #ccc;
  background: #fff;
  margin-bottom: 20px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  padding: 36px 40px 40px;
  position: relative;
}
.questionsBox-item-header {
  position: relative;
  padding-bottom: 14.5px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.questionsBox-item-date {
  margin: 0 0 0 20px;
  font-size: 14px;
  color: #999;
  line-height: 16px;
  display: inline-block;
  font-weight: normal;
}
.questionsBox-item-name {
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 19px;
  font-weight: 500;
}
.questionsBox-item-name a {
  color: #95c11f;
  text-decoration: underline;
}
.questionsBox-item-name a:hover,
.questionsBox-item-name a:focus {
  text-decoration: none;
}
.questionsBox-item-text {
  font-size: 14px;
  color: #000;
  line-height: 24px;
  margin-top: 17px;
}
.questionsBox-item-answers {
  padding-left: 40px;
  border-left: 1px solid #ccc;
  background: #fff;
  margin-bottom: 30px;
}
.questionsBox-item-answer {
  padding: 18px 18px 18px 0;
}
.questionsBox-item-answer-header {
  font-size: 12px;
  line-height: 1.251;
}
.questionsBox-item-answer-name {
  color: #000;
  font-weight: 500;
  display: inline-block;
  padding-right: 5px;
}
.questionsBox-item-answer-date {
  display: inline-block;
  color: #999;
}
.questionsBox-item-answer-body {
  font-size: 14px;
  color: #000;
  line-height: 24px;
  margin-top: 17px;
}
.questionsBox-item-answer-footer {
  margin-top: 24px;
}
.questionsBox-item-answer-footer:before,
.questionsBox-item-answer-footer:after {
  content: " ";
  display: table;
}
.questionsBox-item-answer-footer:after {
  clear: both;
}
.questionsBox-item-answer-footer:before,
.questionsBox-item-answer-footer:after {
  content: " ";
  display: table;
}
.questionsBox-item-answer-footer:after {
  clear: both;
}
.questionsBox-item-answer .questionsBox-item-answers {
  margin-top: 20px;
}
.questionsBox-item-answer--primary {
  background: #F9FFE9;
  padding: 30px;
}
.questionsBox-item-answer--primary .questionsBox-item-answer-name {
  color: #95c11f;
}
.questionsBox-item-footer:before,
.questionsBox-item-footer:after {
  content: " ";
  display: table;
}
.questionsBox-item-footer:after {
  clear: both;
}
.questionsBox-item-footer:before,
.questionsBox-item-footer:after {
  content: " ";
  display: table;
}
.questionsBox-item-footer:after {
  clear: both;
}
.questionsBox-item-reactions {
  float: left;
  margin: 0 12px 0 0;
  padding: 0;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  font-size: 14px;
  color: #95c11f;
  text-decoration: underline;
  line-height: 1.429;
}
.questionsBox-item-reactions:hover,
.questionsBox-item-reactions:focus {
  text-decoration: none;
}
.questionsBox-item-likes {
  float: left;
  margin: 1px 7px 0 0;
  padding: 0 5px;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  font-size: 12px;
  color: #999;
  line-height: 1.429;
  display: block;
}
.questionsBox-item-likes:before,
.questionsBox-item-likes:after {
  content: " ";
  display: table;
}
.questionsBox-item-likes:after {
  clear: both;
}
.questionsBox-item-likes:before,
.questionsBox-item-likes:after {
  content: " ";
  display: table;
}
.questionsBox-item-likes:after {
  clear: both;
}
.questionsBox-item-likes-icon {
  float: left;
  width: 16px;
  height: 16px;
}
.questionsBox-item-likes-icon .fill {
  fill: #ccc;
}
.questionsBox-item-likes-icon--active .fill {
  fill: #95c11f;
}
.questionsBox-item-likes-count {
  float: left;
  margin-left: 6px;
}
.questionsBox-item--active {
  background: #f8f8f8;
}
.questionsBox-item--active .questionsBox-item-header {
  padding-bottom: 6px;
}
.questionsBox-item--active .questionsBox-item-footer {
  padding-top: 22px;
}
.questionsBox-item--active .questionsBox-item-icon .arrow {
  opacity: 1;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.questionsBox-item--active .questionsBox-item-icon .dots path {
  opacity: 0;
}
.questionsBox-footer {
  text-align: center;
  position: relative;
}
.questionsBox-footer .pagination {
  position: absolute;
  top: 0;
  right: 0;
}
a.questionsBox-item-likes:hover .questionsBox-item-likes-icon .fill,
button.questionsBox-item-likes:hover .questionsBox-item-likes-icon .fill,
a.questionsBox-item-likes:focus .questionsBox-item-likes-icon .fill,
button.questionsBox-item-likes:focus .questionsBox-item-likes-icon .fill {
  fill: #95c11f;
}
.reviewsBox-item {
  border: 1px solid #CCCCCC;
  margin-bottom: 20px;
  padding: 37px 40px 40px;
  position: relative;
}
.reviewsBox-item-header__nameBox {
  display: block;
}
.reviewsBox-item-header__name {
  display: inline-block;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-right: 20px;
}
.reviewsBox-item-header__date {
  display: inline-block;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.reviewsBox-item-header__rating {
  position: absolute;
  top: 38px;
  right: 40px;
}
.reviewsBox-item-body {
  padding-top: 30px;
}
.reviewsBox-item-body:before,
.reviewsBox-item-body:after {
  content: " ";
  display: table;
}
.reviewsBox-item-body:after {
  clear: both;
}
.reviewsBox-item-body:before,
.reviewsBox-item-body:after {
  content: " ";
  display: table;
}
.reviewsBox-item-body:after {
  clear: both;
}
.reviewsBox-item-body__left {
  float: left;
  width: 390px;
}
.reviewsBox-item-body__right {
  float: right;
  width: 345px;
}
.reviewsBox-item-body__list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.reviewsBox-item-body__list li {
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: #000;
  line-height: 16px;
  margin-bottom: 14px;
}
.reviewsBox-item-body__list li:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-background-size: 20px auto;
     -moz-background-size: 20px auto;
          background-size: 20px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.reviewsBox-item-body__list--plus li:before {
  background-image: url('../images/layout/plus.svg');
}
.reviewsBox-item-body__list--minus li:before {
  background-image: url('../images/layout/minus.svg');
}
.brochure-collapse {
  padding: 0 40px;
}
.brochure-collapse__item {
  margin-bottom: 10px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.brochure-collapse__item-button {
  position: relative;
  display: block;
  padding: 17px 50px 17px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #95c11f;
  text-decoration: none;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.brochure-collapse__item-button .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 20px;
  color: #95c11f;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  -o-transition: -o-transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out, -moz-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out, -moz-transform 250ms ease-in-out, -o-transform 250ms ease-in-out;
  margin-top: -10px;
  line-height: 1;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.brochure-collapse__item-button:hover,
.brochure-collapse__item-button:focus {
  text-decoration: none;
  color: #95c11f;
}
.brochure-collapse__item-body {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  padding: 0 20px 17px;
}
.brochure-collapse__item-body p:last-child {
  margin-bottom: 0;
}
.brochure-collapse__item.collapsed {
  background: #F8F8F8;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.brochure-collapse__item.collapsed .brochure-collapse__item-button {
  text-decoration: none;
  color: #000;
}
.brochure-collapse__item.collapsed .brochure-collapse__item-button .icon {
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #000;
}
.brochure-collapse__item.collapsed .brochure-collapse__item-button:hover,
.brochure-collapse__item.collapsed .brochure-collapse__item-button:focus {
  text-decoration: none;
  color: #95c11f;
  background: #FFFFFF;
  -webkit-box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 25px 0 rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.brochure-collapse--video .brochure-collapse__item {
  background: #F9FFE9;
}
.brochure-collapse--video .brochure-collapse__item-button {
  font-size: 18px;
  padding: 20px 50px 22px 70px;
}
.brochure-collapse--video .brochure-collapse__item-button img {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 36px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.brochure-collapse--video .brochure-collapse__item-body {
  margin: -8px;
}
.brochure-collapse--video .brochure-collapse__item-body:before,
.brochure-collapse--video .brochure-collapse__item-body:after {
  content: " ";
  display: table;
}
.brochure-collapse--video .brochure-collapse__item-body:after {
  clear: both;
}
.brochure-collapse--video .brochure-collapse__item-body:before,
.brochure-collapse--video .brochure-collapse__item-body:after {
  content: " ";
  display: table;
}
.brochure-collapse--video .brochure-collapse__item-body:after {
  clear: both;
}
.brochure-collapse--video .brochure-collapse__item-body .videoItem {
  float: left;
  width: 25%;
  padding: 8px;
}
.brochure-collapse--video .brochure-collapse__item-body .videoItem--wide {
  width: 50%;
}
.brochure-collapse--video .brochure-collapse__item.collapsed {
  background: #F9FFE9;
}
.brochure-collapse--video .brochure-collapse__item.collapsed .brochure-collapse__item-button {
  color: #95c11f;
}
.brochure-collapse--video .brochure-collapse__item.collapsed .brochure-collapse__item-button .icon {
  color: #95c11f;
}
.brochure-collapse--video .brochure-collapse__item.collapsed .brochure-collapse__item-button:hover,
.brochure-collapse--video .brochure-collapse__item.collapsed .brochure-collapse__item-button:focus {
  background: #F9FFE9;
}
.brochure-switch {
  text-align: center;
}
.brochure-switch__header p {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 18px;
  color: #95c11f;
  line-height: 26px;
}
.brochure-switch__footer p {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  line-height: 26px;
}
.brochure-alert {
  display: inline-block;
  position: relative;
  padding: 19px 30px 19px 69px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 24px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  max-width: 1120px;
  text-align: left;
}
.brochure-alert .icon {
  top: 20px;
  left: 30px;
  position: absolute;
  font-size: 24px;
}
.brochure-alert--info {
  background: #E7F3FF;
  color: #0077E7;
}
.brochure-alert--info .icon {
  color: #7FBBF3;
}
.brochure-text p {
  font-size: 14px;
  color: #000;
  line-height: 24px;
  text-align: center;
}
.brochure-text p:last-child {
  margin-bottom: 0;
}
.brochure-text strong {
  font-weight: 500;
}
.brochure-text--lighter p {
  color: #333333;
}
.brochure-text--primary p {
  color: #95c11f;
}
.brochure-text--bigger p {
  font-size: 16px;
}
.brochure-text--big p {
  font-size: 18px;
  line-height: 26px;
}
.brochure-button {
  padding-right: 67px !important;
  padding-left: 30px;
}
.brochure-button i {
  width: 22px;
  height: 22px;
  top: 10px;
  right: 26px;
}
.brochure-download {
  display: inline-block;
  position: relative;
  padding: 15px 30px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 24px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  max-width: 1120px;
  text-align: left;
}
.brochure-download .icon {
  top: 20px;
  left: 30px;
  position: absolute;
  font-size: 24px;
}
.brochure-download--info {
  background: #E7F3FF;
  color: #0077E7;
}
.brochure-download--info .icon {
  color: #7FBBF3;
}
.brochure-productCatalog {
  padding-right: 25px;
  padding-left: 25px;
}
.brochure-productCatalog:before,
.brochure-productCatalog:after {
  content: " ";
  display: table;
}
.brochure-productCatalog:after {
  clear: both;
}
.brochure-productCatalog:before,
.brochure-productCatalog:after {
  content: " ";
  display: table;
}
.brochure-productCatalog:after {
  clear: both;
}
.brochure-productCard {
  display: block;
  text-decoration: none;
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: background 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: box-shadow 0.25s ease-in-out, background 0.25s ease-in-out;
  -moz-transition: box-shadow 0.25s ease-in-out, background 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, background 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, background 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  cursor: pointer;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.brochure-productCard:before {
  position: absolute;
  content: "\78";
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #F2F2F2;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.brochure-productCard:hover,
.brochure-productCard:focus {
  text-decoration: none;
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.15);
}
.brochure-productCard.isActive {
  background: #F9FFE9;
}
.brochure-productCard.isActive:before {
  color: #95c11f;
}
.brochure-productCard.isActive .brochure-productCard__button .button {
  background: #669900;
}
.brochure-productCard--1 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  float: left;
  margin-left: 15px;
  margin-right: 15px;
  width: 545px;
  height: 570px;
}
.brochure-productCard--1:before {
  top: 30px;
  right: 30px;
  font-size: 48px;
}
.brochure-productCard--1 .brochure-productCard__image {
  width: 265px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.brochure-productCard--1 .brochure-productCard__image img {
  max-width: 100%;
  max-height: 100%;
}
.brochure-productCard--1 .brochure-productCard__inner {
  width: 280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  padding: 70px 50px 70px 0;
}
.brochure-productCard--1 .brochure-productCard__title {
  font-weight: bold;
  font-size: 24px;
  color: #000;
  line-height: 34px;
}
.brochure-productCard--1 .brochure-productCard__benefits {
  margin-top: 30px;
}
.brochure-productCard--1 .brochure-productCard__benefits-title {
  font-weight: 500;
  font-size: 14px;
  color: #95c11f;
}
.brochure-productCard--1 .brochure-productCard__benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 14px;
}
.brochure-productCard--1 .brochure-productCard__benefits-list li {
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
  font-size: 13px;
  color: #000;
}
.brochure-productCard--1 .brochure-productCard__benefits-list li:last-child {
  margin-bottom: 0;
}
.brochure-productCard--1 .brochure-productCard__benefits-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\4b";
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #95c11f;
}
.brochure-productCard--1 .brochure-productCard__recommendation {
  margin-top: 30px;
}
.brochure-productCard--1 .brochure-productCard__recommendation-title {
  font-weight: 500;
  font-size: 14px;
  color: #95c11f;
}
.brochure-productCard--1 .brochure-productCard__recommendation-item {
  margin-top: 20px;
}
.brochure-productCard--1 .brochure-productCard__recommendation-item-title {
  font-size: 13px;
  color: #000;
}
.brochure-productCard--1 .brochure-productCard__recommendation-item-progress {
  position: relative;
  margin-top: 7px;
  height: 17px;
  border: 2px solid #fff;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.brochure-productCard--1 .brochure-productCard__recommendation-item-progress:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EFEFEF;
  -webkit-box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
}
.brochure-productCard--1 .brochure-productCard__recommendation-item-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  overflow: hidden;
}
.brochure-productCard--1 .brochure-productCard__recommendation-item-progress-line:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-box-shadow: inset 1px 0 3px 0 rgba(0, 0, 0, 0.15);
     -moz-box-shadow: inset 1px 0 3px 0 rgba(0, 0, 0, 0.15);
          box-shadow: inset 1px 0 3px 0 rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  z-index: 1;
}
.brochure-productCard--1 .brochure-productCard__recommendation-item-progress-line:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 226px;
  height: 13px;
  -webkit-border-radius: 20px;
     -moz-border-radius: 20px;
          border-radius: 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(#FF9900), to(#98D100));
  background-image: -webkit-linear-gradient(left, #FF9900 0%, #98D100 100%);
  background-image: -moz-linear-gradient(left, #FF9900 0%, #98D100 100%);
  background-image: -o-linear-gradient(left, #FF9900 0%, #98D100 100%);
  background-image: linear-gradient(90deg, #FF9900 0%, #98D100 100%);
}
.brochure-productCard--1 .brochure-productCard__price {
  margin-top: 30px;
}
.brochure-productCard--1 .brochure-productCard__price-title {
  font-weight: 500;
  font-size: 14px;
  color: #95c11f;
}
.brochure-productCard--1 .brochure-productCard__price-value {
  font-weight: bold;
  font-size: 24px;
  color: #FF0000;
  line-height: 34px;
}
.brochure-productCard--1 .brochure-productCard__variants {
  margin-top: 30px;
}
.brochure-productCard--1 .brochure-productCard__button {
  margin-top: 30px;
}
.brochure-productCard--2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  float: left;
  margin-left: 15px;
  margin-right: 15px;
  width: 545px;
  min-height: 270px;
}
.brochure-productCard--2:before {
  top: 20px;
  right: 20px;
  font-size: 36px;
}
.brochure-productCard--2 .brochure-productCard__image {
  width: 280px;
  height: 270px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.brochure-productCard--2 .brochure-productCard__image img {
  width: 210px;
  height: 210px;
}
.brochure-productCard--2 .brochure-productCard__inner {
  width: 265px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  padding: 20px 50px 20px 0;
}
.brochure-productCard--2 .brochure-productCard__title {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 26px;
}
.brochure-productCard--2 .brochure-productCard__benefits {
  margin: 0;
  padding: 0;
  margin-top: 27px;
  list-style: none;
}
.brochure-productCard--2 .brochure-productCard__benefits li {
  margin: 0;
  padding: 0;
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
  font-size: 13px;
  color: #000;
}
.brochure-productCard--2 .brochure-productCard__benefits li:last-child {
  margin-bottom: 0;
}
.brochure-productCard--2 .brochure-productCard__benefits li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\4b";
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #95c11f;
}
.brochure-productCard--2 .brochure-productCard__panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-top: 30px;
}
.brochure-productCard--2 .brochure-productCard__price {
  width: 90px;
  font-weight: 500;
  font-size: 18px;
  color: #FF0000;
  line-height: 26px;
}
.brochure-productCard--3 {
  position: relative;
  float: left;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
  padding: 30px;
  width: 257px;
  min-height: 403px;
}
.brochure-productCard--3:before {
  top: 20px;
  right: 20px;
  font-size: 36px;
}
.brochure-productCard--3 .brochure-productCard__image {
  width: 200px;
  height: 200px;
}
.brochure-productCard--3 .brochure-productCard__image img {
  width: 200px;
  height: 200px;
}
.brochure-productCard--3 .brochure-productCard__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  line-height: 24px;
  margin-top: 6px;
  height: 96px;
}
.brochure-productCard--3 .brochure-productCard__panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-top: 10px;
}
.brochure-productCard--3 .brochure-productCard__price {
  width: 84px;
  font-weight: 500;
  font-size: 18px;
  color: #FF0000;
  line-height: 26px;
}
.brochure-productCard--4 {
  position: relative;
  float: left;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
  padding: 30px;
  width: 257px;
  min-height: 426px;
}
.brochure-productCard--4:before {
  display: none;
}
.brochure-productCard--4 .brochure-productCard__image {
  width: 200px;
  height: 200px;
}
.brochure-productCard--4 .brochure-productCard__image img {
  width: 200px;
  height: 200px;
}
.brochure-productCard--4 .brochure-productCard__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  line-height: 24px;
  margin-top: 6px;
  height: 96px;
}
.brochure-productCard--4 .brochure-productCard__select {
  margin-top: 20px;
}
.brochure-productCard--4 .brochure-productCard__panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  margin-top: 25px;
}
.brochure-productCard--4 .brochure-productCard__price {
  width: 84px;
  font-weight: 500;
  font-size: 18px;
  color: #FF0000;
  line-height: 26px;
}
.brochure-productCard--4 .brochure-productCard__stockInfo {
  height: 34px;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .stock {
  display: block;
  font-size: 13px;
  color: #cccccc;
  line-height: 1.286;
  font-weight: 500;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .stock-default {
  color: #cccccc;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .stock-primary {
  color: #95c11f;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .stock-info {
  color: #0077e7;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .stock-warning {
  color: #ffa500;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .stock-danger {
  color: #ff0000;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops {
  display: block;
  font-size: 12px;
  color: #95c11f;
  line-height: 1.286;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-default {
  color: #cccccc;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-primary {
  color: #95c11f;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-info {
  color: #0077e7;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-warning {
  color: #ffa500;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-danger {
  color: #ff0000;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-more {
  text-decoration: underline;
}
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-more:hover,
.brochure-productCard--4 .brochure-productCard__stockInfo .shops-more:focus {
  text-decoration: none;
}
.brochure-filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.brochure-filter .checkbox {
  margin: 0 15px;
}
.common-heading__title {
  font-weight: bold;
  font-size: 24px;
  color: #000000;
  margin: 0 0 24px;
  line-height: 27px;
}
.common-heading__subtitle {
  margin: 0;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  line-height: 28px;
}
.common-heading__text {
  font-size: 14px;
  color: #333333;
  line-height: 24px;
}
.common-heading__text p:last-child {
  margin-bottom: 0;
}
.two-line-heading__top,
.two-line-heading__bottom {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #95c11f;
}
.two-line-heading__top {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.two-line-heading__bottom {
  font-weight: 700;
  font-size: 36px;
  margin-top: 2px;
}
.steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
.steps__item {
  position: relative;
  text-align: center;
  width: 225px;
}
.steps__item:before {
  content: '';
  position: absolute;
  top: 22px;
  left: 135px;
  width: 180px;
  height: 2px;
  background: #DEDEDE;
}
.steps__item-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 45px;
  height: 45px;
  background: #FFFFFF;
  border: 2px solid #DEDEDE;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  font-weight: 700;
  font-size: 22px;
  color: #CCCC;
  text-align: center;
}
.steps__item-name {
  margin: 12px auto 0;
  font-weight: 500;
  font-size: 13px;
  color: #999;
  line-height: 17.5px;
  text-transform: uppercase;
}
.steps__item:last-child:before {
  display: none;
}
.steps__item--isActive:first-child .steps__item-number {
  background: #95c11f;
  color: #fff;
  border-color: #95c11f;
}
.steps__item--isActive:first-child .steps__item-name {
  color: #95c11f;
}
.steps__item--isActive:not(:first-child) .steps__item-number {
  color: #95c11f;
  border-color: #95c11f;
}
.steps__item--isActive:not(:first-child) .steps__item-name {
  color: #95c11f;
}
.steps__item--isDone:before {
  background: #95c11f;
}
.steps__item--isDone .steps__item-number {
  position: relative;
  background: #95c11f;
  border-color: #95c11f;
}
.steps__item--isDone .steps__item-number:before {
  content: "\46";
}
.steps__item--isDone .steps__item-number span {
  display: none;
}
.steps__item--isDone .steps__item-number:before {
  font-family: "vaprio" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.steps__item--isDone .steps__item-name {
  color: #95c11f;
}
.steps a.steps__item {
  text-decoration: none;
  cursor: pointer;
}
.steps a.steps__item:hover,
.steps a.steps__item:focus {
  text-decoration: none;
}
.steps a.steps__item:hover .steps__item-name,
.steps a.steps__item:focus .steps__item-name {
  color: #95c11f;
}
.switch-1 {
  margin: 0;
  padding: 0;
  padding: 15px 30px;
  display: inline-block;
  background: #F8F8F8;
  text-align: center;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.switch-1 li {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.switch-1 li a {
  display: block;
  padding: 0 60px;
  height: 56px;
  min-width: 290px;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  line-height: 56px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-transition: background 0.25s ease-in-out, color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out, color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  text-decoration: none;
}
.switch-1 li.isActive a,
.switch-1 li a:hover,
.switch-1 li a:focus {
  color: #95c11f;
  text-decoration: none;
}
.switch-1 li.isActive a {
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.switch-1--order li a {
  padding: 0 30px;
  min-width: 190px;
  font-weight: 700;
  font-size: 24px;
}
.background-F8F8F8 {
  background: #F8F8F8;
}
.background-F9FFE9 {
  background: #F9FFE9;
}
.tabs-1 {
  border-bottom: 1px solid #D8D8D8;
}
.tabs-1 ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.tabs-1 ul li {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.tabs-1 ul li a {
  position: relative;
  display: block;
  padding: 0 50px 18px;
  text-decoration: none;
}
.tabs-1 ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #95c11f;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  -o-transition: -o-transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out, -moz-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out, -moz-transform 250ms ease-in-out, -o-transform 250ms ease-in-out;
  -webkit-transform: scaleY(0);
     -moz-transform: scaleY(0);
       -o-transform: scaleY(0);
          transform: scaleY(0);
}
.tabs-1 ul li a .top,
.tabs-1 ul li a .bottom {
  display: block;
  color: #999;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.tabs-1 ul li a .top {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.tabs-1 ul li a .bottom {
  margin-top: 6px;
  font-size: 13px;
  line-height: 14px;
}
.tabs-1 ul li.isActive a,
.tabs-1 ul li a:hover,
.tabs-1 ul li a:focus {
  text-decoration: none;
}
.tabs-1 ul li.isActive a .top,
.tabs-1 ul li a:hover .top,
.tabs-1 ul li a:focus .top {
  color: #95c11f;
}
.tabs-1 ul li.isActive a .bottom,
.tabs-1 ul li a:hover .bottom,
.tabs-1 ul li a:focus .bottom {
  color: #000;
}
.tabs-1 ul li.isActive a:after {
  -webkit-transform: scaleY(1);
     -moz-transform: scaleY(1);
       -o-transform: scaleY(1);
          transform: scaleY(1);
}
.toTop {
  width: 90px;
  height: 90px;
  background: #000;
  position: fixed;
  bottom: 120px;
  right: 20px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-flow: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  z-index: 8;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  letter-spacing: -0.25px;
  text-transform: uppercase;
  gap: 3px;
}
.toTop svg {
  width: 21px;
}
.toTop:hover,
.toTop:focus {
  text-decoration: none;
  color: #fff;
  -webkit-transform: translateY(-3px);
     -moz-transform: translateY(-3px);
       -o-transform: translateY(-3px);
          transform: translateY(-3px);
}
body:not(.showToTop) .toTop {
  opacity: 0;
  pointer-events: none;
}
.quantityInput {
  position: relative;
  width: auto;
  height: 45px;
  padding-right: 34px;
  border: 1px solid #cccccc;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.quantityInput-input {
  height: 45px;
  width: 100%;
  background: transparent;
  font-size: 16px;
  line-height: 45px;
  color: #010101;
  padding: 0;
  text-align: center;
  font-weight: normal;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  border: none;
}
.quantityInput-button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  right: 1px;
  width: 34px;
  font-weight: 500;
  text-align: center;
  color: #979797;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.quantityInput-button.plus {
  top: 0;
  height: 22px;
}
.quantityInput-button.minus {
  height: 23px;
  bottom: 0;
  border-top: none;
}
.quantityInput-button:hover,
.quantityInput-button:focus {
  color: #95c11f;
}
.quantityInput--small {
  height: 33px;
  width: 80px;
  padding-right: 18px;
}
.quantityInput--small .quantityInput {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.quantityInput--small .quantityInput-input {
  height: 33px;
  width: 100%;
  font-size: 13px;
  line-height: 33px;
  font-weight: 500;
}
.quantityInput--small .quantityInput-button {
  width: 18px;
}
.quantityInput--small .quantityInput-button.plus {
  height: 16px;
}
.quantityInput--small .quantityInput-button.minus {
  height: 17px;
}
.quantityInput--xSmall {
  height: 32px;
  width: 72px;
  padding-right: 22px;
}
.quantityInput--xSmall .quantityInput {
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.quantityInput--xSmall .quantityInput-input {
  height: 32px;
  width: 100%;
  font-size: 13px;
  line-height: 32px;
  font-weight: 500;
}
.quantityInput--xSmall .quantityInput-button {
  width: 22px;
  right: 0;
}
.quantityInput--xSmall .quantityInput-button.plus {
  height: 16px;
  line-height: 16px;
}
.quantityInput--xSmall .quantityInput-button.minus {
  height: 16px;
  line-height: 16px;
}
.quantityInput--withBorder .quantityInput-button {
  border-left: 1px solid #cccccc;
}
.quantityInput--withBorder .quantityInput-button.plus {
  border-bottom: 1px solid #cccccc;
}
.quantityInput-1:before,
.quantityInput-1:after {
  content: " ";
  display: table;
}
.quantityInput-1:after {
  clear: both;
}
.quantityInput-1:before,
.quantityInput-1:after {
  content: " ";
  display: table;
}
.quantityInput-1:after {
  clear: both;
}
.quantityInput-1__button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 30px;
  height: 40px;
  font-size: 30px;
  line-height: 40px;
}
.quantityInput-1__button--plus {
  color: #CAE08F;
  float: left;
}
.quantityInput-1__button--plus:hover,
.quantityInput-1__button--plus:focus {
  color: #95c11f;
}
.quantityInput-1__button--minus {
  color: #DEDEDE;
  float: left;
}
.quantityInput-1__button--minus:hover,
.quantityInput-1__button--minus:focus {
  color: #333;
}
.quantityInput-1__input {
  width: 74px;
  height: 40px;
  padding: 0;
  text-align: center;
  color: #000;
  font-weight: 500;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}
.quantityInput-1--medium .quantityInput-1__button {
  width: 24px;
  height: 32px;
  font-size: 24px;
  line-height: 32px;
}
.quantityInput-1--medium .quantityInput-1__input {
  width: 59px;
  height: 32px;
  margin-left: 10px;
  margin-right: 10px;
}
.quantityInput-1--small .quantityInput-1__button {
  width: 20px;
  height: 27px;
  font-size: 20px;
  line-height: 27px;
}
.quantityInput-1--small .quantityInput-1__input {
  width: 50px;
  height: 27px;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 12px;
}
.productDetail-gallery__modal .modal-dialog {
  width: 95%;
  max-width: 1545px;
  min-width: 1200px;
}
.productDetail-gallery__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.productDetail-gallery__modal .modal-header {
  padding: 30px 40px 40px 40px;
}
.productDetail-gallery__modal .modal-header .modal-title {
  font-size: 36px;
  color: #000000;
  font-weight: bold;
  line-height: 41px;
  margin: 0;
  padding: 0;
}
.productDetail-gallery__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
}
.productDetail-gallery__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-gallery__modal .modal-close:hover svg path,
.productDetail-gallery__modal .modal-close:focus svg path {
  fill: #000;
}
.productDetail-gallery__modal .modal-body {
  position: relative;
  padding-right: 420px;
  padding-left: 40px;
  height: 740px;
}
@media screen and (max-height: 914px) {
  .productDetail-gallery__modal .modal-body {
    height: 690px;
  }
}
@media screen and (max-height: 864px) {
  .productDetail-gallery__modal .modal-body {
    height: 600px;
  }
}
.productDetail-gallery__modal-preview {
  position: relative;
  text-align: center;
  height: 640px;
}
@media screen and (max-height: 914px) {
  .productDetail-gallery__modal-preview {
    height: 600px;
  }
}
@media screen and (max-height: 864px) {
  .productDetail-gallery__modal-preview {
    height: 540px;
  }
}
.productDetail-gallery__modal-preview--img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.productDetail-gallery__modal-preview--preview {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.productDetail-gallery__modal-preview-prev,
.productDetail-gallery__modal-preview-next {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  width: 22px;
  height: 40px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
.productDetail-gallery__modal-preview-prev svg,
.productDetail-gallery__modal-preview-next svg {
  width: 100%;
  height: auto;
}
.productDetail-gallery__modal-preview-prev svg path,
.productDetail-gallery__modal-preview-next svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-gallery__modal-preview-prev:hover svg path,
.productDetail-gallery__modal-preview-next:hover svg path {
  fill: #95c11f;
}
.productDetail-gallery__modal-preview-prev:focus svg path,
.productDetail-gallery__modal-preview-next:focus svg path {
  fill: #999;
}
.productDetail-gallery__modal-preview-prev {
  left: 40px;
}
.productDetail-gallery__modal-preview-prev svg {
  left: 0;
}
.productDetail-gallery__modal-preview-next {
  right: 40px;
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.productDetail-gallery__modal-preview-next svg {
  right: 10px;
}
.productDetail-gallery__modal-list {
  position: absolute;
  right: 40px;
  top: 0;
  height: auto;
  max-height: 700px;
  width: 340px;
  overflow-y: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
@media screen and (max-height: 914px) {
  .productDetail-gallery__modal-list {
    max-height: 660px;
  }
}
@media screen and (max-height: 864px) {
  .productDetail-gallery__modal-list {
    max-height: 600px;
  }
}
.productDetail-gallery__modal-list-item {
  display: block;
  width: 160px;
  height: 160px;
  margin-bottom: 20px;
  border: 2px solid #EFEFEF;
  -webkit-transition: border-color 250ms ease-in-out;
  -o-transition: border-color 250ms ease-in-out;
  -moz-transition: border-color 250ms ease-in-out;
  transition: border-color 250ms ease-in-out;
}
.productDetail-gallery__modal-list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.productDetail-gallery__modal-list-item:hover,
.productDetail-gallery__modal-list-item:hover {
  border-color: #ccc;
}
.productDetail-gallery__modal-list-item.active {
  border-color: #95c11f;
}
.productDetail-gallery__modal-list-item--360 {
  background: url('../images/layout/360.svg') no-repeat center;
  -webkit-background-size: 80px 80px;
     -moz-background-size: 80px;
          background-size: 80px;
}
.productDetail-preOrder__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.productDetail-preOrder__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.productDetail-preOrder__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.productDetail-preOrder__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-preOrder__modal .modal-close:hover svg path,
.productDetail-preOrder__modal .modal-close:focus svg path {
  fill: #000;
}
.productDetail-preOrder__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.productDetail-preOrder__modal__img {
  margin-bottom: 28px;
}
.productDetail-preOrder__modal__img img {
  display: inline-block;
  width: auto;
  height: 80px;
}
.productDetail-preOrder__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
}
.productDetail-preOrder__modal__subTitle {
  font-size: 18px;
  color: #0077E7;
  font-weight: 500;
  margin-bottom: 60px;
}
.productDetail-preOrder__modal__form {
  margin-bottom: 60px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.productDetail-preOrder__modal__info {
  font-size: 12px;
  color: #999999;
  line-height: 22px;
  width: 720px;
  margin-right: auto;
  margin-left: auto;
}
.productDetail-preOrder__modal__info p {
  margin-bottom: 22px;
}
.productDetail-preOrder__modal__info p:last-child {
  margin-bottom: 0;
}
.productDetail-guard__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.productDetail-guard__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.productDetail-guard__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.productDetail-guard__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-guard__modal .modal-close:hover svg path,
.productDetail-guard__modal .modal-close:focus svg path {
  fill: #000;
}
.productDetail-guard__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.productDetail-guard__modal__img {
  margin-bottom: 28px;
}
.productDetail-guard__modal__img img {
  display: inline-block;
  width: auto;
  height: 80px;
}
.productDetail-guard__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
}
.productDetail-guard__modal__subTitle {
  font-size: 18px;
  color: #0077E7;
  font-weight: 500;
  margin-bottom: 60px;
}
.productDetail-guard__modal__form {
  margin-bottom: 60px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.productDetail-guard__modal__info {
  font-size: 12px;
  color: #999999;
  line-height: 22px;
  width: 720px;
  margin-right: auto;
  margin-left: auto;
}
.productDetail-guard__modal__info p {
  margin-bottom: 22px;
}
.productDetail-guard__modal__info p:last-child {
  margin-bottom: 0;
}
.productDetail-recommendation__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.productDetail-recommendation__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.productDetail-recommendation__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.productDetail-recommendation__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-recommendation__modal .modal-close:hover svg path,
.productDetail-recommendation__modal .modal-close:focus svg path {
  fill: #000;
}
.productDetail-recommendation__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.productDetail-recommendation__modal__img {
  margin-bottom: 28px;
}
.productDetail-recommendation__modal__img img {
  display: inline-block;
  width: auto;
  height: 80px;
}
.productDetail-recommendation__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
}
.productDetail-recommendation__modal__subTitle {
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  margin-bottom: 60px;
}
.productDetail-recommendation__modal__link {
  position: relative;
  width: 720px;
  height: 45px;
  padding-right: 195px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  background: #FFFFFF;
  line-height: 45px;
  border: 1px solid #DEDEDE;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.productDetail-recommendation__modal__link-input {
  display: block;
  width: 100%;
  height: 43px;
  padding: 0 0 0 25px;
  margin: 0;
  font-size: 14px;
  color: #000;
  line-height: 24px;
  border: none;
  background: transparent;
}
.productDetail-recommendation__modal__link-button {
  position: absolute;
  top: 9px;
  right: 9px;
}
.productDetail-recommendation__modal__form {
  margin-bottom: 60px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.productDetail-recommendation__modal__socials-facebook {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #31599D;
  font-weight: 500;
  padding-left: 40px;
  line-height: 24px;
}
.productDetail-recommendation__modal__socials-facebook svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  height: 24px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.productDetail-recommendation__modal__socials-facebook:hover,
.productDetail-recommendation__modal__socials-facebook:focus {
  text-decoration: none;
  color: #31599D;
  opacity: 0.8;
}
.productDetail-shops__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.productDetail-shops__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.productDetail-shops__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.productDetail-shops__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-shops__modal .modal-close:hover svg path,
.productDetail-shops__modal .modal-close:focus svg path {
  fill: #000;
}
.productDetail-shops__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.productDetail-shops__modal__img {
  margin-bottom: 28px;
}
.productDetail-shops__modal__img img {
  display: inline-block;
  width: auto;
  height: 80px;
}
.productDetail-shops__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
}
.productDetail-shops__modal__subTitle {
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  margin-bottom: 60px;
}
.productDetail-shops__modal__form {
  margin-bottom: 30px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.productDetail-shops__modal__form:before,
.productDetail-shops__modal__form:after {
  content: " ";
  display: table;
}
.productDetail-shops__modal__form:after {
  clear: both;
}
.productDetail-shops__modal__form:before,
.productDetail-shops__modal__form:after {
  content: " ";
  display: table;
}
.productDetail-shops__modal__form:after {
  clear: both;
}
.productDetail-shops__modal__form-input {
  width: 505px;
  float: left;
  position: relative;
}
.productDetail-shops__modal__form-input svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.productDetail-shops__modal__form-select {
  width: 195px;
  float: right;
}
.productDetail-shops__modal__shops {
  position: relative;
}
.productDetail-shops__modal__shops-item {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: relative;
  display: block;
  height: 50px;
  border-bottom: 1px solid #DEDEDE;
  line-height: 50px;
  font-size: 14px;
  color: #000;
  width: 100%;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productDetail-shops__modal__shops-item:before,
.productDetail-shops__modal__shops-item:after {
  content: " ";
  display: table;
}
.productDetail-shops__modal__shops-item:after {
  clear: both;
}
.productDetail-shops__modal__shops-item:before,
.productDetail-shops__modal__shops-item:after {
  content: " ";
  display: table;
}
.productDetail-shops__modal__shops-item:after {
  clear: both;
}
.productDetail-shops__modal__shops-item__icon {
  float: left;
  margin-left: 15px;
  margin-top: 17px;
  width: 15px;
  height: auto;
}
.productDetail-shops__modal__shops-item__icon .fill {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productDetail-shops__modal__shops-item__name {
  font-weight: 500;
  float: left;
  margin-left: 10px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productDetail-shops__modal__shops-item__address {
  color: #999;
  float: left;
  margin-left: 5px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.productDetail-shops__modal__shops-item__hover {
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: #95c11f;
  text-decoration: underline;
  opacity: 0;
}
.productDetail-shops__modal__shops-item__hover:hover,
.productDetail-shops__modal__shops-item__hover:focus {
  text-decoration: none;
}
.productDetail-shops__modal__shops-item__active {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: #95c11f;
  text-decoration: underline;
  opacity: 0;
  padding-right: 34px;
}
.productDetail-shops__modal__shops-item__active svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.productDetail-shops__modal__shops-item:hover .productDetail-shops__modal__shops-item__name,
.productDetail-shops__modal__shops-item:focus .productDetail-shops__modal__shops-item__name,
.productDetail-shops__modal__shops-item:hover .productDetail-shops__modal__shops-item__address,
.productDetail-shops__modal__shops-item:focus .productDetail-shops__modal__shops-item__address {
  color: #95c11f;
}
.productDetail-shops__modal__shops-item:hover .productDetail-shops__modal__shops-item__hover,
.productDetail-shops__modal__shops-item:focus .productDetail-shops__modal__shops-item__hover {
  opacity: 1;
}
.productDetail-shops__modal__shops-item:hover .productDetail-shops__modal__shops-item__active,
.productDetail-shops__modal__shops-item:focus .productDetail-shops__modal__shops-item__active {
  opacity: 0;
}
.productDetail-shops__modal__shops-item.active {
  background: #F9FFE9;
}
.productDetail-shops__modal__shops-item.active .productDetail-shops__modal__shops-item__icon .fill {
  fill: #95c11f;
}
.productDetail-shops__modal__shops-item.active .productDetail-shops__modal__shops-item__name,
.productDetail-shops__modal__shops-item.active .productDetail-shops__modal__shops-item__address {
  color: #95c11f;
}
.productDetail-shops__modal__shops-item.active .productDetail-shops__modal__shops-item__hover {
  opacity: 0;
}
.productDetail-shops__modal__shops-item.active .productDetail-shops__modal__shops-item__active {
  opacity: 1;
}
.productDetail-shops__modal__shops ul {
  padding-left: 0;
  margin-bottom: 0;
  display: block;
  list-style: none;
  overflow-y: auto;
  max-height: 450px;
}
.productDetail-shops__modal__shops li {
  display: block;
}
.productDetail-shops__modal__shops li:last-child .productDetail-shops__modal__shops-item {
  border-bottom: none;
}
.productDetail-shoppingList__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.productDetail-shoppingList__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.productDetail-shoppingList__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.productDetail-shoppingList__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.productDetail-shoppingList__modal .modal-close:hover svg path,
.productDetail-shoppingList__modal .modal-close:focus svg path {
  fill: #000;
}
.productDetail-shoppingList__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.productDetail-shoppingList__modal__img {
  margin-bottom: 28px;
}
.productDetail-shoppingList__modal__img img {
  display: inline-block;
  width: auto;
  height: 80px;
}
.productDetail-shoppingList__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 30px;
}
.productDetail-shoppingList__modal__form {
  margin-bottom: 20px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.productDetail-shoppingList__modal__form-header {
  margin-bottom: 40px;
}
.productDetail-shoppingList__modal__form-header:before,
.productDetail-shoppingList__modal__form-header:after {
  content: " ";
  display: table;
}
.productDetail-shoppingList__modal__form-header:after {
  clear: both;
}
.productDetail-shoppingList__modal__form-header:before,
.productDetail-shoppingList__modal__form-header:after {
  content: " ";
  display: table;
}
.productDetail-shoppingList__modal__form-header:after {
  clear: both;
}
.productDetail-shoppingList__modal__form-subTitle {
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
.productDetail-shoppingList__modal__form-body {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.productDetail-shoppingList__modal__form-select {
  width: 300px;
  float: left;
}
.productDetail-shoppingList__modal__form-quantity {
  width: 97px;
  float: right;
}
.inCart__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.inCart__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  border: none;
}
.inCart__modal .modal-header {
  -webkit-border-top-left-radius: 10px;
     -moz-border-radius-topleft: 10px;
          border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
     -moz-border-radius-topright: 10px;
          border-top-right-radius: 10px;
  background: #95c11f;
  text-align: center;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.inCart__modal .modal-header__title {
  position: relative;
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  line-height: 27px;
  padding-left: 50px;
}
.inCart__modal .modal-header__title:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 30px;
  height: 24px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url('../images/layout/check.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.inCart__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}
.inCart__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
  fill: #fff;
}
.inCart__modal .modal-close:hover svg path,
.inCart__modal .modal-close:focus svg path {
  fill: #000;
}
.inCart__modal .modal-body {
  padding: 0;
}
.inCart__modal .modal-body__in {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
  text-align: left;
}
.inCart__modal__freeDelivery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  background: #F9FFE9;
  border: 1px solid #CAE08F;
  height: 45px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.inCart__modal__freeDelivery-in {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  padding-left: 50px;
}
.inCart__modal__freeDelivery-in:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 31px;
  height: 22px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url('../images/layout/transport.svg') no-repeat center;
  -webkit-background-size: contain;
     -moz-background-size: contain;
          background-size: contain;
}
.inCart__modal .bigProducts {
  padding-top: 30px;
}
.inCart__modal .bigProducts_product {
  position: relative;
  display: block;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  height: 120px;
  padding: 20px 20px 20px 115px;
  margin-bottom: 30px;
}
.inCart__modal .bigProducts_product-image {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
}
.inCart__modal .bigProducts_product-title {
  display: block;
  font-size: 13px;
  color: #000000;
  line-height: 13px;
  font-weight: 500;
  margin-top: 2px;
}
.inCart__modal .bigProducts_product-stockInfo {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  margin-top: 7px;
  color: #999999;
}
.inCart__modal .bigProducts_product-stockInfo--default {
  color: #999999;
}
.inCart__modal .bigProducts_product-stockInfo--primary {
  color: #95c11f;
}
.inCart__modal .bigProducts_product-stockInfo--info {
  color: #0077e7;
}
.inCart__modal .bigProducts_product-stockInfo--warning {
  color: #ffa500;
}
.inCart__modal .bigProducts_product-stockInfo--danger {
  color: #ff0000;
}
.inCart__modal .bigProducts_product-stockInfo .more {
  text-decoration: underline;
}
.inCart__modal .bigProducts_product-stockInfo .more:hover {
  text-decoration: none;
}
.inCart__modal .bigProducts_product-stockInfo .shopsInfo {
  width: 600px;
}
.inCart__modal .bigProducts_product-stockInfo .shopsInfo-body ul {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
}
.inCart__modal .bigProducts_product-prices {
  display: block;
  margin-top: 16px;
}
.inCart__modal .bigProducts_product-prices .old {
  font-size: 13px;
  color: #999999;
  font-weight: 500;
  text-decoration: line-through;
  line-height: 17px;
}
.inCart__modal .bigProducts_product-prices .price {
  font-size: 18px;
  color: #f20d0d;
  font-weight: bold;
  line-height: 17px;
}
.inCart__modal .bigProducts_product:last-child {
  margin-bottom: 0;
}
.inCart__modal .bigProducts_product-in {
  display: block;
  width: 100%;
  height: 100%;
}
.inCart__modal .bigProducts_product-buttons {
  position: absolute;
  bottom: 20px;
  right: 0;
  text-align: right;
}
.inCart__modal .bigProducts_product-buttons .button {
  float: left;
  display: inline-block;
  margin-right: 20px;
}
.inCart__modal .bigProducts a.bigProducts_product-in:hover,
.inCart__modal .bigProducts a.bigProducts_product-in:focus {
  text-decoration: none;
}
.inCart__modal .bigProducts a.bigProducts_product-in:hover .bigProducts_product-title,
.inCart__modal .bigProducts a.bigProducts_product-in:focus .bigProducts_product-title {
  text-decoration: underline;
}
.inCart__modal .smallProducts {
  padding-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
}
.inCart__modal .smallProducts_product {
  position: relative;
  display: block;
  height: 110px;
  width: 385px;
  padding: 15px 15px 15px 115px;
  margin-bottom: 30px;
  background: #FFFFFF;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.inCart__modal .smallProducts_product-image {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 80px;
  height: 80px;
}
.inCart__modal .smallProducts_product-title {
  display: block;
  font-size: 13px;
  color: #000000;
  line-height: 13px;
  font-weight: 500;
  margin-top: 2px;
}
.inCart__modal .smallProducts_product-stockInfo {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 13px;
  margin-top: 7px;
  color: #999999;
}
.inCart__modal .smallProducts_product-stockInfo--default {
  color: #999999;
}
.inCart__modal .smallProducts_product-stockInfo--primary {
  color: #95c11f;
}
.inCart__modal .smallProducts_product-stockInfo--info {
  color: #0077e7;
}
.inCart__modal .smallProducts_product-stockInfo--warning {
  color: #ffa500;
}
.inCart__modal .smallProducts_product-stockInfo--danger {
  color: #ff0000;
}
.inCart__modal .smallProducts_product-prices {
  display: block;
  position: absolute;
  bottom: 18px;
  left: 115px;
}
.inCart__modal .smallProducts_product-prices .old {
  font-size: 13px;
  color: #999999;
  font-weight: 500;
  text-decoration: line-through;
  line-height: 17px;
}
.inCart__modal .smallProducts_product-prices .price {
  font-size: 18px;
  color: #f20d0d;
  font-weight: bold;
  line-height: 17px;
}
.inCart__modal .smallProducts_product-in {
  display: block;
  width: 100%;
  height: 100%;
}
.inCart__modal .smallProducts_product .button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-align: right;
}
.inCart__modal .smallProducts a.smallProducts_product-in:hover,
.inCart__modal .smallProducts a.smallProducts_product-in:focus {
  text-decoration: none;
}
.inCart__modal .smallProducts a.smallProducts_product-in:hover .smallProducts_product-title,
.inCart__modal .smallProducts a.smallProducts_product-in:focus .smallProducts_product-title {
  text-decoration: underline;
}
.inCart__modal__productBox {
  padding: 30px 40px 0;
  margin: 0 -40px;
  background: #F8F8F8;
  -webkit-border-bottom-right-radius: 10px;
     -moz-border-radius-bottomright: 10px;
          border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
     -moz-border-radius-bottomleft: 10px;
          border-bottom-left-radius: 10px;
}
.inCart__modal__productBox-title {
  font-weight: 500;
  font-size: 18px;
  color: #000;
  text-align: center;
  line-height: 20px;
}
.inCart__modal__buttons {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.inCart__modal__buttons-left {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.inCart__modal__buttons-right {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.addToBasket__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.addToBasket__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.addToBasket__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.addToBasket__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.addToBasket__modal .modal-close:hover svg path,
.addToBasket__modal .modal-close:focus svg path {
  fill: #000;
}
.addToBasket__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.addToBasket__modal__img {
  margin-bottom: 28px;
}
.addToBasket__modal__img img {
  display: inline-block;
  width: auto;
  height: 80px;
}
.addToBasket__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  margin-bottom: 20px;
}
.addToBasket__modal__subTitle {
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  margin-bottom: 60px;
}
.addToBasket__modal__productList-item {
  position: relative;
  border: 1px solid #DEDEDE;
  margin-bottom: 10px;
  padding-left: 120px;
}
.addToBasket__modal__productList-item__image {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.addToBasket__modal__productList-item__infoContainer {
  width: 490px;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.addToBasket__modal__productList-item__info {
  text-align: left;
}
.addToBasket__modal__productList-item__title {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  line-height: 13px;
}
.addToBasket__modal__productList-item__stockInfo {
  margin-top: 10px;
  line-height: 13px;
}
.addToBasket__modal__productList-item__stockInfo .stock {
  display: inline-block;
  color: #cccccc;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}
.addToBasket__modal__productList-item__stockInfo .stock-default {
  color: #cccccc;
}
.addToBasket__modal__productList-item__stockInfo .stock-primary {
  color: #95c11f;
}
.addToBasket__modal__productList-item__stockInfo .stock-info {
  color: #0077e7;
}
.addToBasket__modal__productList-item__stockInfo .stock-warning {
  color: #ffa500;
}
.addToBasket__modal__productList-item__stockInfo .stock-danger {
  color: #ff0000;
}
.addToBasket__modal__productList-item__stockInfo .shops {
  display: inline-block;
  font-size: 13px;
  color: #95c11f;
  line-height: 1;
}
.addToBasket__modal__productList-item__stockInfo .shops-default {
  color: #cccccc;
}
.addToBasket__modal__productList-item__stockInfo .shops-primary {
  color: #95c11f;
}
.addToBasket__modal__productList-item__stockInfo .shops-info {
  color: #0077e7;
}
.addToBasket__modal__productList-item__stockInfo .shops-warning {
  color: #ffa500;
}
.addToBasket__modal__productList-item__stockInfo .shops-danger {
  color: #ff0000;
}
.addToBasket__modal__productList-item__stockInfo .shops-more {
  text-decoration: underline;
}
.addToBasket__modal__productList-item__prices {
  padding-right: 20px;
  text-align: right;
}
.addToBasket__modal__productList-item__prices .old {
  font-size: 13px;
  color: #CCCCCC;
  font-weight: 500;
  text-decoration: line-through;
}
.addToBasket__modal__productList-item__prices .price {
  font-size: 18px;
  font-weight: bold;
}
.addToBasket__modal__productList-item__quantity {
  position: absolute;
  top: 0;
  right: 92px;
  width: 97px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.addToBasket__modal__productList-item__button {
  position: absolute;
  top: 0;
  right: 20px;
  width: 52px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.addToBasket__modal__productList-item__button .button {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  width: 52px;
  height: 45px;
}
.addToBasket__modal__productList-item__button .button i {
  font-size: 22px;
}
.addToBasket__modal__productList-item__button .button i:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.addToBasket__modal__buttons {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 45px;
}
.addToBasket__modal__buttons-left {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.addToBasket__modal__buttons-right {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dodoDelivery__modal .modal-dialog {
  width: 95%;
  max-width: 880px;
}
.dodoDelivery__modal .modal-content {
  background: #fff;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.dodoDelivery__modal .modal-close {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 5;
}
.dodoDelivery__modal .modal-close svg path {
  -webkit-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.dodoDelivery__modal .modal-close:hover svg path,
.dodoDelivery__modal .modal-close:focus svg path {
  fill: #000;
}
.dodoDelivery__modal .modal-body {
  position: relative;
  padding: 40px;
  text-align: center;
}
.dodoDelivery__modal__img {
  margin-bottom: 40px;
}
.dodoDelivery__modal__img img {
  display: inline-block;
  width: 150px;
  height: auto;
}
.dodoDelivery__modal__title {
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  line-height: 27px;
  margin-bottom: 20px;
}
.dodoDelivery__modal__subTitle {
  font-size: 18px;
  color: #95c11f;
  font-weight: 500;
  margin-bottom: 34px;
}
.dodoDelivery__modal__navigation {
  margin-bottom: 20px;
}
.dodoDelivery__modal__navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-flow: row;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #D8D8D8;
}
.dodoDelivery__modal__navigation li {
  position: relative;
}
.dodoDelivery__modal__navigation li.active a {
  color: #95c11f;
}
.dodoDelivery__modal__navigation li.active a:after {
  opacity: 1;
}
.dodoDelivery__modal__navigation a {
  display: block;
  padding: 16px 40px;
  font-weight: 500;
  font-size: 18px;
  color: #999;
  line-height: 26px;
  -webkit-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.dodoDelivery__modal__navigation a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #95c11f;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-in-out;
  -o-transition: opacity 250ms ease-in-out;
  -moz-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.dodoDelivery__modal__navigation a:hover,
.dodoDelivery__modal__navigation a:focus {
  text-decoration: none;
  color: #95c11f;
}
.dodoDelivery__modal__shops {
  position: relative;
}
.dodoDelivery__modal__shops-item {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: relative;
  display: block;
  height: 50px;
  border-bottom: 1px solid #DEDEDE;
  line-height: 50px;
  font-size: 14px;
  color: #000;
  width: 100%;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dodoDelivery__modal__shops-item:before,
.dodoDelivery__modal__shops-item:after {
  content: " ";
  display: table;
}
.dodoDelivery__modal__shops-item:after {
  clear: both;
}
.dodoDelivery__modal__shops-item:before,
.dodoDelivery__modal__shops-item:after {
  content: " ";
  display: table;
}
.dodoDelivery__modal__shops-item:after {
  clear: both;
}
.dodoDelivery__modal__shops-item__icon {
  float: left;
  margin-left: 15px;
  margin-top: 17px;
  width: 18px;
  height: auto;
}
.dodoDelivery__modal__shops-item__icon .fill {
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dodoDelivery__modal__shops-item__name {
  font-weight: 500;
  float: left;
  margin-left: 10px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  -moz-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.dodoDelivery__modal__shops-item__hover {
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: #95c11f;
  text-decoration: none;
  opacity: 0;
}
.dodoDelivery__modal__shops-item__hover:hover,
.dodoDelivery__modal__shops-item__hover:focus {
  text-decoration: none;
}
.dodoDelivery__modal__shops-item__active {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 13px;
  color: #95c11f;
  text-decoration: none;
  opacity: 0;
  padding-right: 34px;
}
.dodoDelivery__modal__shops-item__active svg {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dodoDelivery__modal__shops-item:hover .dodoDelivery__modal__shops-item__name,
.dodoDelivery__modal__shops-item:focus .dodoDelivery__modal__shops-item__name {
  color: #95c11f;
}
.dodoDelivery__modal__shops-item:hover .dodoDelivery__modal__shops-item__hover,
.dodoDelivery__modal__shops-item:focus .dodoDelivery__modal__shops-item__hover {
  opacity: 1;
}
.dodoDelivery__modal__shops-item:hover .dodoDelivery__modal__shops-item__active,
.dodoDelivery__modal__shops-item:focus .dodoDelivery__modal__shops-item__active {
  opacity: 0;
}
.dodoDelivery__modal__shops-item.active {
  background: #F9FFE9;
}
.dodoDelivery__modal__shops-item.active .dodoDelivery__modal__shops-item__icon .fill {
  fill: #95c11f;
}
.dodoDelivery__modal__shops-item.active .dodoDelivery__modal__shops-item__name {
  color: #95c11f;
}
.dodoDelivery__modal__shops-item.active .dodoDelivery__modal__shops-item__hover {
  opacity: 0;
}
.dodoDelivery__modal__shops-item.active .dodoDelivery__modal__shops-item__active {
  opacity: 1;
}
.dodoDelivery__modal__shops-item.disabled .dodoDelivery__modal__shops-item__name {
  color: #aaa;
}
.dodoDelivery__modal__shops-item.disabled .dodoDelivery__modal__shops-item__hover {
  opacity: 0;
}
.dodoDelivery__modal__shops-item.disabled .dodoDelivery__modal__shops-item__active {
  opacity: 1;
  color: #666666;
  padding-right: 0;
}
.dodoDelivery__modal__shops ul {
  padding-left: 0;
  margin-bottom: 0;
  display: block;
  list-style: none;
  overflow-y: auto;
  max-height: 450px;
}
.dodoDelivery__modal__shops li {
  display: block;
}
.dodoDelivery__modal__shops li:last-child .dodoDelivery__modal__shops-item {
  border-bottom: none;
}
.cookiesBar {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 18px 0;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.9);
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  z-index: 99;
}
.cookiesBar .button {
  margin-left: 15px;
}
.cookiesBar-container {
  margin-left: auto;
  margin-right: auto;
  width: 1230px;
  padding-left: 35px;
  padding-right: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.basketLayout {
  display: grid;
  grid-template-columns: 1fr 415px;
}
.basketLayout__main,
.basketLayout__side {
  padding: 40px;
}
.basketLayout__side {
  background: #F8F8F8;
}
.basketNavigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.basketNavigation li {
  position: relative;
}
.basketNavigation a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.basketNavigation__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.basketNavigation__item-icon {
  margin-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  text-align: center;
  width: 45px;
  height: 45px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #DEDEDE;
  font-size: 24px;
  font-weight: 700;
  color: #CCCCCC;
  -webkit-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, border 0.25s ease-in-out, background 0.25s ease-in-out;
}
.basketNavigation__item-title {
  font-weight: 500;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  -webkit-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
li.is-active .basketNavigation__item .basketNavigation__item-icon,
li.is-completed .basketNavigation__item .basketNavigation__item-icon {
  background: #95c11f;
  border-color: #95c11f;
  color: #fff;
}
li.is-active .basketNavigation__item .basketNavigation__item-title,
li.is-completed .basketNavigation__item .basketNavigation__item-title {
  color: #95c11f;
}
li.is-completed .basketNavigation__item-icon {
  font-size: 0;
  color: transparent;
}
li.is-completed .basketNavigation__item-icon:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='14' viewBox='0 0 19 14'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M16.751 0L7.083 9.635 2.209 5.084 0 7.308 7.126 14 19 2.182z'/%3E%3C/svg%3E");
}
.basketHeading {
  margin: 0;
  font-weight: 700;
}
h1.basketHeading,
h2.basketHeading {
  font-size: 24px;
  line-height: 34px;
}
h3.basketHeading {
  font-size: 18px;
  line-height: 26px;
}
.basketHeadingWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.basketPrice {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  text-align: right;
}
.basketAgeWarning {
  margin: 0;
  font-size: 12px;
  color: #666;
  padding-left: 15px;
}
.basketProductCard {
  position: relative;
}
.basketProductCard__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.basketProductCard__link + .basketProductCard__content {
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
  -webkit-transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
}
.basketProductCard__link + .basketProductCard__content:hover,
.basketProductCard__link + .basketProductCard__content:focus-within {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketProductCard__link + .basketProductCard__content:hover .basketProductCard__remove,
.basketProductCard__link + .basketProductCard__content:focus-within .basketProductCard__remove {
  border-color: #CCCCCC;
}
.basketProductCard__link + .basketProductCard__content:hover .basketProductCard__remove path,
.basketProductCard__link + .basketProductCard__content:focus-within .basketProductCard__remove path {
  fill: #CCCCCC;
}
.basketProductCard__link:hover + .basketProductCard__content,
.basketProductCard__link:focus + .basketProductCard__content {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketProductCard__link:hover + .basketProductCard__content .basketProductCard__remove,
.basketProductCard__link:focus + .basketProductCard__content .basketProductCard__remove {
  border-color: #CCCCCC;
}
.basketProductCard__link:hover + .basketProductCard__content .basketProductCard__remove path,
.basketProductCard__link:focus + .basketProductCard__content .basketProductCard__remove path {
  fill: #CCCCCC;
}
.basketProductCard__remove,
.basketProductCard__quantity,
.basketProductCard__discount a.productDetail-quantityDiscounts {
  position: relative;
  z-index: 1;
}
.basketProductCard__stock .shops {
  position: relative;
  z-index: 2;
}
.basketProductCard__gift .dropdown {
  z-index: 1;
}
.basketProductCard__gift .dropdown.open {
  z-index: 3;
}
.basketProductCard__remove {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px #fff;
     -moz-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  -webkit-transform: translate(12px, -12px);
     -moz-transform: translate(12px, -12px);
       -o-transform: translate(12px, -12px);
          transform: translate(12px, -12px);
  -webkit-transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  -o-transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
}
.basketProductCard__remove path {
  -webkit-transition: fill 0.25s ease-in-out;
  -o-transition: fill 0.25s ease-in-out;
  -moz-transition: fill 0.25s ease-in-out;
  transition: fill 0.25s ease-in-out;
}
.basketProductCard__remove:hover,
.basketProductCard__remove:focus {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
}
.basketProductCard__remove:hover path,
.basketProductCard__remove:focus path {
  fill: #fff !important;
}
.basketProductCard__content {
  position: relative;
  padding: 20px 20px 20px 128px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
}
.basketProductCard__image {
  position: absolute;
  top: 20px;
  left: 20px;
}
.basketProductCard__image img {
  display: block;
  width: 88px;
  height: 88px;
}
.basketProductCard__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  margin-bottom: 30px;
}
.basketProductCard__footer {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 130px;
  grid-template-areas: 'stock quantity';
}
.basketProductCard__footer:empty {
  display: none;
}
.basketProductCard__title {
  margin: 0 auto 0 0;
  width: 370px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.basketProductCard__unit,
.basketProductCard__price {
  white-space: nowrap;
  font-size: 14px;
  text-align: right;
  line-height: 20px;
}
.basketProductCard__unit {
  color: #666;
  margin-right: 20px;
}
.basketProductCard__price {
  min-width: 58px;
  font-weight: 500;
}
.basketProductCard__info {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 14px;
}
.basketProductCard__gift .productDetail-gifts-item {
  margin: 0;
}
.basketProductCard__gift-item {
  margin-bottom: 10px;
}
.basketProductCard__gift-item:last-child {
  margin-bottom: 0;
}
.basketProductCard__gift + .basketProductCard__discount {
  margin-top: 10px;
}
.basketProductCard__stock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  grid-area: stock;
}
.basketProductCard__stock.stock-default {
  color: #666;
}
.basketProductCard__stock.stock-warning {
  color: #ffa500;
}
.basketProductCard__stock.stock-success {
  color: #95c11f;
}
.basketProductCard__stock.stock-danger {
  color: #ff0000;
}
.basketProductCard__stock.stock-info {
  color: #0077e7;
}
.basketProductCard__stock .shopsInfo {
  width: 600px;
}
.basketProductCard__stock .shopsInfo-body ul {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
}
.basketProductCard__quantity {
  grid-area: quantity;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
}
.basketVoucherCard {
  position: relative;
  margin-bottom: 20px;
}
.basketVoucherCard__remove {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  text-align: inherit;
  outline: none;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px #fff;
     -moz-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  -webkit-transform: translate(12px, -12px);
     -moz-transform: translate(12px, -12px);
       -o-transform: translate(12px, -12px);
          transform: translate(12px, -12px);
  -webkit-transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  -o-transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  -moz-transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  transition: background 0.25s ease-in-out, border 0.25s ease-in-out;
  z-index: 1;
}
.basketVoucherCard__remove path {
  -webkit-transition: fill 0.25s ease-in-out;
  -o-transition: fill 0.25s ease-in-out;
  -moz-transition: fill 0.25s ease-in-out;
  transition: fill 0.25s ease-in-out;
}
.basketVoucherCard__remove:hover,
.basketVoucherCard__remove:focus {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
}
.basketVoucherCard__remove:hover path,
.basketVoucherCard__remove:focus path {
  fill: #fff !important;
}
.basketVoucherCard__remove:hover + .basketVoucherCard__content,
.basketVoucherCard__remove:focus + .basketVoucherCard__content {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketVoucherCard__content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  min-height: 92px;
  padding: 20px 20px 20px 128px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  -webkit-transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
}
.basketVoucherCard__image {
  position: absolute;
  top: 50%;
  left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  width: 88px;
  height: 88px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-transform: translateY(-44px);
     -moz-transform: translateY(-44px);
       -o-transform: translateY(-44px);
          transform: translateY(-44px);
}
.basketVoucherCard__image img {
  display: block;
}
.basketVoucherCard__title,
.basketVoucherCard__info {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.basketProductCardsLayout {
  display: grid;
  grid-gap: 20px;
}
.basketGiftCard {
  position: relative;
  height: 100%;
}
.basketGiftCard__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.basketGiftCard__link + .basketGiftCard__content {
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
  -webkit-transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
}
.basketGiftCard__link + .basketGiftCard__content:hover,
.basketGiftCard__link + .basketGiftCard__content:focus-within {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketGiftCard__link:hover + .basketGiftCard__content,
.basketGiftCard__link:focus + .basketGiftCard__content {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketGiftCard__content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-flow: column;
  padding-bottom: 10px;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
}
.basketGiftCard--withVariant .basketGiftCard__content {
  padding-bottom: 64px;
}
.basketGiftCard__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0;
     -moz-box-flex: 0;
          flex: 0 0;
  margin: 20px 40px;
}
.basketGiftCard__image img {
  display: block;
  width: 88px;
  height: 88px;
}
.basketGiftCard__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1;
     -moz-box-flex: 1;
          flex: 1 1;
  margin: 0;
  padding: 0 20px;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}
.basketGiftCard__info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0;
     -moz-box-flex: 0;
          flex: 0 0;
  margin: 15px 0 0;
  padding: 0 20px;
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
  color: #666;
  text-align: center;
}
.basketGiftCard__variant {
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: -webkit-calc(100% + 2px);
  width: -moz-calc(100% + 2px);
  width: calc(100% + 2px);
}
.basketGiftCard__variant .bootstrap-select .btn {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  border-color: #E2E2E2;
}
.basketGiftCard.isDisabled {
  cursor: not-allowed;
}
.basketGiftCard.isActive {
  -webkit-box-shadow: 0 0 0 1px #95c11f;
     -moz-box-shadow: 0 0 0 1px #95c11f;
          box-shadow: 0 0 0 1px #95c11f;
}
.basketGiftCard.isActive .basketGiftCard__content {
  border-color: #95c11f;
}
.basketGiftCard.isActive .bootstrap-select .btn {
  border-left-color: #95c11f;
  border-right-color: #95c11f;
  border-bottom-color: #95c11f;
}
.basketGiftCardsLayout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.basketVoucherPrice {
  display: grid;
  grid-template-columns: 335px 1fr;
  grid-template-rows: auto;
  grid-template-areas: 'voucher price';
}
.basketVoucherPrice .basketVoucherPrice__voucher {
  grid-area: voucher;
}
.basketVoucherPrice .basketStep1Price {
  grid-area: price;
}
.basketStep1Price {
  text-align: right;
}
.basketStep1Price__value {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.basketStep1Price__value span {
  margin-left: 1ch;
}
.basketStep1Price__points span {
  color: #666;
}
.basketCardsLayout {
  display: grid;
  grid-gap: 10px;
}
.basketDeliveryCard {
  position: relative;
}
.basketDeliveryCard__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.basketDeliveryCard__link + .basketDeliveryCard__content {
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
  -webkit-transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
}
.basketDeliveryCard__link + .basketDeliveryCard__content:hover,
.basketDeliveryCard__link + .basketDeliveryCard__content:focus-within {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketDeliveryCard__link:hover + .basketDeliveryCard__content,
.basketDeliveryCard__link:focus + .basketDeliveryCard__content {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketDeliveryCard__content {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-auto-rows: minmax(1px, auto);
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  min-height: 110px;
}
.basketDeliveryCard__content:focus-within {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketDeliveryCard.isActive .basketDeliveryCard__content {
  background: #F9FFE9;
  border-color: #95c11f;
  -webkit-box-shadow: 0 0 0 1px #95c11f;
     -moz-box-shadow: 0 0 0 1px #95c11f;
          box-shadow: 0 0 0 1px #95c11f;
}
.basketDeliveryCard__content > * {
  grid-column-start: 2;
  grid-column-end: 3;
}
.basketDeliveryCard__image {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
}
.basketDeliveryCard__image img {
  width: 60px;
  height: auto;
  display: block;
}
.basketDeliveryCard__title {
  margin: 0;
}
.basketDeliveryCard__title,
.basketDeliveryCard__date,
.basketDeliveryCard__price,
.basketDeliveryCard__login {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.basketDeliveryCard__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  color: #fff;
  background: #95c11f;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}
.basketDeliveryCard__date {
  margin-top: 10px;
}
.basketDeliveryCard__price {
  margin-top: 5px;
}
.basketDeliveryCard__price-text,
.basketDeliveryCard__price-info {
  display: inline-block;
}
.basketDeliveryCard__price-info {
  font-weight: 400;
  color: #999;
  padding-left: 5px;
}
.basketDeliveryCard__date--warning,
.basketDeliveryCard__price--warning {
  color: #ffa500;
}
.basketDeliveryCard__date--success,
.basketDeliveryCard__price--success {
  color: #95c11f;
}
.basketDeliveryCard__date--danger,
.basketDeliveryCard__price--danger {
  color: #ff0000;
}
.basketDeliveryCard__date--info,
.basketDeliveryCard__price--info {
  color: #0077e7;
}
.basketDeliveryCard__input {
  margin-top: 20px;
  grid-column-start: 1;
}
.basketDeliveryCard__input .form-control {
  padding-left: 15px;
}
.basketDeliveryCard__input .form-control:-moz-read-only {
  background-color: #ffffff;
}
.basketDeliveryCard__input .form-control:read-only {
  background-color: #ffffff;
}
.basketDeliveryCard__input--search .form-control {
  background: url('../images/layout/search-light.svg') no-repeat -webkit-calc(100% - 15px) center;
  background: url('../images/layout/search-light.svg') no-repeat -moz-calc(100% - 15px) center;
  background: url('../images/layout/search-light.svg') no-repeat calc(100% - 15px) center;
  -webkit-background-size: 19px auto;
     -moz-background-size: 19px auto;
          background-size: 19px auto;
}
.basketDeliveryCard__login {
  margin-top: 20px;
  color: #ffa500;
}
.basketDeliveryCard__change {
  margin-top: 20px;
  grid-column-start: 1;
}
.basketPaymentCard {
  position: relative;
}
.basketPaymentCard__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.basketPaymentCard__link + .basketPaymentCard__content {
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
  -webkit-transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  -o-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  -moz-transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: border 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out, -moz-box-shadow 0.25s ease-in-out;
}
.basketPaymentCard__link + .basketPaymentCard__content:hover,
.basketPaymentCard__link + .basketPaymentCard__content:focus-within {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketPaymentCard__link:hover + .basketPaymentCard__content,
.basketPaymentCard__link:focus + .basketPaymentCard__content {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketPaymentCard__content {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-auto-rows: minmax(1px, auto);
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  min-height: 110px;
}
.basketPaymentCard__content:focus-within {
  border: 1px solid #CCCCCC;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
     -moz-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
}
.basketPaymentCard.isActive .basketPaymentCard__content {
  background: #F9FFE9;
  border-color: #95c11f;
  -webkit-box-shadow: 0 0 0 1px #95c11f;
     -moz-box-shadow: 0 0 0 1px #95c11f;
          box-shadow: 0 0 0 1px #95c11f;
}
.basketPaymentCard__content > * {
  grid-column-start: 2;
  grid-column-end: 3;
}
.basketPaymentCard__image {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
}
.basketPaymentCard__image img {
  width: 34px;
  height: auto;
  display: block;
}
.basketPaymentCard__title {
  margin: 0;
}
.basketPaymentCard__title,
.basketPaymentCard__price {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.basketPaymentCard__price {
  margin-top: 12px;
}
.basketPaymentCard__price--warning {
  color: #ffa500;
}
.basketPaymentCard__price--success {
  color: #95c11f;
}
.basketPaymentCard__price--danger {
  color: #ff0000;
}
.basketPaymentCard__price--info {
  color: #0077e7;
}
.basketPaymentCard__change {
  margin-top: 20px;
  grid-column-start: 1;
}
.basketSummaryBox {
  position: relative;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.basketSummaryBox p:last-child {
  margin-bottom: 0;
}
.basketSummaryBox table {
  width: 100%;
}
.basketSummaryBox__delivery {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: auto;
}
.basketOrderInfo {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.basketOrderInfo p:last-child {
  margin-bottom: 0;
}
.basketSummaryTable {
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.basketSummaryTable td {
  text-align: right;
}
.basketSummaryTable th,
.basketSummaryTable td {
  padding: 2px 0;
}
.basketSummaryTable table {
  width: 100%;
}
.orderConfirmHeader {
  text-align: center;
}
.orderConfirmHeader .icon {
  font-size: 42px;
  line-height: 1;
}
.orderConfirmHeader .icon,
.orderConfirmHeader .icon:before {
  display: block;
}
.orderConfirmHeader-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
}
.orderConfirmDelivery {
  text-align: center;
}
.orderConfirmDelivery-title {
  font-size: 18px;
  line-height: 26px;
}
.orderConfirmDelivery-text {
  color: #666666;
  line-height: 24px;
}
.p-0 {
  padding: 0px;
}
.pt-0 {
  padding-top: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.m-0 {
  margin: 0px;
}
.mt-0 {
  margin-top: 0px;
}
.ml-0 {
  margin-left: 0px;
}
.mr-0 {
  margin-right: 0px;
}
.mb-0 {
  margin-bottom: 0px;
}
.p-5 {
  padding: 5px;
}
.pt-5 {
  padding-top: 5px;
}
.pl-5 {
  padding-left: 5px;
}
.pr-5 {
  padding-right: 5px;
}
.pb-5 {
  padding-bottom: 5px;
}
.m-5 {
  margin: 5px;
}
.mt-5 {
  margin-top: 5px;
}
.ml-5 {
  margin-left: 5px;
}
.mr-5 {
  margin-right: 5px;
}
.mb-5 {
  margin-bottom: 5px;
}
.p-10 {
  padding: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.m-10 {
  margin: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.p-15 {
  padding: 15px;
}
.pt-15 {
  padding-top: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-15 {
  padding-right: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.m-15 {
  margin: 15px;
}
.mt-15 {
  margin-top: 15px;
}
.ml-15 {
  margin-left: 15px;
}
.mr-15 {
  margin-right: 15px;
}
.mb-15 {
  margin-bottom: 15px;
}
.p-20 {
  padding: 20px;
}
.pt-20 {
  padding-top: 20px;
}
.pl-20 {
  padding-left: 20px;
}
.pr-20 {
  padding-right: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.m-20 {
  margin: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.ml-20 {
  margin-left: 20px;
}
.mr-20 {
  margin-right: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.p-25 {
  padding: 25px;
}
.pt-25 {
  padding-top: 25px;
}
.pl-25 {
  padding-left: 25px;
}
.pr-25 {
  padding-right: 25px;
}
.pb-25 {
  padding-bottom: 25px;
}
.m-25 {
  margin: 25px;
}
.mt-25 {
  margin-top: 25px;
}
.ml-25 {
  margin-left: 25px;
}
.mr-25 {
  margin-right: 25px;
}
.mb-25 {
  margin-bottom: 25px;
}
.p-30 {
  padding: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pl-30 {
  padding-left: 30px;
}
.pr-30 {
  padding-right: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.m-30 {
  margin: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.ml-30 {
  margin-left: 30px;
}
.mr-30 {
  margin-right: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.p-35 {
  padding: 35px;
}
.pt-35 {
  padding-top: 35px;
}
.pl-35 {
  padding-left: 35px;
}
.pr-35 {
  padding-right: 35px;
}
.pb-35 {
  padding-bottom: 35px;
}
.m-35 {
  margin: 35px;
}
.mt-35 {
  margin-top: 35px;
}
.ml-35 {
  margin-left: 35px;
}
.mr-35 {
  margin-right: 35px;
}
.mb-35 {
  margin-bottom: 35px;
}
.p-40 {
  padding: 40px;
}
.pt-40 {
  padding-top: 40px;
}
.pl-40 {
  padding-left: 40px;
}
.pr-40 {
  padding-right: 40px;
}
.pb-40 {
  padding-bottom: 40px;
}
.m-40 {
  margin: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.ml-40 {
  margin-left: 40px;
}
.mr-40 {
  margin-right: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.p-45 {
  padding: 45px;
}
.pt-45 {
  padding-top: 45px;
}
.pl-45 {
  padding-left: 45px;
}
.pr-45 {
  padding-right: 45px;
}
.pb-45 {
  padding-bottom: 45px;
}
.m-45 {
  margin: 45px;
}
.mt-45 {
  margin-top: 45px;
}
.ml-45 {
  margin-left: 45px;
}
.mr-45 {
  margin-right: 45px;
}
.mb-45 {
  margin-bottom: 45px;
}
.p-50 {
  padding: 50px;
}
.pt-50 {
  padding-top: 50px;
}
.pl-50 {
  padding-left: 50px;
}
.pr-50 {
  padding-right: 50px;
}
.pb-50 {
  padding-bottom: 50px;
}
.m-50 {
  margin: 50px;
}
.mt-50 {
  margin-top: 50px;
}
.ml-50 {
  margin-left: 50px;
}
.mr-50 {
  margin-right: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
.p-55 {
  padding: 55px;
}
.pt-55 {
  padding-top: 55px;
}
.pl-55 {
  padding-left: 55px;
}
.pr-55 {
  padding-right: 55px;
}
.pb-55 {
  padding-bottom: 55px;
}
.m-55 {
  margin: 55px;
}
.mt-55 {
  margin-top: 55px;
}
.ml-55 {
  margin-left: 55px;
}
.mr-55 {
  margin-right: 55px;
}
.mb-55 {
  margin-bottom: 55px;
}
.p-60 {
  padding: 60px;
}
.pt-60 {
  padding-top: 60px;
}
.pl-60 {
  padding-left: 60px;
}
.pr-60 {
  padding-right: 60px;
}
.pb-60 {
  padding-bottom: 60px;
}
.m-60 {
  margin: 60px;
}
.mt-60 {
  margin-top: 60px;
}
.ml-60 {
  margin-left: 60px;
}
.mr-60 {
  margin-right: 60px;
}
.mb-60 {
  margin-bottom: 60px;
}
.p-65 {
  padding: 65px;
}
.pt-65 {
  padding-top: 65px;
}
.pl-65 {
  padding-left: 65px;
}
.pr-65 {
  padding-right: 65px;
}
.pb-65 {
  padding-bottom: 65px;
}
.m-65 {
  margin: 65px;
}
.mt-65 {
  margin-top: 65px;
}
.ml-65 {
  margin-left: 65px;
}
.mr-65 {
  margin-right: 65px;
}
.mb-65 {
  margin-bottom: 65px;
}
.p-70 {
  padding: 70px;
}
.pt-70 {
  padding-top: 70px;
}
.pl-70 {
  padding-left: 70px;
}
.pr-70 {
  padding-right: 70px;
}
.pb-70 {
  padding-bottom: 70px;
}
.m-70 {
  margin: 70px;
}
.mt-70 {
  margin-top: 70px;
}
.ml-70 {
  margin-left: 70px;
}
.mr-70 {
  margin-right: 70px;
}
.mb-70 {
  margin-bottom: 70px;
}
.p-75 {
  padding: 75px;
}
.pt-75 {
  padding-top: 75px;
}
.pl-75 {
  padding-left: 75px;
}
.pr-75 {
  padding-right: 75px;
}
.pb-75 {
  padding-bottom: 75px;
}
.m-75 {
  margin: 75px;
}
.mt-75 {
  margin-top: 75px;
}
.ml-75 {
  margin-left: 75px;
}
.mr-75 {
  margin-right: 75px;
}
.mb-75 {
  margin-bottom: 75px;
}
.p-80 {
  padding: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pl-80 {
  padding-left: 80px;
}
.pr-80 {
  padding-right: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.m-80 {
  margin: 80px;
}
.mt-80 {
  margin-top: 80px;
}
.ml-80 {
  margin-left: 80px;
}
.mr-80 {
  margin-right: 80px;
}
.mb-80 {
  margin-bottom: 80px;
}
.p-85 {
  padding: 85px;
}
.pt-85 {
  padding-top: 85px;
}
.pl-85 {
  padding-left: 85px;
}
.pr-85 {
  padding-right: 85px;
}
.pb-85 {
  padding-bottom: 85px;
}
.m-85 {
  margin: 85px;
}
.mt-85 {
  margin-top: 85px;
}
.ml-85 {
  margin-left: 85px;
}
.mr-85 {
  margin-right: 85px;
}
.mb-85 {
  margin-bottom: 85px;
}
.p-90 {
  padding: 90px;
}
.pt-90 {
  padding-top: 90px;
}
.pl-90 {
  padding-left: 90px;
}
.pr-90 {
  padding-right: 90px;
}
.pb-90 {
  padding-bottom: 90px;
}
.m-90 {
  margin: 90px;
}
.mt-90 {
  margin-top: 90px;
}
.ml-90 {
  margin-left: 90px;
}
.mr-90 {
  margin-right: 90px;
}
.mb-90 {
  margin-bottom: 90px;
}
.p-95 {
  padding: 95px;
}
.pt-95 {
  padding-top: 95px;
}
.pl-95 {
  padding-left: 95px;
}
.pr-95 {
  padding-right: 95px;
}
.pb-95 {
  padding-bottom: 95px;
}
.m-95 {
  margin: 95px;
}
.mt-95 {
  margin-top: 95px;
}
.ml-95 {
  margin-left: 95px;
}
.mr-95 {
  margin-right: 95px;
}
.mb-95 {
  margin-bottom: 95px;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pl-100 {
  padding-left: 100px;
}
.pr-100 {
  padding-right: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.m-100 {
  margin: 100px;
}
.mt-100 {
  margin-top: 100px;
}
.ml-100 {
  margin-left: 100px;
}
.mr-100 {
  margin-right: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}

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