@charset "UTF-8";
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

$mq-support: false;
$mq-fixed-value: 1024;

// Renders at fixed value
@include bp (min-width, 300px) { 
    div { color:#000; }
}

// Doesn't render without MQ support
@include bp (min-width, 1200px) { 
    div { color:#FFF; }
}

// Doesn't render without MQ support
@include bp (max-width, 300px) { 
    div { color:#444; }
}

// Renders at fixed value
@include bp (max-width, 1200px) { 
    div { color:#888; }
}

// ----------------------------------------------
*/
.product-collateral.toggle-content.tabs.accordion-open #collateral-tabs .tab.current {
  background-color: #fff;
  border-bottom-color: transparent;
  color: #0867a9; }

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Removes default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em; }

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
  color: #0867a9; }

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ============================================ *
 * Reset
 * ============================================ */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  -webkit-tap-highlight-color: transparent;
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */ }

body {
  background-color: #f5f6f8;
  color: #000000;
  line-height: 1; }

body .page {
  background: url(/skin/frontend/gastrro/default/images/tlo-produkty.png) 50% 20px no-repeat fixed;
  border-bottom: 1px solid #d4d6e2; }

/*body .page {
    background: url(/skin/frontend/gastrro/default/images/tlo-cien-boczny.png) 50% 0 no-repeat fixed,
        url(/skin/frontend/gastrro/default/images/tlo-produkt1.png) 50% 0 no-repeat fixed,
        url(/skin/frontend/gastrro/default/images/tlo-produkt2.png) 50% 0 no-repeat fixed;
}*/
@media only screen and (max-width: 1260px) {
  body .page {
    background: none; } }
html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal; }

th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left; }

address {
  font-style: normal; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

img {
  display: block; }

ol,
ul {
  list-style: none; }

q:before,
q:after {
  content: ''; }

input:focus,
input[type="search"]:focus {
  outline-offset: -2px; }

input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box; }

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width; }
@-o-viewport {
  width: device-width; }
@viewport {
  width: device-width; }
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

body,
button,
input,
select,
table,
textarea {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  color: #556c94;
  font-size: 14px;
  line-height: 1.5; }

a {
  color: #556c94;
  text-decoration: none; }

a:hover {
  color: #c1151a;
  text-decoration: underline; }

a:focus {
  outline: 0;
  /*color: darken($c-action, 30%);*/ }

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase; }

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase; }

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase; }

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase; }

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase; }

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase; }

/* ============================================ *
 * Shared Classes
 * ============================================ */
.address-list address {
  margin-bottom: 1em; }

.availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: uppercase; }

.availability .label {
  display: none; }

.availability.in-stock {
  color: #11B400; }

.availability.available-soon,
.availability.out-of-stock {
  color: #DF280A; }

.availability-only {
  color: #DF280A;
  margin-bottom: 10px; }

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #556c94;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase; }

.product-name .h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #556c94;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase; }

/* -------------------------------------------- *
 * Block Module
 */
.block,
.col-left-first {
  margin-bottom: 20px; }

.col-left-first .block:last-of-type {
  margin-bottom: 0; }

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #d4d6e2; }
  .block-title h2,
  .block-title h3,
  .block-title strong {
    color: #0867a9;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: normal;
    text-transform: none; }
  .block-title small {
    font-size: 100%;
    font-weight: normal;
    color: #c0c2d2; }

body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0; }

.block-subtitle {
  color: #0867a9;
  font-size: 16px;
  margin-bottom: 10px; }

.block.amshopby-filters-top {
  margin-top: 20px; }
  .block.amshopby-filters-top .block-content {
    padding: 15px;
    background-color: #f7f7fc;
    border-top: 1px solid #d4d6e2;
    border-bottom: 1px solid #d4d6e2; }

.block-content.unpad {
  padding: 0; }

.block-content li.item {
  margin: 0 0 10px 9px; }

.block-content li.item:last-child {
  margin-bottom: 0; }

.block .actions {
  margin: 10px 0 0; }
  .block .actions:after {
    content: '';
    display: table;
    clear: both; }
  .block .actions a {
    float: left; }
  .block .actions .button {
    float: right; }

.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px; }

.main-container.col2-left-layout .col-main {
  border-left: 1px solid #d4d6e2; }

.customer-account .sidebar .block,
.blog-index-list .sidebar .block,
.blog-cat-view .sidebar .block,
.blog-post-view .sidebar .block {
  padding: 0;
  position: relative;
  margin-bottom: 0; }
  .customer-account .sidebar .block .block-content,
  .blog-index-list .sidebar .block .block-content,
  .blog-cat-view .sidebar .block .block-content,
  .blog-post-view .sidebar .block .block-content {
    padding: 0px;
    border: none; }
    .customer-account .sidebar .block .block-content ul,
    .blog-index-list .sidebar .block .block-content ul,
    .blog-cat-view .sidebar .block .block-content ul,
    .blog-post-view .sidebar .block .block-content ul {
      background-color: #f7f7fc;
      border: 1px solid #d4d6e2; }
      .customer-account .sidebar .block .block-content ul li,
      .blog-index-list .sidebar .block .block-content ul li,
      .blog-cat-view .sidebar .block .block-content ul li,
      .blog-post-view .sidebar .block .block-content ul li {
        border-bottom: 1px solid #fff;
        text-align: center;
        padding: 0px; }
        .customer-account .sidebar .block .block-content ul li:last-child,
        .blog-index-list .sidebar .block .block-content ul li:last-child,
        .blog-cat-view .sidebar .block .block-content ul li:last-child,
        .blog-post-view .sidebar .block .block-content ul li:last-child {
          border-bottom: none; }
        .customer-account .sidebar .block .block-content ul li a,
        .blog-index-list .sidebar .block .block-content ul li a,
        .blog-cat-view .sidebar .block .block-content ul li a,
        .blog-post-view .sidebar .block .block-content ul li a {
          font-size: 14px;
          color: #556c94;
          width: 100%;
          display: block;
          padding: 7px 0;
          min-height: 33px; }
          .customer-account .sidebar .block .block-content ul li a:hover,
          .blog-index-list .sidebar .block .block-content ul li a:hover,
          .blog-cat-view .sidebar .block .block-content ul li a:hover,
          .blog-post-view .sidebar .block .block-content ul li a:hover {
            color: #0867a9;
            font-weight: normal; }
        .customer-account .sidebar .block .block-content ul li:hover, .customer-account .sidebar .block .block-content ul li.current,
        .blog-index-list .sidebar .block .block-content ul li:hover,
        .blog-index-list .sidebar .block .block-content ul li.current,
        .blog-cat-view .sidebar .block .block-content ul li:hover,
        .blog-cat-view .sidebar .block .block-content ul li.current,
        .blog-post-view .sidebar .block .block-content ul li:hover,
        .blog-post-view .sidebar .block .block-content ul li.current {
          background-color: #fff; }
          .customer-account .sidebar .block .block-content ul li:hover:last-child, .customer-account .sidebar .block .block-content ul li.current:last-child,
          .blog-index-list .sidebar .block .block-content ul li:hover:last-child,
          .blog-index-list .sidebar .block .block-content ul li.current:last-child,
          .blog-cat-view .sidebar .block .block-content ul li:hover:last-child,
          .blog-cat-view .sidebar .block .block-content ul li.current:last-child,
          .blog-post-view .sidebar .block .block-content ul li:hover:last-child,
          .blog-post-view .sidebar .block .block-content ul li.current:last-child {
            border-bottom: none; }
          .customer-account .sidebar .block .block-content ul li:hover a, .customer-account .sidebar .block .block-content ul li.current a,
          .blog-index-list .sidebar .block .block-content ul li:hover a,
          .blog-index-list .sidebar .block .block-content ul li.current a,
          .blog-cat-view .sidebar .block .block-content ul li:hover a,
          .blog-cat-view .sidebar .block .block-content ul li.current a,
          .blog-post-view .sidebar .block .block-content ul li:hover a,
          .blog-post-view .sidebar .block .block-content ul li.current a {
            color: #0867a9;
            font-weight: normal; }
  .customer-account .sidebar .block .block-title,
  .blog-index-list .sidebar .block .block-title,
  .blog-cat-view .sidebar .block .block-title,
  .blog-post-view .sidebar .block .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0; }
    .customer-account .sidebar .block .block-title > strong,
    .blog-index-list .sidebar .block .block-title > strong,
    .blog-cat-view .sidebar .block .block-title > strong,
    .blog-post-view .sidebar .block .block-title > strong {
      margin: 0;
      margin-bottom: 10px;
      color: #556c94;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-size: 14px;
      font-weight: bold;
      font-style: normal;
      line-height: 1.4;
      text-rendering: optimizeSpeed;
      text-transform: uppercase;
      -moz-user-select: none;
      -ms-user-select: none;
      -webkit-user-select: none;
      -o-user-select: none;
      user-select: none;
      font-weight: normal;
      margin-bottom: 0px;
      padding: 7px 10px;
      border-width: 1px;
      border-style: solid;
      border-color: #d4d6e2;
      position: relative;
      color: #fff;
      background-color: #617795;
      display: block;
      width: 100%;
      cursor: pointer;
      border-bottom: 0; }
      .customer-account .sidebar .block .block-title > strong:hover,
      .blog-index-list .sidebar .block .block-title > strong:hover,
      .blog-cat-view .sidebar .block .block-title > strong:hover,
      .blog-post-view .sidebar .block .block-title > strong:hover {
        color: #617795;
        background-color: #f7f7fc; }
    .customer-account .sidebar .block .block-title.active > strong,
    .blog-index-list .sidebar .block .block-title.active > strong,
    .blog-cat-view .sidebar .block .block-title.active > strong,
    .blog-post-view .sidebar .block .block-title.active > strong {
      margin: 0;
      margin-bottom: 10px;
      color: #556c94;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-size: 14px;
      font-weight: bold;
      font-style: normal;
      line-height: 1.4;
      text-rendering: optimizeSpeed;
      text-transform: uppercase;
      -moz-user-select: none;
      -ms-user-select: none;
      -webkit-user-select: none;
      -o-user-select: none;
      user-select: none;
      font-weight: normal;
      margin-bottom: 0px;
      padding: 7px 10px;
      border-width: 1px;
      border-style: solid;
      border-color: #d4d6e2;
      position: relative;
      color: #fff;
      background-color: #617795; }
      .customer-account .sidebar .block .block-title.active > strong:hover,
      .blog-index-list .sidebar .block .block-title.active > strong:hover,
      .blog-cat-view .sidebar .block .block-title.active > strong:hover,
      .blog-post-view .sidebar .block .block-title.active > strong:hover {
        color: #617795;
        background-color: #f7f7fc; }

@media only screen and (max-width: 780px) {
  .sidebar .block:not(.block-layered-nav) {
    padding: 0;
    position: relative; }
    .sidebar .block:not(.block-layered-nav) .block-content {
      padding: 0px;
      border: none; }
      .sidebar .block:not(.block-layered-nav) .block-content ul {
        background-color: #f7f7fc;
        border: 1px solid #d4d6e2; }
        .sidebar .block:not(.block-layered-nav) .block-content ul li {
          border-bottom: 1px solid #fff;
          text-align: center;
          padding: 0px; }
          .sidebar .block:not(.block-layered-nav) .block-content ul li:last-child {
            border-bottom: none; }
          .sidebar .block:not(.block-layered-nav) .block-content ul li a {
            font-size: 14px;
            color: #556c94;
            width: 100%;
            display: block;
            padding: 7px 0;
            min-height: 33px; }
            .sidebar .block:not(.block-layered-nav) .block-content ul li a:hover {
              color: #0867a9;
              font-weight: normal; }
          .sidebar .block:not(.block-layered-nav) .block-content ul li:hover, .sidebar .block:not(.block-layered-nav) .block-content ul li.current {
            background-color: #fff; }
            .sidebar .block:not(.block-layered-nav) .block-content ul li:hover:last-child, .sidebar .block:not(.block-layered-nav) .block-content ul li.current:last-child {
              border-bottom: none; }
            .sidebar .block:not(.block-layered-nav) .block-content ul li:hover a, .sidebar .block:not(.block-layered-nav) .block-content ul li.current a {
              color: #0867a9;
              font-weight: normal; }
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0; }
    .sidebar .block:not(.block-layered-nav) .block-title {
      padding: 0;
      margin-top: 0;
      border-bottom: none;
      border-top: none;
      margin-bottom: 0; }
      .sidebar .block:not(.block-layered-nav) .block-title > strong {
        margin: 0;
        margin-bottom: 10px;
        color: #556c94;
        font-family: "Sarala", Tahoma, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        font-style: normal;
        line-height: 1.4;
        text-rendering: optimizeSpeed;
        text-transform: uppercase;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
        user-select: none;
        font-weight: normal;
        margin-bottom: 0px;
        padding: 7px 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #d4d6e2;
        position: relative;
        color: #fff;
        background-color: #617795;
        display: block;
        width: 100%;
        cursor: pointer;
        border-bottom: 0; }
        .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
          color: #617795;
          background-color: #f7f7fc; }
      .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
        margin: 0;
        margin-bottom: 10px;
        color: #556c94;
        font-family: "Sarala", Tahoma, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        font-style: normal;
        line-height: 1.4;
        text-rendering: optimizeSpeed;
        text-transform: uppercase;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
        user-select: none;
        font-weight: normal;
        margin-bottom: 0px;
        padding: 7px 10px;
        border-width: 1px;
        border-style: solid;
        border-color: #d4d6e2;
        position: relative;
        color: #fff;
        background-color: #617795; }
        .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
          color: #617795;
          background-color: #f7f7fc; }
  .sidebar.col-left {
    border-right: none; } }
@media only screen and (max-width: 480px) {
  .block-content .block-subtitle {
    text-align: center; }
  .block-content .actions {
    text-align: center; }
    .block-content .actions a {
      float: none; } }
/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none; }
.block-account li,
.block-cms-menu li {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  padding: 3px 0; }
  .block-account li strong,
  .block-cms-menu li strong {
    font-weight: 400;
    color: #3e5881; }
  .block-account li a,
  .block-cms-menu li a {
    color: #556c94; }
    .block-account li a:hover,
    .block-cms-menu li a:hover {
      color: #c1151a;
      text-decoration: none; }
  .block-account li.current,
  .block-cms-menu li.current {
    background-color: #f7f7fc; }
    .block-account li.current a,
    .block-cms-menu li.current a {
      color: #0867a9;
      font-weight: bold; }
  .block-account li:hover,
  .block-cms-menu li:hover {
    background-color: #f7f7fc; }

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
/*.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
    background: $c-button-secondary;
    color: $c-text;
    padding: 7px 15px;

    &:hover {
        background: $c-button-secondary-hover;
        cursor: pointer;
    }

    &:active {
        background: $c-button-secondary-active;
        color: $c-text;
    }

    &:focus {
        color: $c-text;
        background: $c-button-secondary-active;
        outline: none;
    }
}*/
.sidebar .actions button.button {
  white-space: normal; }

/* Primary Buttons */
.catalog-category-view .category-products .products-list .item .p-cena-div .actions .button, .catalog-category-view .category-products .products-grid .item .p-cena-div .actions .button {
  transition: all 500ms;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -o-transition: all 500ms; }
  .catalog-category-view .category-products .products-list .item .p-cena-div .actions .button:after, .catalog-category-view .category-products .products-grid .item .p-cena-div .actions .button:after {
    display: none; }

.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button,
.header-minicart .minicart-actions a {
  border: none;
  background-color: #11B400;
  display: inline-block;
  padding: 5px 15px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 500ms ease-out;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out; }
  .button:hover,
  .cart-table .product-cart-actions .button:hover,
  #co-shipping-method-form .buttons-set .button:hover,
  .footer .button:hover,
  .header-minicart .minicart-actions a:hover {
    background: #c1151a;
    cursor: pointer; }
    .button:hover:after,
    .cart-table .product-cart-actions .button:hover:after,
    #co-shipping-method-form .buttons-set .button:hover:after,
    .footer .button:hover:after,
    .header-minicart .minicart-actions a:hover:after {
      left: 110%; }
  .button:active,
  .cart-table .product-cart-actions .button:active,
  #co-shipping-method-form .buttons-set .button:active,
  .footer .button:active,
  .header-minicart .minicart-actions a:active {
    background: #c1151a;
    top: 1px; }
  .button:focus,
  .cart-table .product-cart-actions .button:focus,
  #co-shipping-method-form .buttons-set .button:focus,
  .footer .button:focus,
  .header-minicart .minicart-actions a:focus {
    background-color: #c1151a;
    outline: none; }
  .button:after,
  .cart-table .product-cart-actions .button:after,
  #co-shipping-method-form .buttons-set .button:after,
  .footer .button:after,
  .header-minicart .minicart-actions a:after {
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(53%, rgba(246, 246, 246, 0.53)), color-stop(100%, white));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
    content: "";
    height: 155px;
    left: -150px;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transition: all 500ms ease-out;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 1500ms ease-out;
    width: 100px;
    z-index: 10; }
  .button > span,
  .cart-table .product-cart-actions .button > span,
  #co-shipping-method-form .buttons-set .button > span,
  .footer .button > span,
  .header-minicart .minicart-actions a > span {
    z-index: 20; }

a.button {
  text-decoration: none; }

a.button:hover {
  color: #FFFFFF; }

/* Adjacent buttons */
.button + .button {
  margin-left: 5px; }

.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle; }

.button2:focus {
  outline: none; }

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  display: inline-block;
  color: #0867a9;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }
  .button2 span:hover,
  .button2 span span:hover {
    color: #c1151a; }

.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  text-align: right;
  /*    a:not(.button) {
          line-height: 20px;
          display: inline-block;
          padding: 5px;
      }*/ }
  .buttons-set p.required {
    margin: 0;
    margin-left: 10px;
    line-height: 33px;
    float: right; }
  .buttons-set .back-link {
    float: left;
    margin: 0;
    line-height: 33px; }
  .buttons-set .button {
    float: right;
    margin-left: 5px;
    min-width: 140px; }
  .buttons-set:after {
    content: '';
    display: table;
    clear: both; }

@media only screen and (max-width: 780px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .col2-set .buttons-set .required {
    display: none; } }
@media only screen and (max-width: 480px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px; }
  .buttons-set .back-link {
    display: none; }
  .buttons-set .required {
    display: none; } }
/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left; }

.paypal-after .paypal-or {
  float: left; }

.paypal-or {
  line-height: 34px;
  margin: 0px 10px 5px; }

.paypal-after .paypal-button {
  float: left; }

.paypal-button {
  line-height: 0px; }

.paypal-button img {
  display: inline; }

@media only screen and (max-width: 740px) {
  .paypal-or {
    line-height: 20px; }

  .paypal-logo,
  .paypal-or,
  .paypal-button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none; } }
/* -------------------------------------------- *
 * Wishlist
 */
.btn-wishlist {
  background-position: 4px -650px;
  display: inline-block;
  width: 20px;
  height: 20px; }

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-wishlist, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-menu .icon, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon,
.skip-contact .icon, .skip-cart .icon, .top-footer #fast_contact_bottom .f-icon > span, .top-footer #fast_contact_bottom .f-facebook span a, ol.products-list li.item .actions button,
ul.products-grid li.item .actions button, .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-ikona span, .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li .produkt-dodatki-ikona, .checkout-types button .do-kasy, #m-wishlist-table tfoot tr button .koszyk-btn,
table.wishlist-product-price tfoot tr button .koszyk-btn,
.cart table tfoot tr button .koszyk-btn,
.opc-wrapper-opc table tfoot tr button .koszyk-btn,
.my-account table tfoot tr button .koszyk-btn, #m-wishlist-table .product-cart-wishlist .link-wishlist,
table.wishlist-product-price .product-cart-wishlist .link-wishlist,
.cart table .product-cart-wishlist .link-wishlist,
.opc-wrapper-opc table .product-cart-wishlist .link-wishlist,
.my-account table .product-cart-wishlist .link-wishlist, .shipping .sp-methods label .dymek-info, body .data-table td.order-again a,
body .data-table td .view a, body .data-table td.view a, .my-account .box-title a.link-edit, .my-account .box-title a.link-remove, a.link-reorder .ikona,
a.link-print .ikona,
a.link-download .ikona, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating, #wishlist-view-form .buttons-set button .wishlist-btn,
.my-wishlist .buttons-set button .wishlist-btn, .c-person .c-person-content .icon,
.cms-kontakt .c-person .c-person-content .icon, .cms-kontakt .contact .c-info .icon, .notice-cookie .cookie-akcept .cookie-ikona, .post-data .icon, #ampromo-overlay .close, .opc-wrapper-opc .opc-btn-checkout .zamowienie {
  background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px; }

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .btn-wishlist, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-menu .icon, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-account .icon,
  .skip-contact .icon, .skip-cart .icon, .top-footer #fast_contact_bottom .f-icon > span, .top-footer #fast_contact_bottom .f-facebook span a, ol.products-list li.item .actions button,
  ul.products-grid li.item .actions button, .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-ikona span, .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li .produkt-dodatki-ikona, .checkout-types button .do-kasy, #m-wishlist-table tfoot tr button .koszyk-btn,
  table.wishlist-product-price tfoot tr button .koszyk-btn,
  .cart table tfoot tr button .koszyk-btn,
  .opc-wrapper-opc table tfoot tr button .koszyk-btn,
  .my-account table tfoot tr button .koszyk-btn, #m-wishlist-table .product-cart-wishlist .link-wishlist,
  table.wishlist-product-price .product-cart-wishlist .link-wishlist,
  .cart table .product-cart-wishlist .link-wishlist,
  .opc-wrapper-opc table .product-cart-wishlist .link-wishlist,
  .my-account table .product-cart-wishlist .link-wishlist, .shipping .sp-methods label .dymek-info, body .data-table td.order-again a,
  body .data-table td .view a, body .data-table td.view a, .my-account .box-title a.link-edit, .my-account .box-title a.link-remove, a.link-reorder .ikona,
  a.link-print .ikona,
  a.link-download .ikona, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating, #wishlist-view-form .buttons-set button .wishlist-btn,
  .my-wishlist .buttons-set button .wishlist-btn, .c-person .c-person-content .icon,
  .cms-kontakt .c-person .c-person-content .icon, .cms-kontakt .contact .c-info .icon, .notice-cookie .cookie-akcept .cookie-ikona, .post-data .icon, #ampromo-overlay .close, .opc-wrapper-opc .opc-btn-checkout .zamowienie {
    background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/icon_sprite@2x.png);
    background-size: 200px 1200px; } }
/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px; }

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  text-transform: uppercase; }
  .breadcrumbs li.product {
    display: none; }

.breadcrumbs a {
  float: left; }

.breadcrumbs strong {
  color: #556c94;
  font-weight: normal; }

.breadcrumbs span {
  float: left;
  padding: 0 7px; }

@media only screen and (max-width: 780px) {
  /*   .breadcrumbs {
         display: none;
     }*/ }
/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.currently a.btn-remove {
  background: transparent url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/cecha-x1.png") left top no-repeat;
  border: none;
  position: static;
  padding: 0;
  height: 16px;
  width: 16px;
  float: left;
  margin: 2px 5px 0px 0px; }
  .currently a.btn-remove:after {
    content: '';
    display: table;
    clear: both; }
  .currently a.btn-remove:hover {
    background: transparent url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/cecha-x2.png") left top no-repeat;
    border: none; }

.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #EDEDED;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative; }
  .btn-remove:hover,
  .btn-previous:hover {
    background-color: #3e5881;
    border-color: #3e5881; }

.btn-remove2 {
  background-position: -31px -650px;
  border: none;
  vertical-align: top; }
  .btn-remove2:after {
    display: none; }
  .btn-remove2:hover {
    background-color: transparent;
    background-position: 4px -650px; }

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #3e5881;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px; }
.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none; }

.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-previous,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px; }

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px; }

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #d4d6e2;
  background: #fafafc; }

/* -------------------------------------------- *
 * CVV Security Code
 */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 13px;
  line-height: 24px; }

/* -------------------------------------------- *
 * Container
 */
.catalog-product-view .main-container {
  position: static; }

.main-container {
  background-color: #FFFFFF;
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  padding: 15px;
  min-height: 400px;
  /*    transform: translateZ(0);*/
  z-index: 2; }
  .main-container:after {
    content: '';
    display: table;
    clear: both; }

.top-footer-container {
  width: 100%;
  padding: 0; }

.footer-container {
  width: 100%;
  background: #C1151A;
  padding: 0 30px; }

@media only screen and (min-width: 480px) {
  .footer-container {
    padding: 0 30px; }

  .main-container {
    padding: 30px; } }
/* -------------------------------------------- *
 * Column Layouts
 */
.main:after,
.col-wrapper:after {
  content: '';
  display: table;
  clear: both; }

.col-left,
.col-right {
  padding: 0 30px; }

.col-main {
  padding-left: 30px; }

.col-left {
  height: 100%;
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left; }
  .col-left img {
    max-width: 100%; }

.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */ }
  .col-right img {
    max-width: 100%; }

.col-main {
  float: left;
  width: 75%; }

.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */ }

.col2-left-layout .col-main {
  float: right; }

.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */ }

.col3-layout .col-right {
  width: 20.83333%; }
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%; }
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 73.68421%; }
  .col3-layout .col-wrapper .col-left {
    width: 26.31579%; }

@media only screen and (max-width: 1000px) {
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%; }
  .col3-layout .col-wrapper {
    float: right;
    width: 100%; }
    .col3-layout .col-wrapper .col-main {
      float: right;
      width: 75%; }
    .col3-layout .col-wrapper .col-left {
      width: 25%; } }
@media only screen and (max-width: 780px) {
  .col-left,
  .col-right,
  .col-main,
  .col1-layout .col-left,
  .col1-layout .col-right,
  .col1-layout .col-main,
  .col2-left-layout .col-left,
  .col2-left-layout .col-right,
  .col2-left-layout .col-main,
  .col2-right-layout .col-left,
  .col2-right-layout .col-right,
  .col2-right-layout .col-main,
  .col3-layout .col-wrapper .col-left,
  .col3-layout .col-right,
  .col3-layout .col-wrapper .col-main,
  .cms-strona-glowna .col-left.sidebar {
    padding: 0;
    margin-bottom: 10px;
    float: none;
    width: auto; }

  .cms-strona-glowna .col-main > .std {
    display: none; }

  .main-container.col2-left-layout .col-main {
    border: none; }

  .col3-layout .col-wrapper {
    float: none;
    width: auto; }

  .col-main {
    float: none;
    width: auto; }

  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */ } }
/* Content Columns */
.col2-set {
  width: 100%; }
  .col2-set .col-1,
  .col2-set .col-2 {
    width: 50%;
    padding: 20px; }
    @media only screen and (max-width: 780px) {
      .col2-set .col-1,
      .col2-set .col-2 {
        padding: 10px; } }
  .col2-set .col-1 {
    float: left;
    padding-left: 0; }
  .col2-set .col-2 {
    float: right;
    padding-right: 0; }
  .col2-set .col-3 {
    float: left;
    padding-right: 0; }
  @media only screen and (max-width: 480px) {
    .col2-set .col-1,
    .col2-set .col-2 {
      float: none;
      width: auto;
      border: 0;
      padding-right: 0;
      padding-left: 0; } }
  .col2-set .narrow {
    width: 33%; }
  .col2-set .wide {
    width: 65%; }
  .col2-set:after {
    content: '';
    display: table;
    clear: both; }

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 781px) {
  .top-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px; } }
/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: rgba(106, 121, 141, 0.95);
  border-top: 1px solid #d4d6e2;
  color: #E6E6E6;
  font-size: 12px;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 10000;
  width: 100%;
  margin: 0 auto; }

@media only screen and (max-width: 480px) {
  .global-site-notice {
    position: static; } }
/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #6c839f;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }

/* -------------------------------------------- *
 * Grid
 */
.grid:after {
  content: '';
  display: table;
  clear: both; }

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11B400; }

.error {
  color: #DF280A;
  font-weight: bold; }

.notice {
  color: #E26703;
  font-weight: bold; }

/* -------------------------------------------- *
 * Messages
 */
.messages,
.std ul.messages,
.messages ul,
.std ul.messages ul {
  list-style: none; }

.messages {
  margin-bottom: 10px; }

.messages li,
.std ul.messages li,
.messages ul li,
.std ul.messages ul li {
  margin-left: 0px; }

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #fafafc;
  font-size: 15px; }

.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px; }

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7; }

.messages .error-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #DF280A;
  border-right: none; }

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6; }

.messages .notice-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #E26703;
  border-right: none; }

.messages .success-msg li {
  color: #556c94;
  border-left: 5px solid #0867a9;
  background-color: #f7f7fc; }

.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #0867a9;
  border-right: none; }

@media only screen and (min-width: 915px) {
  .order-list-grid .col-1 {
    width: 30%; }

  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px; }

  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0; } }
/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto; }

/* -------------------------------------------- *
 * Payment Methods
 */
.payment-methods {
  margin-bottom: 20px; }

.payment-methods dt {
  padding: 5px 0; }

.payment-methods dd {
  padding-top: 10px; }

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #d4d6e2;
  background: #fafafc; }

.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #d4d6e2;
  border-top: none;
  top: -11px;
  left: 30px; }

.payment-methods .form-list:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #fafafc;
  border-top: none;
  top: -10px;
  left: 30px; }

.payment-methods .form-list li:last-child {
  margin-bottom: 0; }

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */ }
  .please-wait img {
    float: left;
    margin-right: 5px;
    width: 24px; }

span.weee {
  display: block; }

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 10px;
  margin: 0 20px 15px 20px;
  background: #fff;
  border: 1px solid #0867a9;
  color: #c1151a; }
  .product-pricing li,
  .tier-prices li,
  .tier-prices-grouped li {
    font-size: 12px; }
  .product-pricing .benefit,
  .tier-prices .benefit,
  .tier-prices-grouped .benefit {
    font-style: italic; }
  .product-pricing .price,
  .tier-prices .price,
  .tier-prices-grouped .price {
    font-weight: bold; }

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }
  .item-options:after {
    content: '';
    display: table;
    clear: both; }
  .item-options dt {
    float: left;
    clear: left;
    font-weight: 600;
    padding-right: 5px;
    font-style: italic; }
    .item-options dt:after {
      content: ': '; }
  .item-options dd {
    float: left;
    padding-left: 10px;
    margin: 0 0 6px; }

.truncated,
.truncated a.dots {
  cursor: help; }

.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px; }
  .truncated a.details:hover {
    text-decoration: none; }

.truncated .truncated_full_value {
  position: relative;
  z-index: 300; }

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #3e5881;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px; }
  .truncated .truncated_full_value .item-options:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #3e5881;
    border-top: none;
    left: 97px;
    top: -7px; }

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px; }

.truncated .show .item-options {
  display: block; }

@media only screen and (max-width: 480px) {
  .truncated {
    cursor: inherit; }
    .truncated a.details {
      display: none; }
    .truncated .truncated_full_value .item-options {
      display: block;
      position: static;
      z-index: 1;
      width: 100%;
      border: none;
      background-color: transparent; }
      .truncated .truncated_full_value .item-options p {
        float: none; }
      .truncated .truncated_full_value .item-options:after {
        display: none; } }
/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 7in;
  margin: 20px;
  background: #FFFFFF; }

/* -------------------------------------------- *
 * Product Image
 */
.product-image,
.no-touch .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
  border: 1px solid #EDEDED;
  overflow: hidden; }

/*.product-image.zoom-available{
    border: none;
}*/
@media only screen and (max-width: 780px) {
  body .product-img-box .product-image:hover {
    border-color: #EDEDED; } }
.no-touch .product-image:hover {
  border-color: #d4d6e2; }

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0; }
  .ratings .rating-box,
  .ratings .rating-links {
    margin: 5px 0; }
  .ratings .rating-box {
    width: 85px;
    height: 17px;
    background-repeat: repeat-x;
    background-position: 0 -620px;
    overflow: hidden; }
  .ratings .rating-box .rating {
    float: left;
    height: 17px;
    background-repeat: repeat-x;
    background-position: 0 -600px; }
  .ratings .amount {
    display: block;
    margin: 5px auto; }
  .ratings .rating-links .separator {
    margin: 0 3px; }

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
.std a {
  color: #0867a9;
  text-decoration: underline; }
  .std a:hover {
    color: #c1151a; }

.std p {
  margin: 0 0 1.5em;
  line-height: 2;
  text-align: justify; }

.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em; }

.std ol li {
  margin-left: 2em;
  line-height: 2; }

.std ul {
  list-style: disc outside url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/kropka.png");
  margin-bottom: 10px; }

.std ul li {
  margin-left: 2em;
  line-height: 2; }

.std .note {
  color: #c0c2d2;
  font-size: 13px; }

/* -------------------------------------------- *
 * Tabs
 */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF; }

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d4d6e2;
  padding: 5px 0 10px 0; }
  .toolbar:after {
    content: '';
    display: table;
    clear: both; }

.toolbar-bottom .toolbar {
  border-bottom: none;
  border-top: 1px solid #d4d6e2;
  padding: 15px 0 0px 0;
  margin-bottom: 0px; }

.pager-no-toolbar {
  margin-bottom: 10px; }

.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px; }

.toolbar,
.pager {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  color: #556c94;
  line-height: 20px;
  font-size: 12px; }

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal; }

.sorter {
  float: left; }
  .sorter select {
    width: 120px;
    position: relative;
    top: 5px; }
  .sorter label {
    position: relative;
    top: 5px;
    margin: 0; }
    .sorter label:after {
      content: ':'; }

.sorter > .sort-by {
  display: inline-block; }
  .sorter > .sort-by .sort-by-switcher {
    width: 20px;
    height: 30px;
    display: inline-block; }
  .sorter > .sort-by .sort-by-switcher--asc {
    background-position: 4px -544px; }
    .sorter > .sort-by .sort-by-switcher--asc:hover {
      background-position: -46px -544px; }
  .sorter > .sort-by .sort-by-switcher--desc {
    background-position: 4px -566px; }
    .sorter > .sort-by .sort-by-switcher--desc:hover {
      background-position: -46px -566px; }

.sorter > .view-mode {
  margin-right: 10px;
  display: inline-block; }
  .sorter > .view-mode .grid,
  .sorter > .view-mode .list {
    display: inline-block;
    width: 30px;
    height: 30px; }
  .sorter > .view-mode .grid {
    background-position: 8px -492px; }
  .sorter > .view-mode strong.grid,
  .sorter > .view-mode a.grid:hover {
    background-position: -42px -492px; }
  .sorter > .view-mode .list {
    background-position: 5px -517px; }
  .sorter > .view-mode strong.list,
  .sorter > .view-mode a.list:hover {
    background-position: -45px -517px; }

.pager {
  float: right;
  text-align: right; }
  .pager > .count-container {
    display: inline-block; }
  .pager .amount {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 14px;
    color: #0867a9;
    white-space: nowrap;
    margin: 0 15px 0 0;
    display: inline-block; }
  .pager .limiter {
    display: inline-block;
    height: 20px;
    line-height: 20px; }
    .pager .limiter > label {
      padding-right: 5px; }
      .pager .limiter > label:after {
        content: ':'; }

.pages {
  margin-left: 10px;
  color: #0867a9; }
  .pages strong {
    display: none; }

.pages {
  display: inline-block; }
  .pages ol {
    position: relative;
    top: 5px;
    display: inline-block; }
    .pages ol li {
      line-height: 20px;
      float: left;
      color: #0867a9; }
    .pages ol:last-child:after {
      content: '';
      display: table;
      clear: both; }

.pages a,
.pages li,
.pages .current {
  line-height: 20px;
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 20px;
  height: 20px;
  padding: 0;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }

.pages a {
  color: #c0c2d2; }
  .pages a:hover {
    color: #0867a9; }

.pages li.current,
.pages li.current:hover {
  color: #fff;
  background-color: #0867a9;
  cursor: default; }

.pages li .next,
.pages li .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative; }
  .pages li .next:hover,
  .pages li .previous:hover {
    background-color: transparent; }

.pages .next:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #c0c2d2;
  border-right: none;
  top: 50%;
  margin-top: -5px;
  left: 50%;
  margin-left: -2px; }
.pages .next:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #0867a9;
  border-right: none; }

.pages .previous:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #c0c2d2;
  border-left: none;
  top: 50%;
  margin-top: -5px;
  left: 50%;
  margin-left: -2px; }
.pages .previous:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #0867a9;
  border-left: none; }

@media only screen and (max-width: 1100px) {
  .toolbar .sorter .sort-by {
    display: block; }
  .toolbar .pager {
    padding-top: 5px; }
    .toolbar .pager .pages {
      display: block; } }
@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none; } }
@media only screen and (max-width: 590px) {
  .toolbar .sorter {
    float: none;
    width: 100%;
    text-align: center; }
    .toolbar .sorter .sort-by {
      display: inline-block; }
  .toolbar .pager {
    float: none;
    width: 100%;
    text-align: center; }
    .toolbar .pager .pages {
      display: inline-block; } }
@media only screen and (max-width: 480px) {
  .toolbar .sorter .view-mode {
    margin-right: 5px; }
  .toolbar .pager .pages, .toolbar .pager .count-container {
    display: block; } }
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer; }
  #checkout-review-table .summary-collapse:before,
  #shopping-cart-totals-table .summary-collapse:before,
  body.customer-account .data-table .summary-collapse:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 7px solid #0867a9;
    border-bottom: none;
    position: static;
    display: inline-block;
    margin-right: 5px; }
  #checkout-review-table .summary-collapse:hover:before,
  #shopping-cart-totals-table .summary-collapse:hover:before,
  body.customer-account .data-table .summary-collapse:hover:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 7px solid #4b5d73;
    border-bottom: none;
    position: static;
    display: inline-block;
    margin-right: 5px; }
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #0867a9;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px; }
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #4b5d73;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px; }

#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px; }

/* ============================================ *
 * Magento Helpers
 * ============================================ */
.a-center {
  text-align: center; }

.a-right,
.align-right {
  text-align: right; }

.no-display {
  display: none !important; }

.nobr,
.nowrap {
  white-space: nowrap; }

.width-full {
  width: 100%; }

/* ============================================ *
 * Custom Helpers
 * ============================================ */
.hidden {
  display: none; }

/* ============================================ *
 * Print Styles
 * ============================================ */
.page-print .print-head {
  margin: 0 0 15px; }

.page-print .print-head .logo {
  float: none;
  width: auto; }

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px; }
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px; }

.fieldset + .fieldset {
  margin-top: 5px; }

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED; }

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px; }
  .input-box:after {
    content: '';
    display: table;
    clear: both; }

li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle; }

/* For adjacent select inputs. */
/* Example: credit card expiration month and year. */
.input-box .v-fix {
  float: left;
  margin-right: 5px;
  max-width: 100%; }

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-weight: normal;
  font-size: 13px;
  text-align: left;
  text-transform: none; }

label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 12px; }

label.required em,
span.required em {
  display: none; }

/* -------------------------------------------- *
 * Hints
 */
.input-hint {
  color: #c0c2d2;
  font-size: 12px; }

/* -------------------------------------------- *
 * Select
 */
select {
  font-size: 14px; }

select + select {
  margin-left: 5px; }

select[multiple] {
  width: 270px;
  border: 1px solid #d4d6e2;
  font-size: 15px;
  padding: 5px; }

select {
  border: 1px solid #d4d6e2; }
  select:focus {
    border: 1px solid #888888; }
  select:hover {
    border: 1px solid #AAAAAA; }

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  border: 1px solid #c0c2d2;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px; }
  textarea:hover {
    border: 1px solid #c0c2d2; }

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #d4d6e2;
  background: #FFFFFF;
  font-size: 14px; }
  .input-text:hover {
    border: 1px solid #c0c2d2; }

.input-text.validation-failed,
select.validation-failed {
  border-color: #DF280A; }

.input-text.validation-failed:focus {
  outline-color: #ef9485; }

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding-left: 5px;
  width: 100%; }

input[type=checkbox] {
  display: none !important; }

/* Only show on iPhones (not iPads or any other device) */
@media only screen and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 0) {
  input[type=email],
  input[type=search],
  input[type=number],
  input[type=password],
  input[type=tel],
  input[type=text],
  select {
    font-size: 16px;
    /* Prevent from zooming on focus */ } }
.ie8 .input-text {
  max-width: none; }

/* -------------------------------------------- *
 * Inputs - Quantity
 */
input[type=number].qty,
input[type=text].qty {
  width: 3em;
  text-align: center;
  vertical-align: middle; }

/* -------------------------------------------- *
 * Placeholder
 */
::-webkit-input-placeholder {
  color: #c0c2d2; }

input:-moz-placeholder {
  color: #c0c2d2; }

/* -------------------------------------------- *
 * Checkbox And Radio
 */
input[type=radio],
input[type=checkbox] {
  width: 0px;
  height: 0px;
  visibility: hidden; }

input[type=radio] + label:not(.ocena-papryczki),
input[type=checkbox] + label {
  position: relative;
  padding-left: 20px; }

input[type=radio] + label:not(.ocena-papryczki):before,
input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 1px; }

input[type=radio] + label:not(.ocena-papryczki):before {
  background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/radio-1.png);
  background-repeat: no-repeat;
  background-position: left center; }

input[type=radio]:checked + label:not(.ocena-papryczki):before {
  background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/radio-2.png);
  background-repeat: no-repeat;
  background-position: left center; }

input[type=checkbox] + label:before {
  background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/amshopby-cb1.png);
  background-repeat: no-repeat;
  background-position: left center; }

input[type=checkbox]:checked + label:before {
  background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/amshopby-cb2.png);
  background-repeat: no-repeat;
  background-position: left center; }

/*input[type=checkbox]{
    width:0px;
    height:0px;
    
    &:before{
        content: "";
        display: inline-block;
        background-image:url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/amshopby-cb1.png); background-repeat: no-repeat; background-position: left center;
        width: 15px;
        height: 15px;
    }
    
    &:checked:before {
        background-image:url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/amshopby-cb2.png); background-repeat: no-repeat; background-position: left center;
    }
}




.checkbox,
.radio {
    position: relative;
    top: -1px;
    display: inline-block;
}

.checkbox + label,
.radio + label {
    width: auto;
    max-width: 85%;
    padding: 0 0 0 8px;
    font-size: $f-size;
    font-weight: normal;
    vertical-align: top;
}*/
/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 13px; }

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px; }
  .form-list > li.fields {
    margin-bottom: 0px; }
.form-list select {
  width: 365px;
  max-width: 100%; }
.form-list .input-range .input-text {
  width: 74px; }
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px; }

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */ }
  .form-list .control div.input-box,
  .sp-methods dt div.input-box,
  #checkout-shipping-method-load .sp-methods dd div.input-box,
  #co-shipping-method-form .sp-methods dd div.input-box,
  .product-options ul.options-list div.input-box {
    display: inline;
    float: left; }
    .form-list .control div.input-box:after,
    .sp-methods dt div.input-box:after,
    #checkout-shipping-method-load .sp-methods dd div.input-box:after,
    #co-shipping-method-form .sp-methods dd div.input-box:after,
    .product-options ul.options-list div.input-box:after {
      display: none; }
  .form-list .control input.radio,
  .form-list .control input.checkbox,
  .sp-methods dt input.radio,
  .sp-methods dt input.checkbox,
  #checkout-shipping-method-load .sp-methods dd input.radio,
  #checkout-shipping-method-load .sp-methods dd input.checkbox,
  #co-shipping-method-form .sp-methods dd input.radio,
  #co-shipping-method-form .sp-methods dd input.checkbox,
  .product-options ul.options-list input.radio,
  .product-options ul.options-list input.checkbox {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    vertical-align: top; }
  .form-list .control label,
  .sp-methods dt label,
  #checkout-shipping-method-load .sp-methods dd label,
  #co-shipping-method-form .sp-methods dd label,
  .product-options ul.options-list label {
    display: inline-block;
    width: auto;
    max-width: none;
    min-width: 250px;
    float: none; }
  .form-list .control .no-display + label,
  .sp-methods dt .no-display + label,
  #checkout-shipping-method-load .sp-methods dd .no-display + label,
  #co-shipping-method-form .sp-methods dd .no-display + label,
  .product-options ul.options-list .no-display + label {
    padding-left: 10px;
    background-color: transparent; }
    .form-list .control .no-display + label:hover,
    .sp-methods dt .no-display + label:hover,
    #checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
    #co-shipping-method-form .sp-methods dd .no-display + label:hover,
    .product-options ul.options-list .no-display + label:hover {
      background-color: transparent; }

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%; }

.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit; }

.form-list .control {
  margin-top: 20px; }
  .form-list .control label {
    float: none; }
  .form-list .control .radio,
  .form-list .control .checkbox {
    margin-right: 6px; }
  .form-list .control .input-box {
    clear: none;
    display: inline-block;
    width: auto;
    padding: 0; }

.form-instructions {
  font-style: italic;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 13px;
  color: #c0c2d2; }

/* ============================================ *
 * Table Helpers
 * ============================================ */
.hide-th {
  text-indent: -9999px; }

/* ============================================ *
 * Data Table
 * ============================================ */
.data-table {
  width: 100%; }

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
  width: 50%;
  font-size: 13px; }

.data-table th {
  background: #fafafc;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  line-height: 1.4;
  font-size: 12px; }

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #d4d6e2; }

.data-table tbody td,
.data-table tfoot td {
  font-family: "Sarala", Tahoma, Arial, sans-serif; }

.data-table tfoot tr {
  background: #fafafc; }

.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px; }
  .data-table tbody td .item-options dt:after {
    content: ':'; }

/* ============================================ *
 * Generic Info Table
 * ============================================ */
.info-box {
  border: 1px solid #d4d6e2;
  padding: 12px 15px;
  margin: 0 0 15px; }
  .info-box h2 {
    font-weight: bold;
    font-size: 13px; }

.info-table th,
.info-table td {
  vertical-align: top; }

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0; }

.info-table td {
  padding: 4px 0; }

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #d4d6e2; }
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #d4d6e2;
  padding: 6px;
  background-color: transparent; }
.zebra-table tr {
  background-color: #EEEDED; }
.zebra-table tr:nth-child(odd) {
  background-color: #F8F7F5; }

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 480px) {
  .linearize-table {
    /* Helpers */ }
    .linearize-table tr,
    .linearize-table th,
    .linearize-table td {
      display: block; }
    .linearize-table thead th {
      border-right: 0;
      border-left: 0; }
    .linearize-table thead th.lin-hide {
      display: none; }
    .linearize-table thead th:nth-child(1n+2) {
      display: none; }
    .linearize-table tbody tr {
      position: relative;
      border-bottom: 1px solid #d4d6e2; }
    .linearize-table tbody td {
      padding: 0 10px 4px;
      border-right: 0;
      border-bottom: 0; }
    .linearize-table tbody td.lin-hide {
      display: none; }
    .linearize-table tbody td:first-child {
      padding-top: 10px; }
    .linearize-table tbody td[data-rwd-label] {
      text-align: left; }
    .linearize-table tbody td[data-rwd-label]:before {
      content: attr(data-rwd-label) ":";
      font-size: 12px;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      padding-right: 5px;
      text-transform: uppercase; }
    .linearize-table tfoot tr {
      display: block;
      text-align: right; }
    .linearize-table tfoot tr:after {
      content: '';
      display: table;
      clear: both; }
    .linearize-table tfoot td {
      display: block;
      float: left; }
    .linearize-table tfoot td.lin-hide {
      display: none; }
    .linearize-table tfoot td:nth-child(odd) {
      clear: left;
      width: 60%; }
    .linearize-table tfoot td:nth-child(even) {
      text-align: left;
      width: 40%; }
    .linearize-table .linearize-hide {
      display: none; }
    .linearize-table .linearize-unpad {
      padding: 0; }
    .linearize-table .linearize-show {
      display: block; } }
@media only screen and (max-width: 590px) {
  .linearize-table-large {
    /* Helpers */ }
    .linearize-table-large tr,
    .linearize-table-large th,
    .linearize-table-large td {
      display: block; }
    .linearize-table-large thead th {
      border-right: 0;
      border-left: 0; }
    .linearize-table-large thead th.lin-hide {
      display: none; }
    .linearize-table-large thead th:nth-child(1n+2) {
      display: none; }
    .linearize-table-large tbody tr {
      position: relative;
      border-bottom: 1px solid #d4d6e2; }
    .linearize-table-large tbody td {
      padding: 0 10px 4px;
      border-right: 0;
      border-bottom: 0; }
    .linearize-table-large tbody td.lin-hide {
      display: none; }
    .linearize-table-large tbody td:first-child {
      padding-top: 10px; }
    .linearize-table-large tbody td[data-rwd-label] {
      text-align: left; }
    .linearize-table-large tbody td[data-rwd-label]:before {
      content: attr(data-rwd-label) ":";
      font-size: 12px;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      padding-right: 5px;
      text-transform: uppercase; }
    .linearize-table-large tfoot tr {
      display: block;
      text-align: right; }
    .linearize-table-large tfoot tr:after {
      content: '';
      display: table;
      clear: both; }
    .linearize-table-large tfoot td {
      display: block;
      float: left; }
    .linearize-table-large tfoot td.lin-hide {
      display: none; }
    .linearize-table-large tfoot td:nth-child(odd) {
      clear: left;
      width: 60%; }
    .linearize-table-large tfoot td:nth-child(even) {
      text-align: left;
      width: 40%; }
    .linearize-table-large .linearize-hide {
      display: none; }
    .linearize-table-large .linearize-unpad {
      padding: 0; }
    .linearize-table-large .linearize-show {
      display: block; } }
@media only screen and (min-width: 591px) {
  .linearize-table .linearize-collapse {
    display: none; } }
/* ============================================ *
 * Global
 * ============================================ */
.wrapper {
  background: url(/skin/frontend/gastrro/default/images/tlo-cien-gora.png) top repeat-x, url(/skin/frontend/gastrro/default/images/tlo.jpg) 50% 0 repeat-y fixed;
  background-color: #f5f6f8;
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  padding-top: 125px;
  transition: padding-top 0.2s;
  -moz-transition: padding-top 0.2s;
  -webkit-transition: padding-top 0.2s; }

.wrapper.fix {
  padding-top: 78px; }
  .wrapper.fix .page-header-top {
    padding-bottom: 0px; }
    .wrapper.fix .page-header-top .logo {
      min-height: 0px;
      max-width: 190px; }
      .wrapper.fix .page-header-top .logo img {
        height: 50px; }
    .wrapper.fix .page-header-top #header-search {
      top: 13px;
      padding-left: 190px; }
    .wrapper.fix .page-header-top .account-cart-wrapper {
      top: 13px; }

@media only screen and (max-width: 780px) {
  .wrapper {
    padding-top: 0px; } }
@media only screen and (max-width: 1260px) {
  body .wrapper {
    background-image: none; } }
.wrapper:after {
  content: '';
  display: table;
  clear: both; }

@media only screen and (max-width: 780px) {
  .wrapper {
    margin-bottom: 0 !important; } }
/* ============================================ *
 * Zmiana wysokości headera, wtedy kiedy zmiana menu
 * ============================================ */
.page-header-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10000;
  transition: all 0.2s;
  background: #fdfdfd;
  /* Old browsers */
  border-bottom: 1px solid #d4d6e2; }
  .page-header-top .header-logo {
    max-width: 1260px;
    margin: 0 auto;
    position: relative; }
    .page-header-top .header-logo h1, .page-header-top .header-logo h3 {
      margin-bottom: 0px; }

.page-header-container {
  position: relative;
  height: 135px;
  max-width: 1260px;
  margin: 0 auto;
  background: url(/skin/frontend/gastrro/default/images/menu-bg-cien.png) center bottom no-repeat; }
  .page-header-container > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(62, 88, 129, 0.6);
    color: #fff;
    text-align: center;
    z-index: 1; }
  .page-header-container .logged-as {
    position: absolute;
    top: 12px;
    right: 120px;
    color: #617795;
    font-size: 13px; }
    .page-header-container .logged-as a {
      font-size: 13px;
      color: #617795;
      text-decoration: none;
      font-weight: bold; }
      .page-header-container .logged-as a:hover {
        color: #0867a9;
        text-decoration: none; }

@media only screen and (max-width: 1000px) {
  .page-header-container {
    height: 120px; } }
@media only screen and (max-width: 1500px) {
  #trustbadge-container-98e3dadd90eb493088abdc5597a70810 {
    display: none; } }
@media only screen and (max-width: 780px) {
  .page-header-top {
    padding-bottom: 0px;
    position: static; }

  .page-header-container {
    height: auto; } }
/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #3e5881;
  text-transform: uppercase; }
  .header-language-background .header-language-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; }
  .header-language-background:after {
    content: '';
    display: table;
    clear: both; }
  .header-language-background .form-language,
  .header-language-background .currency-switcher {
    float: left;
    margin-right: 10px; }
  .header-language-background .welcome-msg {
    float: right; }

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px; }
  .page-header-container .store-language-container label {
    display: none; }
  .page-header-container .store-language-container select {
    max-width: 100%; }

@media only screen and (max-width: 480px) {
  .page-header-container .store-language-container {
    padding-top: 8px; }
    .page-header-container .store-language-container select {
      font-size: 12px; } }
.header-language-background,
.header-language-background a {
  color: #E6E6E6; }

@media only screen and (max-width: 780px) {
  .header-language-background {
    display: none; } }
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  max-width: 250px;
  min-height: 44px;
  text-align: center;
  padding: 10px 10px 10px 20px;
  display: block;
  position: relative;
  z-index: 15;
  opacity: 1;
  transition: padding .5s ease-in-out;
  -moz-transition: padding .5s ease-in-out;
  -webkit-transition: padding .5s ease-in-out; }
  .logo img {
    height: 78px;
    transition: height 0.5s ease-in-out, width 0.5s ease-in-out; }

@media only screen and (min-width: 781px) {
  .logo {
    min-height: 90px; }
    .logo .small {
      display: none; }
    .logo .large {
      display: block; } }
/* ============================================ *
 * Moje konto, Koszyk i Kontakt
 * ============================================ */
.account-cart-wrapper {
  position: absolute;
  top: 42px;
  right: 30px;
  display: block;
  z-index: 1001;
  transition: top 0.5s ease-in-out;
  -moz-transition: top 0.5s ease-in-out;
  -webkit-transition: top 0.5s ease-in-out; }

@media only screen and (max-width: 780px) {
  .account-cart-wrapper {
    position: static;
    top: 0;
    right: 0;
    display: block; } }
/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #d4d6e2;
  border-bottom: 1px solid #d4d6e2; }

@media only screen and (min-width: 781px) {
  .skip-links {
    border: 0; } }
/* -------------------------------------------- *
 * Skip - Link
 * ============================================ */
.skip-link,
.skip-cart,
.skip-contact,
.skip-account {
  position: relative;
  width: 25%;
  height: 44px;
  line-height: 42px;
  text-align: center;
  margin-left: 10px; }
  .skip-link label,
  .skip-cart label,
  .skip-contact label,
  .skip-account label {
    color: #617795; }
  .skip-link:hover .label,
  .skip-cart:hover .label,
  .skip-contact:hover .label,
  .skip-account:hover .label {
    color: #c1151a; }

a.skip-link,
a.skip-cart,
a.skip-contact,
a.skip-account {
  text-decoration: none; }

@media only screen and (max-width: 959px) {
  .skip-link .label,
  .skip-cart .label,
  .skip-contact .label,
  .skip-account .label {
    display: none; }

  .skip-link.skip-active {
    background: #f7f7fc;
    color: inherit; }

  .skip-link.skip-active span {
    color: inherit; } }
@media only screen and (max-width: 780px) {
  .skip-link:not(.skip-active):hover,
  .skip-cart:hover,
  .skip-contact:hover,
  .skip-account:hover {
    background: #f7f7fc;
    color: #556c94; }

  .skip-link,
  .skip-cart,
  .skip-contact,
  .skip-account {
    border-right: 1px solid #d4d6e2;
    background-color: #617795;
    background-image: none;
    color: #FEFEFE;
    float: left;
    margin-left: 0px; }
    .skip-link .label,
    .skip-cart .label,
    .skip-contact .label,
    .skip-account .label {
      display: inline; }
    .skip-link .icon,
    .skip-cart .icon,
    .skip-contact .icon,
    .skip-account .icon {
      margin-right: 3px; }

  .skip-contact {
    display: none; } }
/* Skip Link - Icon */
.skip-link .icon,
.skip-cart .icon,
.skip-contact .icon,
.skip-account .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle; }

.skip-link.skip-menu .icon,
.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px; }

/* Skip Link - Label */
@media only screen and (max-width: 500px) {
  .skip-link .label,
  .skip-cart .label,
  .skip-contact .label,
  .skip-account .label {
    display: none; } }
/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none; }

.skip-content.skip-active {
  display: block;
  background: #f7f7fc; }

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 780px) {
  #header-account li a,
  .nav-primary a.level0,
  #menu-top.skip-content.skip-active li a {
    font-size: 14px;
    padding: 0 0 0 25px;
    border-bottom: 1px solid #d4d6e2;
    text-align: left;
    color: #556c94;
    text-transform: uppercase;
    line-height: 40px;
    background-image: none;
    height: 40px; }

  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0
  #menu-top.skip-content.skip-active li:last-child a {
    border-bottom: 0; }

  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover,
  .no-touch #menu-top.skip-content.skip-active li a:hover {
    background-color: #fff;
    text-decoration: none; } }
#menu-top li a {
  overflow: hidden;
  position: relative; }
  #menu-top li a:hover {
    color: #0867a9;
    text-decoration: none; }

#menu-top li a:after {
  content: '';
  color: #0867a9;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
  height: 100%;
  top: 50%;
  left: 50%;
  border-bottom: 2px solid #0867a9;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

#menu-top li a:hover:after,
#menu-top li a.active:after {
  width: 100%;
  opacity: 1;
  color: #0867a9; }

#menu-top li a:active:after {
  width: 120%;
  opacity: 1;
  color: #0867a9; }

/* ============================================ *
 * Przycisk Menu
 * ============================================ */
.skip-menu:not(.skip-active):hover .icon {
  background-position: -46px 4px; }
.skip-menu .icon {
  background-position: 4px 4px; }

.skip-menu.skip-active .icon {
  background-position: -46px 4px; }

@media only screen and (min-width: 500px) {
  .skip-menu {
    width: 25%; } }
@media only screen and (min-width: 781px) {
  .skip-menu {
    display: none; } }
/* ============================================ *
 * Przycisk Nav
 * ============================================ */
.skip-nav {
  width: 40%; }
  .skip-nav:not(.skip-active):hover {
    text-decoration: none; }
    .skip-nav:not(.skip-active):hover .icon {
      background-position: -46px 4px; }

.skip-nav .label {
  display: inline; }

.skip-nav .icon {
  background-position: 4px 4px; }

@media only screen and (min-width: 500px) {
  .skip-nav {
    width: 25%; } }
@media only screen and (min-width: 781px) {
  .skip-nav {
    display: none; } }
/* ============================================ *
 * Menu kategorii
 * ============================================ */
@media only screen and (min-width: 781px) {
  #header-nav {
    display: block;
    /* Force visibility */
    position: absolute;
    width: 100%;
    height: 135px; } }
@media only screen and (max-width: 979px) {
  #header-nav {
    height: 120px; } }
@media only screen and (max-width: 780px) {
  #header-nav {
    position: relative;
    height: auto;
    clear: both;
    overflow: hidden; } }
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 781px) {
  .nav-primary {
    display: block; } }
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }
.nav-primary li {
  position: relative; }
.nav-primary li.level1 a {
  border-bottom: 1px solid #d4d6e2; }

.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block; }

.nav-primary li.level0 > a {
  text-transform: uppercase; }

/* ============================================ *
 * Skip Content
 * ============================================ */
#menu-top.skip-content {
  display: none;
  position: absolute;
  top: 117px;
  left: 0;
  height: 57px;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 57px;
  z-index: 4;
  padding: 20px 240px 0 10px; }
  #menu-top.skip-content ul {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 0;
    transition: margin 1s ease-in-out;
    -moz-transition: margin 1s ease-in-out;
    -webkit-transition: margin 1s ease-in-out; }
    #menu-top.skip-content ul li {
      font-size: 12px;
      width: auto;
      display: block;
      list-style: none;
      float: left; }
      #menu-top.skip-content ul li a {
        font-family: "Sarala", Tahoma, Arial, sans-serif; }

#menu-top.skip-content ul li:nth-child(1) {
  width: 15%; }

#menu-top.skip-content ul li:nth-child(4),
#menu-top.skip-content ul li:nth-child(5) {
  width: 14.25%; }

#menu-top.skip-content ul li:nth-child(2),
#menu-top.skip-content ul li:nth-child(7),
#menu-top.skip-content ul li:nth-child(9) {
  width: 11%; }

#menu-top.skip-content ul li:nth-child(3),
#menu-top.skip-content ul li:nth-child(8) {
  width: 7.5%; }

#menu-top.skip-content ul li:nth-child(6) {
  width: 8.5%; }

#menu-top.skip-content.skip-active {
  display: block;
  height: auto;
  background-image: none;
  padding: 0;
  margin: 0; }
  #menu-top.skip-content.skip-active ul {
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    margin: 0;
    display: block; }
    #menu-top.skip-content.skip-active ul li {
      display: list-item;
      padding: 0;
      width: 100%; }
      #menu-top.skip-content.skip-active ul li a {
        display: block;
        width: 100%; }

@media (max-width: 1040px) {
  #menu-top.skip-content ul li a {
    font-size: 11px; } }
@media only screen and (max-width: 959px) {
  #menu-top.skip-content {
    padding: 20px 10px 0 10px; }
    #menu-top.skip-content ul li a {
      font-size: 12px; } }
@media only screen and (max-width: 780px) {
  #menu-top.skip-content {
    display: none;
    position: static; }
    #menu-top.skip-content ul li {
      float: none; } }
/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 780px) {
  .nav-primary li.level0 ul {
    display: none; }
  .nav-primary li.level0 li {
    padding: 0 0 0 25px; }
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px; }
  .nav-primary li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ccc;
    border-right: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px; }
  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #ccc;
    border-bottom: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px; }
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #3e5881; } }
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 781px) {
  .nav-primary {
    /* Default styles for 1+ drop-down menus */
    /* Level 2+ */
    /* Class for js to add briefly to evaluate element positioning. */
    /* Correct menus that will hang off the page (class added by js) */
    /* Level 1+ */ }
    .nav-primary a.level0 {
      padding: 0 12px; }
    .nav-primary li.level0,
    .nav-primary a.level0 {
      display: inline-table; }
    .nav-primary li:last-child > a {
      border-bottom: none; }
    .nav-primary a:hover,
    .nav-primary li:hover > a {
      color: #3e5881; }
    .nav-primary .menu-active {
      z-index: 200; }
    .nav-primary li.level0 ul {
      background: #FBFBFB;
      border: solid 1px #d4d6e2;
      position: absolute;
      left: 0;
      top: 95px;
      z-index: 10;
      width: 250px;
      padding-left: 10px;
      padding-right: 10px;
      display: none;
      /* Hide until displayed. */ }
    .nav-primary li.level1 ul {
      left: 60px;
      top: 15px; }
    .nav-primary li.level0 ul.level0.position-test {
      display: block; }
    .nav-primary li.level0 ul.level0.spill {
      right: 0;
      left: auto; }
      .nav-primary li.level0 ul.level0.spill li.level1 ul {
        left: auto;
        right: 50px;
        top: 20px; }
    .nav-primary li.level0 li.parent > a {
      position: relative; }
      .nav-primary li.level0 li.parent > a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        display: block;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid #ccc;
        border-right: none;
        right: 5px;
        top: 50%;
        margin-top: -3px; }
    .nav-primary .nav-1, .nav-primary .nav-2, .nav-primary .nav-3, .nav-primary .nav-4, .nav-primary .nav-5, .nav-primary .nav-6, .nav-primary .nav-7, .nav-primary .nav-8 {
      height: 96px;
      padding-top: 55px;
      font-size: 11px;
      width: 12.1%;
      text-align: center;
      border-right: solid 1px #EEE; }
    .nav-primary .nav-1 {
      background: url(/skin/frontend/gastrro/default/images/menu_home.png) center 10px no-repeat; }
    .nav-primary .nav-2 {
      background: url(/skin/frontend/gastrro/default/images/menu_hotel.png) center 10px no-repeat; }
    .nav-primary .nav-3 {
      background: url(/skin/frontend/gastrro/default/images/menu_pizza.png) center 10px no-repeat; }
    .nav-primary .nav-4 {
      background: url(/skin/frontend/gastrro/default/images/menu_kitchen.png) center 10px no-repeat; }
    .nav-primary .nav-5 {
      background: url(/skin/frontend/gastrro/default/images/menu_restaurant.png) center 10px no-repeat; }
    .nav-primary .nav-6 {
      background: url(/skin/frontend/gastrro/default/images/menu_fast_food.png) center 10px no-repeat; }
    .nav-primary .nav-7 {
      background: url(/skin/frontend/gastrro/default/images/menu_catering.png) center 10px no-repeat; }
    .nav-primary .nav-8 {
      background: url(/skin/frontend/gastrro/default/images/menu_bar.png) center 10px no-repeat;
      border-right: none; } }
@media only screen and (min-width: 960px) {
  .nav-primary .nav-1, .nav-primary .nav-2, .nav-primary .nav-3, .nav-primary .nav-4, .nav-primary .nav-5, .nav-primary .nav-6, .nav-primary .nav-7, .nav-primary .nav-8 {
    height: 96px;
    padding-top: 55px;
    font-size: 12px;
    width: 12.5%;
    text-align: center;
    border-right: solid 1px #EEE; } }
.nav-primary li.menu-active > ul {
  display: block; }

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px; }
.skip-search .icon {
  background-position: 4px -146px; }

.skip-search.skip-active .icon {
  background-position: -46px -146px; }

@media only screen and (min-width: 781px) {
  .skip-search {
    display: none; } }
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  display: block;
  position: absolute;
  top: 42px;
  width: 100%;
  height: 44px;
  padding: 0 395px 0 260px;
  transition: padding-left .5s ease-in-out, top 0.5s ease-in-out;
  -moz-transition: padding-left .5s ease-in-out, top 0.5s ease-in-out;
  -webkit-transition: padding-left .5s ease-in-out, top 0.5s ease-in-out; }

@media only screen and (max-width: 959px) {
  #header-search {
    padding-right: 215px; } }
@media only screen and (max-width: 780px) {
  #header-search {
    display: none;
    padding: 20px 60px 20px 20px;
    height: auto;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none; }

  #header-search.skip-active {
    display: block;
    position: static; } }
/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0; }

#search_mini_form label {
  display: none; }

#search {
  width: 100%;
  height: 44px;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }

#search_mini_form .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: -44px;
  width: 44px;
  height: 44px;
  border: 0; }

#search_mini_form .search-button:hover,
#search_mini_form .search-button:active {
  background-image: none; }

#search_mini_form .search-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-position: 4px -146px; }

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
@media only screen and (max-width: 780px) {
  .skip-account:not(.skip-active):hover .icon {
    background-position: -46px -46px; }
  .skip-account .icon {
    background-position: 4px -46px; } }
.skip-contact:hover .icon {
  background-position: -46px -196px; }
.skip-contact .icon {
  background-position: -96px -196px; }

@media only screen and (min-width: 781px) {
  .skip-account:hover .icon {
    background-position: -46px -46px; }
  .skip-account .icon {
    background-position: -96px -46px; } }
/* ============================================ *
 * Count
 * ============================================ */
.skip-cart div {
  display: inline-block;
  position: relative; }
.skip-cart .count {
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 12px;
  z-index: 5;
  width: 24px;
  height: 24px;
  border: 2px solid #fdfdfd;
  background-color: #0867a9;
  color: #fff;
  font-size: 11px;
  line-height: 21px;
  text-align: center;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }
.skip-cart:hover .count {
  color: #fff;
  background-color: #c1151a; }

.skip-cart.no-count .count {
  display: none; }

.skip-cart .count.empty {
  display: none; }

/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart .icon {
  margin-right: 3px; }

@media only screen and (max-width: 780px) {
  .skip-cart:not(.skip-active):hover .icon {
    background-position: -50px -95px; }
    .skip-cart:not(.skip-active):hover .icon.icon-count {
      background-position: -35px -1133px; }
  .skip-cart:not(.skip-active):hover .count {
    border-color: #f7f7fc;
    background-color: #c1151a;
    color: #fff; }
  .skip-cart .icon {
    background-position: 0px -95px; }
    .skip-cart .icon.icon-count {
      background-position: -150px -1133px; }
  .skip-cart .count {
    border-color: #617795;
    background-color: #fff;
    color: #617795; } }
@media only screen and (min-width: 781px) {
  .skip-cart:hover .icon {
    background-position: -50px -96px; }
    .skip-cart:hover .icon.icon-count {
      background-position: -35px -1133px; }
  .skip-cart .icon {
    background-position: -100px -96px; }
    .skip-cart .icon.icon-count {
      background-position: 0px -1133px; } }
@media only screen and (max-width: 780px) {
  .skip-cart {
    border: 0; }

  .skip-cart.skip-active {
    border: 0; }

  .skip-cart:hover {
    border: 0; } }
/* -------------------------------------------- *
 * Mini Cart - Empty
 */
.cart-menu .empty {
  padding: 20px;
  text-align: center; }

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px; }

.cart-menu .actions .button {
  float: left;
  width: 48%; }

.cart-menu .actions .button + .button {
  margin-left: 4%; }

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2; }

/* List */
.mini-cart-list {
  margin-bottom: 5px; }

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #d4d6e2;
  font-size: 13px;
  line-height: 1.35; }

.mini-cart-list .product-name {
  display: inline-block; }

.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px; }

.mini-cart-list .product-image img {
  width: 60px;
  height: 60px; }

.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #c0c2d2;
  font-size: 12px; }

/* Too full - additional items will be shown in cart */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #d4d6e2;
  font-size: 13px; }

.footer-wrapper {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
  left: 0; }

@media only screen and (max-width: 780px) {
  .footer-wrapper {
    position: static; } }
/* ============================================ *
 * Top Footer
 * ============================================ */
.top-footer-container {
  max-width: 1260px;
  margin: 0 auto;
  position: relative; }

.top-footer {
  width: 100%;
  padding-top: 30px; }
  .top-footer > ul {
    display: block;
    width: 100%; }
    .top-footer > ul:after {
      content: '';
      display: table;
      clear: both; }
    .top-footer > ul > li {
      width: 32%;
      margin-right: 2%;
      height: auto;
      height: 200px;
      padding: 20px;
      float: left;
      margin-bottom: 2%;
      background-color: #fff;
      -moz-box-shadow: 4px 4px 8px rgba(163, 169, 199, 0.1);
      -webkit-box-shadow: 4px 4px 8px rgba(163, 169, 199, 0.1);
      box-shadow: 4px 4px 8px rgba(163, 169, 199, 0.1); }
      .top-footer > ul > li:nth-child(3n+3) {
        margin-right: 0px; }
      .top-footer > ul > li .f-block {
        height: 160px;
        display: table-cell;
        vertical-align: middle;
        width: 40%;
        border-right: 1px solid #d4d6e2;
        padding-right: 20px;
        text-align: center; }
        .top-footer > ul > li .f-block > p {
          color: #167c3b;
          font-size: 15px;
          font-weight: bold;
          line-height: 1;
          margin-top: 10px;
          font-style: italic; }
        .top-footer > ul > li .f-block img {
          margin: 0 auto;
          width: auto;
          max-width: 100%; }
          .top-footer > ul > li .f-block img:nth-child(2) {
            margin-top: 10px; }
      .top-footer > ul > li .f-tresc {
        height: 160px;
        display: table-cell;
        vertical-align: middle;
        width: 60%;
        padding-left: 20px; }
        .top-footer > ul > li .f-tresc h2,
        .top-footer > ul > li .f-tresc .partner-title {
          color: #0867a9;
          font-weight: normal;
          margin: 0 0 10px 0;
          font-size: 14px;
          text-transform: none;
          font-style: normal;
          line-height: 1.2;
          font-family: "Sarala", Tahoma, Arial, sans-serif; }
          .top-footer > ul > li .f-tresc h2 span,
          .top-footer > ul > li .f-tresc .partner-title span {
            display: inline-block; }
        .top-footer > ul > li .f-tresc p {
          color: #556c94;
          font-size: 12px;
          font-style: italic; }
  .top-footer #fast_contact_bottom {
    position: relative;
    background: #5a728b url(/skin/frontend/gastrro/default/images/woman.png) right bottom no-repeat; }
    .top-footer #fast_contact_bottom .f-icon {
      display: table-cell;
      width: auto;
      height: 120px;
      vertical-align: middle; }
      .top-footer #fast_contact_bottom .f-icon > span {
        display: block;
        height: 20px;
        width: 23px;
        margin-right: 15px;
        margin-bottom: 25px;
        margin-top: 25px; }
        .top-footer #fast_contact_bottom .f-icon > span.adres {
          background-position: -70px -790px; }
        .top-footer #fast_contact_bottom .f-icon > span.tel {
          background-position: -70px -825px; }
        .top-footer #fast_contact_bottom .f-icon > span.email {
          background-position: -70px -860px; }
    .top-footer #fast_contact_bottom .f-tresc {
      height: 120px;
      padding-left: 0px;
      width: auto; }
      .top-footer #fast_contact_bottom .f-tresc p {
        margin-bottom: 20px;
        margin-top: 20px; }
      .top-footer #fast_contact_bottom .f-tresc p,
      .top-footer #fast_contact_bottom .f-tresc a {
        font-size: 18px;
        line-height: 1.4;
        color: #fff;
        font-style: normal; }
      .top-footer #fast_contact_bottom .f-tresc a {
        text-decoration: none; }
        .top-footer #fast_contact_bottom .f-tresc a:hover {
          text-decoration: underline; }
    .top-footer #fast_contact_bottom .f-facebook {
      position: absolute;
      bottom: 20px;
      left: 20px; }
      .top-footer #fast_contact_bottom .f-facebook:after {
        content: '';
        display: table;
        clear: both; }
      .top-footer #fast_contact_bottom .f-facebook span {
        display: block;
        float: left; }
        .top-footer #fast_contact_bottom .f-facebook span.facebook a {
          background-position: 0 -250px; }
        .top-footer #fast_contact_bottom .f-facebook span.twitter a {
          background-position: -35px -250px; }
        .top-footer #fast_contact_bottom .f-facebook span a {
          display: block;
          height: 28px;
          width: 30px;
          margin-right: 10px;
          opacity: 0.7; }
          .top-footer #fast_contact_bottom .f-facebook span a:hover {
            opacity: 1; }

@media only screen and (max-width: 1199px) {
  .top-footer ul li .f-block {
    width: 35%; }
    .top-footer ul li .f-block p {
      font-size: 13px; }
  .top-footer ul li .f-tresc {
    width: 65%; } }
@media only screen and (max-width: 1100px) {
  .top-footer #fast_contact_bottom .f-tresc p,
  .top-footer #fast_contact_bottom .f-tresc a {
    font-size: 14px; } }
@media only screen and (max-width: 979px) {
  .top-footer {
    margin-bottom: 10px; }
    .top-footer ul li {
      width: 49%;
      margin-right: 2%; }
      .top-footer ul li:nth-child(3n+3) {
        margin-right: 2%; }
      .top-footer ul li:nth-child(2n+2) {
        margin-right: 0px; }
    .top-footer #fast_contact_bottom .f-tresc p,
    .top-footer #fast_contact_bottom .f-tresc a {
      font-size: 18px; } }
@media only screen and (max-width: 780px) {
  .top-footer #fast_contact_bottom .f-tresc p,
  .top-footer #fast_contact_bottom .f-tresc a {
    font-size: 15px; } }
@media only screen and (max-width: 660px) {
  .top-footer ul li {
    width: 32%;
    margin-right: 2%; }
    .top-footer ul li:nth-child(2n+2) {
      margin-right: 2%; }
    .top-footer ul li:nth-child(3n+3) {
      margin-right: 0px; }
    .top-footer ul li .f-block {
      border: none;
      padding-right: 0px; }
    .top-footer ul li .f-tresc {
      display: none; }
    .top-footer ul li#fast_contact_bottom {
      background-image: none; }
      .top-footer ul li#fast_contact_bottom .f-tresc {
        display: table-cell; }
  .top-footer #fast_contact_bottom .f-tresc p,
  .top-footer #fast_contact_bottom .f-tresc a {
    font-size: 14px; } }
@media only screen and (max-width: 590px) {
  .top-footer ul li {
    width: 49%;
    margin-right: 2%; }
    .top-footer ul li:nth-child(3n+3) {
      margin-right: 2%; }
    .top-footer ul li:nth-child(2n+2) {
      margin-right: 0px; }
  .top-footer #fast_contact_bottom .f-tresc p,
  .top-footer #fast_contact_bottom .f-tresc a {
    font-size: 16px; } }
@media only screen and (max-width: 480px) {
  .top-footer ul li#fast_contact_bottom .f-icon > span {
    margin-right: 10px; }
  .top-footer #fast_contact_bottom {
    padding: 20px 10px; }
    .top-footer #fast_contact_bottom .f-tresc p,
    .top-footer #fast_contact_bottom .f-tresc a {
      font-size: 14px; } }
/* ============================================ *
 * Producenci
 * ============================================ */
.f-producenci-bg {
  width: 100%;
  background-color: #fff;
  padding: 10px 0 10px 0px; }

.f-producenci {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0; }
  .f-producenci img {
    width: 100%;
    padding: 0px;
    margin: 0px auto; }
  .f-producenci a {
    display: block;
    float: left;
    margin: 5px 0; }
    .f-producenci a.stalgast {
      width: 13.8%; }
      .f-producenci a.stalgast img {
        max-width: 174px; }
    .f-producenci a.hendi {
      width: 13.6%; }
      .f-producenci a.hendi img {
        max-width: 170px; }
    .f-producenci a.yato {
      width: 11.6%; }
      .f-producenci a.yato img {
        max-width: 147px; }
    .f-producenci a.retigo {
      width: 9.6%; }
      .f-producenci a.retigo img {
        max-width: 120px; }
    .f-producenci a.gredil {
      width: 9.6%; }
      .f-producenci a.gredil img {
        max-width: 121px; }
    .f-producenci a.roller {
      width: 9.6%; }
      .f-producenci a.roller img {
        max-width: 121px; }
    .f-producenci a.nivona {
      width: 7.7%; }
      .f-producenci a.nivona img {
        max-width: 97px; }
    .f-producenci a.bartscher {
      width: 10.7%; }
      .f-producenci a.bartscher img {
        max-width: 135px; }
    .f-producenci a.robot {
      width: 13.8%; }
      .f-producenci a.robot img {
        max-width: 175px; }
    .f-producenci a.hamilton {
      width: 13.8%;
      clear: both; }
      .f-producenci a.hamilton img {
        max-width: 174px; }
    .f-producenci a.fine {
      width: 13.6%; }
      .f-producenci a.fine img {
        max-width: 170px; }
    .f-producenci a.liebherr {
      width: 11.6%; }
      .f-producenci a.liebherr img {
        max-width: 147px; }
    .f-producenci a.unox {
      width: 9.6%; }
      .f-producenci a.unox img {
        max-width: 120px; }
    .f-producenci a.cas {
      width: 9.6%; }
      .f-producenci a.cas img {
        max-width: 121px; }
    .f-producenci a.arcoroc {
      width: 9.6%; }
      .f-producenci a.arcoroc img {
        max-width: 121px; }
    .f-producenci a.rm {
      width: 7.7%; }
      .f-producenci a.rm img {
        max-width: 97px; }
    .f-producenci a.redfox {
      width: 10.7%; }
      .f-producenci a.redfox img {
        max-width: 135px; }
    .f-producenci a.revolution {
      width: 13.8%; }
      .f-producenci a.revolution img {
        max-width: 175px; }

@media only screen and (max-width: 959px) {
  .f-producenci-bg a {
    margin: 2px 0; }
    .f-producenci-bg a.stalgast {
      width: 25%; }
    .f-producenci-bg a.hendi {
      width: 25%; }
    .f-producenci-bg a.yato {
      width: 25%; }
    .f-producenci-bg a.retigo {
      width: 25%; }
    .f-producenci-bg a.gredil {
      width: 20%;
      clear: both; }
    .f-producenci-bg a.roller {
      width: 20%; }
    .f-producenci-bg a.nivona {
      width: 20%; }
    .f-producenci-bg a.bartscher {
      width: 20%; }
    .f-producenci-bg a.robot {
      width: 20%; }
    .f-producenci-bg a.hamilton {
      width: 25%; }
    .f-producenci-bg a.fine {
      width: 25%; }
    .f-producenci-bg a.liebherr {
      width: 25%; }
    .f-producenci-bg a.unox {
      width: 25%; }
    .f-producenci-bg a.cas {
      width: 20%;
      clear: both; }
    .f-producenci-bg a.arcoroc {
      width: 20%; }
    .f-producenci-bg a.rm {
      width: 20%; }
    .f-producenci-bg a.redfox {
      width: 20%; }
    .f-producenci-bg a.revolution {
      width: 20%; } }
@media only screen and (max-width: 780px) {
  .f-producenci-bg a.stalgast {
    width: 33.3333%; }
  .f-producenci-bg a.hendi {
    width: 33.3333%; }
  .f-producenci-bg a.yato {
    width: 33.3333%; }
  .f-producenci-bg a.retigo {
    width: 33.3333%;
    clear: both; }
  .f-producenci-bg a.gredil {
    width: 33.3333%;
    clear: none; }
  .f-producenci-bg a.roller {
    width: 33.3333%; }
  .f-producenci-bg a.nivona {
    width: 33.3333%;
    clear: both; }
  .f-producenci-bg a.bartscher {
    width: 33.3333%; }
  .f-producenci-bg a.robot {
    width: 33.3333%; }
  .f-producenci-bg a.hamilton {
    width: 33.3333%; }
  .f-producenci-bg a.fine {
    width: 33.3333%; }
  .f-producenci-bg a.liebherr {
    width: 33.3333%; }
  .f-producenci-bg a.unox {
    width: 33.3333%;
    clear: both; }
  .f-producenci-bg a.cas {
    width: 33.3333%;
    clear: none; }
  .f-producenci-bg a.arcoroc {
    width: 33.3333%; }
  .f-producenci-bg a.rm {
    width: 33.3333%;
    clear: both; }
  .f-producenci-bg a.redfox {
    width: 33.3333%; }
  .f-producenci-bg a.revolution {
    width: 33.3333%; } }
@media only screen and (max-width: 480px) {
  .f-producenci-bg a.stalgast {
    width: 50%; }
  .f-producenci-bg a.hendi {
    width: 50%; }
  .f-producenci-bg a.yato {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.retigo {
    width: 50%;
    clear: none; }
  .f-producenci-bg a.gredil {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.roller {
    width: 50%; }
  .f-producenci-bg a.nivona {
    width: 50%; }
  .f-producenci-bg a.bartscher {
    width: 50%; }
  .f-producenci-bg a.robot {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.hamilton {
    width: 50%;
    clear: none; }
  .f-producenci-bg a.fine {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.liebherr {
    width: 50%; }
  .f-producenci-bg a.unox {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.cas {
    width: 50%; }
  .f-producenci-bg a.arcoroc {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.rm {
    width: 50%;
    clear: none; }
  .f-producenci-bg a.redfox {
    width: 50%;
    clear: both; }
  .f-producenci-bg a.revolution {
    width: 50%; } }
/* ============================================ *
 * Footer
 * ============================================ */
.footer,
.footer button {
  font-family: "Sarala", Tahoma, Arial, sans-serif; }

.footer {
  background: url(/skin/frontend/gastrro/default/images/footer_shadow.png) top center no-repeat;
  background-size: 100% 70px;
  clear: both;
  max-width: 1260px;
  margin: 0 auto;
  color: #F0BABC; }
  .footer .block-title {
    border: none;
    padding: 0;
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #FEFEFE; }
    .footer .block-title strong {
      color: #FEFEFE;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      text-transform: none;
      font-weight: normal;
      font-size: 16px; }
  .footer .left {
    float: left;
    width: 58%; }
  .footer .right {
    float: right;
    width: 42%; }
  .footer .clearfix.none {
    display: none; }
  .footer .links {
    float: left;
    width: 25%;
    margin-top: 20px;
    height: auto;
    font-size: 12px; }
    .footer .links li {
      padding: 0px;
      list-style-type: disc;
      list-style-position: outside;
      margin-left: 20px; }
    .footer .links a {
      color: #F0BABC; }
      .footer .links a:hover {
        color: #FEFEFE; }
  .footer .block-subscribe {
    background-image: url(/skin/frontend/gastrro/default/images/footter_newsletter_back.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    float: left;
    width: 58%;
    margin-right: 2%;
    margin-bottom: 15px;
    padding: 20px 10px 0 20px;
    font-size: 12px;
    color: #F0BABC; }
    .footer .block-subscribe a {
      color: #F0BABC; }
      .footer .block-subscribe a:hover {
        color: #FEFEFE; }
    .footer .block-subscribe strong {
      color: #fff; }
  .footer .map {
    float: right;
    width: 40%;
    background: url(/skin/frontend/gastrro/default/images/map.png) top center no-repeat;
    height: 150px;
    text-align: center;
    padding: 34px 0 0 0;
    margin: 10px 0 0 0;
    font-size: 15px;
    color: #F0BABC; }
  .footer .copyright {
    background: url(/skin/frontend/gastrro/default/images/footer_line.png) top center no-repeat;
    background-size: 100% 2px;
    margin-top: 15px;
    padding: 15px 0 30px 0;
    color: #8F0C10;
    text-align: center;
    width: 100%;
    font-size: 12px; }
    .footer .copyright span {
      font-size: 1.5em; }
  .footer .dotpay {
    text-align: center;
    margin-top: 20px; }
    .footer .dotpay img {
      margin: 0 5px;
      display: inline-block; }
  @media only screen and (max-width: 1199px) {
    .footer .block-subscribe {
      width: 100%;
      margin-right: 0; }
    .footer .map {
      display: none; }
    .footer .left {
      width: 70%; }
    .footer .right {
      width: 30%; } }
  @media only screen and (max-width: 979px) {
    .footer .block-subscribe {
      width: 50%;
      margin-right: 0;
      background: none;
      padding: 0; }
    .footer .map {
      width: 50%;
      margin: 0;
      display: block; }
    .footer .left,
    .footer .right {
      width: 100%; }
    .footer .right {
      background: url(/skin/frontend/gastrro/default/images/footer_line.png) top center no-repeat;
      background-size: 100% 2px;
      margin-top: 15px;
      padding-top: 15px; }
    .footer .dotpay {
      margin-top: 0px; } }
  @media only screen and (max-width: 780px) {
    .footer .form-language,
    .footer .currency-switcher {
      display: block; }
    .footer .clearfix.none {
      display: block; }
    .footer .links {
      width: 50%; } }
  @media only screen and (max-width: 590px) {
    .footer .block-subscribe {
      width: 100%;
      background: none;
      padding: 0;
      text-align: center;
      height: auto; }
    .footer .map {
      display: none; }
    .footer .links {
      width: 50%; } }
  .footer p.required, .footer .validation-advice {
    color: #fff; }

#newsletter-validate-detail {
  margin-top: 5px; }
  #newsletter-validate-detail .actions {
    margin-top: 5px; }
    #newsletter-validate-detail .actions .button {
      width: 100%;
      background-color: #aa171e; }
      #newsletter-validate-detail .actions .button:hover {
        background-color: #94181e; }
  #newsletter-validate-detail .input-text {
    background-color: #ffe3e4;
    color: #8F0C10; }

@media only screen and (max-width: 979px) {
  #newsletter-validate-detail {
    max-width: 280px; } }
@media only screen and (max-width: 590px) {
  #newsletter-validate-detail {
    margin: 5px auto 0; } }
@media only screen and (max-width: 480px) {
  #newsletter-validate-detail {
    max-width: none; } }
.main-cien {
  width: 100%;
  max-width: 1260px;
  height: 40px;
  background: url(/skin/frontend/gastrro/default/images/main-cien.png) top center no-repeat;
  background-size: 100% 40px;
  position: absolute;
  top: 0px; }

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Subcategories
 * -------------------------------------------- */
.category-blocks {
  margin-top: 20px; }
  .category-blocks ul li {
    float: left;
    width: 22.33333%;
    margin-right: 3.22222%;
    margin-bottom: 40px; }
    .category-blocks ul li a {
      text-align: center;
      font-size: 13px;
      line-height: 15px; }
      .category-blocks ul li a img {
        width: 100%;
        margin-bottom: 10px; }
    .category-blocks ul li:nth-child(4n) {
      margin-right: 0px; }
  .category-blocks ul:after {
    content: '';
    display: table;
    clear: both; }

@media only screen and (max-width: 959px) {
  .category-blocks ul li {
    width: 30.8642%;
    margin-right: 3.7037%; }
    .category-blocks ul li:nth-child(4n) {
      width: 30.8642%;
      margin-right: 3.7037%; }
    .category-blocks ul li:nth-child(3n) {
      margin-right: 0px; }
    .category-blocks ul li:nth-child(3n+1) {
      clear: left; } }
@media only screen and (max-width: 590px) {
  .category-blocks ul li {
    width: 47.72727%;
    margin-right: 4.54545%; }
    .category-blocks ul li:nth-child(4n), .category-blocks ul li:nth-child(3n) {
      width: 47.72727%;
      margin-right: 4.54545%; }
    .category-blocks ul li:nth-child(odd) {
      clear: left; }
    .category-blocks ul li:nth-child(even) {
      margin-right: 0px; }
    .category-blocks ul li:nth-child(3n+1) {
      clear: none; } }
/* -------------------------------------------- *
 * Product List General
 * -------------------------------------------- */
.category-description.std {
  font-weight: normal; }
  .category-description.std img {
    margin: auto;
    width: auto;
    max-width: 100%; }
  .category-description.std h2, .category-description.std h3 {
    margin-top: 2em;
    color: #0867a9;
    text-transform: none;
    font-size: 18px; }
  .category-description.std .image {
    background-color: #f7f7fc; }
    .category-description.std .image span {
      line-height: 3;
      padding: 20px;
      font-style: italic; }

.category-title h1,
.page-title h1 {
  border-bottom: none;
  text-transform: none;
  color: #0867a9;
  font-weight: normal;
  line-height: 1.4; }

.products-list .action .button,
.products-grid .actions .button {
  white-space: normal; }

/* -------------------------------------------- *
 * Ogolne dla Produktow
 * -------------------------------------------- */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
  transition: color 0.25s linear 0s;
  text-transform: none;
  color: #556c94; }
  h2.product-name a,
  h3.product-name a,
  h4.product-name a,
  h5.product-name a,
  p.product-name a {
    color: #556c94;
    font-weight: normal;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    transition: color 0.25s linear 0s; }
    h2.product-name a:hover,
    h3.product-name a:hover,
    h4.product-name a:hover,
    h5.product-name a:hover,
    p.product-name a:hover {
      color: #0867a9;
      text-decoration: none; }

.widget-title h2 {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  color: #0867a9;
  font-size: 24px;
  font-weight: 500;
  text-transform: none; }

/* ================================================= *
 * Siatka i Lista Produktow
 * ================================================= */
ol.products-list,
ul.products-grid {
  list-style: none;
  margin-bottom: 0px; }
  ol.products-list:after,
  ul.products-grid:after {
    content: '';
    display: table;
    clear: both; }
  ol.products-list li.item,
  ul.products-grid li.item {
    border-bottom: 1px solid #d4d6e2;
    margin-bottom: 20px;
    padding: 0px 0px 10px 0px;
    overflow: hidden;
    background-color: #fff; }
    ol.products-list li.item .product-info,
    ul.products-grid li.item .product-info {
      overflow: hidden; }
    ol.products-list li.item h3.product-name,
    ul.products-grid li.item h3.product-name {
      display: block;
      padding: 5px 0;
      margin-bottom: 10px;
      line-height: 15px; }
      ol.products-list li.item h3.product-name span,
      ul.products-grid li.item h3.product-name span {
        color: #a9afdc; }
    ol.products-list li.item .p-img .product-image,
    ul.products-grid li.item .p-img .product-image {
      margin: 0 auto;
      border-color: #EDEDED;
      transition: border-color 0.25s linear 0s; }
    ol.products-list li.item img,
    ul.products-grid li.item img {
      padding: 20px;
      width: 100%;
      height: auto; }
      ol.products-list li.item img:hidden,
      ul.products-grid li.item img:hidden {
        display: none; }
    ol.products-list li.item .ratings .amount,
    ul.products-grid li.item .ratings .amount {
      display: none; }
    ol.products-list li.item .p-cena-div,
    ul.products-grid li.item .p-cena-div {
      margin: 0;
      width: 100%;
      height: auto;
      float: left;
      position: relative; }
    ol.products-list li.item .price-box,
    ul.products-grid li.item .price-box {
      line-height: 1.2;
      font-size: 12px;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      margin: 0;
      text-align: right; }
      ol.products-list li.item .price-box .price-label,
      ul.products-grid li.item .price-box .price-label {
        display: none; }
      ol.products-list li.item .price-box .price-excluding-tax,
      ol.products-list li.item .price-box .price-including-tax,
      ul.products-grid li.item .price-box .price-excluding-tax,
      ul.products-grid li.item .price-box .price-including-tax {
        display: block;
        text-transform: lowercase;
        color: #c0c2d2;
        text-align: right; }
        ol.products-list li.item .price-box .price-excluding-tax .label,
        ol.products-list li.item .price-box .price-including-tax .label,
        ul.products-grid li.item .price-box .price-excluding-tax .label,
        ul.products-grid li.item .price-box .price-including-tax .label {
          font-size: 12px;
          color: #c0c2d2; }
        ol.products-list li.item .price-box .price-excluding-tax .p-stara-cena,
        ol.products-list li.item .price-box .price-including-tax .p-stara-cena,
        ul.products-grid li.item .price-box .price-excluding-tax .p-stara-cena,
        ul.products-grid li.item .price-box .price-including-tax .p-stara-cena {
          text-decoration: line-through;
          font-size: 12px; }
        ol.products-list li.item .price-box .price-excluding-tax .p-nowa-cena,
        ol.products-list li.item .price-box .price-including-tax .p-nowa-cena,
        ul.products-grid li.item .price-box .price-excluding-tax .p-nowa-cena,
        ul.products-grid li.item .price-box .price-including-tax .p-nowa-cena {
          display: block; }
        ol.products-list li.item .price-box .price-excluding-tax .p-nowa-cena,
        ol.products-list li.item .price-box .price-excluding-tax .p-katalog-cena,
        ol.products-list li.item .price-box .price-including-tax .p-nowa-cena,
        ol.products-list li.item .price-box .price-including-tax .p-katalog-cena,
        ul.products-grid li.item .price-box .price-excluding-tax .p-nowa-cena,
        ul.products-grid li.item .price-box .price-excluding-tax .p-katalog-cena,
        ul.products-grid li.item .price-box .price-including-tax .p-nowa-cena,
        ul.products-grid li.item .price-box .price-including-tax .p-katalog-cena {
          color: #556c94;
          font-size: 14px; }
      ol.products-list li.item .price-box .price-including-tax,
      ul.products-grid li.item .price-box .price-including-tax {
        margin-bottom: 7px; }
        ol.products-list li.item .price-box .price-including-tax .p-nowa-cena,
        ol.products-list li.item .price-box .price-including-tax .p-katalog-cena,
        ul.products-grid li.item .price-box .price-including-tax .p-nowa-cena,
        ul.products-grid li.item .price-box .price-including-tax .p-katalog-cena {
          transition: color 0.25s linear 0s;
          font-weight: bold;
          font-size: 16px; }
    ol.products-list li.item .actions,
    ul.products-grid li.item .actions {
      height: auto;
      width: auto; }
      ol.products-list li.item .actions .add-to-links,
      ul.products-grid li.item .actions .add-to-links {
        display: none;
        margin-bottom: 0; }
      ol.products-list li.item .actions button,
      ul.products-grid li.item .actions button {
        width: 30px;
        height: 30px;
        background-color: transparent;
        background-position: -70px -650px; }
        ol.products-list li.item .actions button span > span,
        ul.products-grid li.item .actions button span > span {
          display: none; }
    ol.products-list li.item:after,
    ul.products-grid li.item:after {
      content: '';
      display: table;
      clear: both; }
  ol.products-list li.item:hover .product-info h3.product-name a,
  ul.products-grid li.item:hover .product-info h3.product-name a {
    color: #0867a9; }
  ol.products-list li.item:hover .product-info .product-image,
  ul.products-grid li.item:hover .product-info .product-image {
    border-color: #d4d6e2; }
  ol.products-list li.item:hover .product-info .ratings,
  ul.products-grid li.item:hover .product-info .ratings {
    opacity: 1; }
  ol.products-list li.item:hover .product-info .price-box .price-including-tax .p-nowa-cena,
  ol.products-list li.item:hover .product-info .price-box .price-including-tax .p-katalog-cena,
  ul.products-grid li.item:hover .product-info .price-box .price-including-tax .p-nowa-cena,
  ul.products-grid li.item:hover .product-info .price-box .price-including-tax .p-katalog-cena {
    color: #0867a9; }
  ol.products-list li.item:hover .product-info .actions button,
  ul.products-grid li.item:hover .product-info .actions button {
    border-radius: 0px;
    transition: background-position 0.25s linear 0s;
    background-position: -120px -650px; }

/* ================================================= *
 * Siatka Produktow
 * ================================================= */
.products-grid li.item {
  text-align: center; }
  .products-grid li.item:after {
    content: '';
    display: table;
    clear: both; }
  .products-grid li.item .product-info > .ratings {
    display: none; }
  .products-grid li.item .product-name {
    text-align: center;
    font-size: 13px;
    width: 100%; }
  .products-grid li.item .p-cena-div .ratings {
    position: absolute;
    top: -37px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    padding: 5px;
    background-color: rgba(212, 214, 226, 0.3);
    margin: 0px;
    width: 100%; }
    .products-grid li.item .p-cena-div .ratings .rating-box {
      margin: 0 auto; }
  .products-grid li.item .p-img {
    margin-bottom: 10px;
    width: 100%; }
  .products-grid li.item .price-box {
    float: right; }
  .products-grid li.item .actions {
    float: left;
    margin-top: 7px; }

/* Config: Two columns + flexible gutter */
.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%; }

.products-grid > li:nth-child(odd) {
  clear: left; }

.products-grid > li:nth-child(even) {
  margin-right: 0; }

.products-grid .product-image {
  margin-bottom: 5px; }
  .products-grid .product-image:before, .products-grid .product-image:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: none; }
  .products-grid .product-image:before {
    background-color: white;
    opacity: 0.8;
    z-index: 2; }
  .products-grid .product-image:after {
    background-image: url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/opc-ajax-loader.gif");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3; }
  .products-grid .product-image.loading {
    position: relative; }
    .products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
      display: block; }

@media only screen and (min-width: 591px) {
  /* Config: Three columns + flexible gutter */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */ }
    .products-grid > li:nth-child(odd) {
      clear: none; }
    .products-grid > li:nth-child(even) {
      margin-right: 3.7037%; }
    .products-grid > li {
      width: 30.8642%;
      margin-right: 3.7037%; }
    .products-grid > li:nth-child(3n+1) {
      clear: left; }
    .products-grid > li:nth-child(3n) {
      margin-right: 0; } }
/*@include bp(max-width, $bp-xsmall) {
    
    .products-grid {
         Undo two-column config 
        > li {
            clear: none;
            width: 100%;
            margin-right: 0;
            margin-bottom: 30px;
            
            .product-info {
                
                .product-image{
                    width: 100px;
                    height: 100px;
                }
                
            }
        }
    }
}*/
/*@include bp(max-width, $bp-xsmall) {
    
    .products-grid{
        margin-top: 10px;
        margin-bottom: 20px;

        li.item {
            clear: none;
            width: 100%;
            margin-right: 0;

            .product-info {
                
                &> .ratings{
                    display: block;
                    margin-top: -10px;
                    padding: 0px;
                    position: static;
                    text-align: center;

                    .rating-box{
                        display: inline-block;
                    }
                }
            
                .product-name{
                    padding: 0;
                    width: 100%;
                    display: block;
                    padding: 5px 0;
                    margin-bottom: 10px;
                    text-align: center;
                    line-height: 15px;
                    
                    a{
                        font-size: 13px;
                        line-height: 15px;
                    }
                }

                .p-img{
                    position: static;
                    float: left;
                    width: 100px;
                }
                
                .p-cena-div{
                    position: static;
                    float: right;
                    width: auto;
                    
                    .ratings{
                        display: none;
                    }

                    .actions{
                        text-align: right;
                        float: none;
                    }
                }
                
            }
        }
    }
    
}
*/
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none; }

  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none; }

  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.22222%; }

  /* Set column config */
  .products-grid--max-4-col > li {
    margin-right: 2.22222%; }

  .products-grid--max-4-col > li {
    width: 23.33333%;
    margin-right: 2.22222%; }

  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left; }

  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0; }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-5-col > li:nth-child(odd) {
    clear: none; }

  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none; }

  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.22222%; }

  /* Set column config */
  .products-grid--max-5-col > li {
    margin-right: 2.22222%; }

  .products-grid--max-5-col > li {
    width: 18.22222%;
    margin-right: 2.22222%; }

  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left; }

  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0; }

  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-6-col > li:nth-child(odd) {
    clear: none; }

  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none; }

  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.22222%; }

  /* Set column config */
  .products-grid--max-6-col > li {
    margin-right: 2.22222%; }

  .products-grid--max-6-col > li {
    width: 14.81481%;
    margin-right: 2.22222%; }

  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left; }

  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0; } }
/* ================================================= *
 * Lista Produktow
 * ================================================= */
ol.products-list {
  margin-top: 20px; }
  ol.products-list li.item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EDEDED; }
    ol.products-list li.item .product-info {
      position: relative;
      min-height: 100px; }
      ol.products-list li.item .product-info .p-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100px; }
        ol.products-list li.item .product-info .p-img .product-image img {
          padding: 15px;
          width: 100%;
          max-width: 100%; }
      ol.products-list li.item .product-info .product-name {
        padding: 0 150px 0 120px;
        margin: 0; }
        ol.products-list li.item .product-info .product-name a {
          font-size: 14px; }
      ol.products-list li.item .product-info .ratings {
        padding: 0 150px 0 120px;
        position: static; }
      ol.products-list li.item .product-info .p-cena-div {
        width: auto;
        position: absolute;
        top: 0;
        right: 0; }
        ol.products-list li.item .product-info .p-cena-div .actions {
          text-align: right; }
  ol.products-list > li:last-child {
    padding-bottom: 0;
    border-bottom: none; }

@media only screen and (max-width: 590px) {
  ol.products-list {
    margin-top: 10px;
    margin-bottom: 20px; }
    ol.products-list li.item .product-info .product-name {
      padding: 0;
      width: 100%;
      display: block;
      padding: 5px 0;
      margin-bottom: 10px;
      text-align: center;
      line-height: 15px; }
      ol.products-list li.item .product-info .product-name a {
        font-size: 13px;
        line-height: 15px; }
    ol.products-list li.item .product-info .ratings {
      margin-top: -10px;
      padding: 0px;
      position: static;
      text-align: center; }
      ol.products-list li.item .product-info .ratings .rating-box {
        display: inline-block; }
    ol.products-list li.item .product-info .p-img {
      position: static;
      float: left;
      width: 100px; }
    ol.products-list li.item .product-info .p-cena-div {
      position: static;
      float: right; } }
@media only screen and (max-width: 1279px) {
  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px; }
  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%; } }
@media only screen and (max-width: 600px) {
  .products-list .product-shop .price-box .special-price {
    padding-left: 0; }

  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left; } }
/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
  border: none; }
.mini-products-list .product-details .product-name {
  padding-top: 10px; }
.mini-products-list li {
  clear: both;
  height: 100%; }
  .mini-products-list li:after {
    content: '';
    display: table;
    clear: both; }

.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both; }
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0; }
  .mini-products-images-list li.item:nth-child(even) {
    padding-right: 0;
    padding-left: 5px; }
  .mini-products-images-list li.item .product-image {
    display: block; }
    .mini-products-images-list li.item .product-image img {
      width: 100%;
      max-width: 100%; }

/* ============================================ *
 * Category
 * ============================================ */
.std p.category-image {
  margin: 0 20px 0 0;
  float: left; }
  .std p.category-image img {
    margin: auto;
    width: auto;
    max-width: 100%; }

.catalog-category-view .tytul {
  margin: 60px 0 40px 0; }
  .catalog-category-view .tytul.no-margin {
    margin-top: 15px !important; }

.category-header-wrapper {
  min-height: 41px; }

.category-header {
  z-index: 10000;
  background-color: #f7f7fc;
  position: relative;
  top: 0;
  transition: all 0.3s ease;
  border: 1px solid #d4d6e2;
  border-bottom: none;
  background-color: #617795; }
  .category-header.fix {
    position: fixed;
    top: 71px;
    width: 100%;
    right: 0;
    margin: 0 auto;
    left: 0;
    max-width: 1200px;
    border: none; }
  .category-header a {
    color: #fff;
    text-decoration: none;
    float: left;
    padding: 10px;
    display: block; }
    .category-header a:hover {
      color: #617795;
      background-color: #f7f7fc; }
    .category-header a.current, .category-header a.current:hover {
      color: #0867a9;
      background-color: #fff; }
  .category-header:after {
    content: '';
    display: table;
    clear: both; }

@media only screen and (max-width: 780px) {
  .category-header a {
    float: none;
    text-align: center;
    border-bottom: 1px solid #d4d6e2; }

  .std p.category-image {
    margin: 0 0 1.5em;
    float: none; }

  .catalog-category-view .tytul {
    margin: 20px 0 20px 0; } }
/* ============================================ *
 * Lewa kolumna - Filtry
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #d4d6e2;
  position: relative;
  color: #fff;
  background-color: #617795;
  cursor: pointer; }
  .block-layered-nav .block-subtitle--filter:hover {
    color: #617795;
    background-color: #f7f7fc; }

.block-layered-nav .block-content .toggle-tabs {
  display: none; }
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #d4d6e2;
  position: relative;
  color: #fff;
  background-color: #617795;
  display: block; }
  .block-layered-nav .block-content > dl > dt:hover {
    color: #617795;
    background-color: #f7f7fc; }
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #d4d6e2; }
  .block-layered-nav .block-content > dl > dd .tab-content > ul {
    list-style: disc outside url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/kropka.png"); }
    .block-layered-nav .block-content > dl > dd .tab-content > ul li {
      margin-left: 2em; }
  .block-layered-nav .block-content > dl > dd p {
    margin-bottom: 10px; }
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px; }

.block-layered-nav .block-content > dl > dd {
  margin-bottom: 20px;
  margin-top: 0px;
  border: none;
  padding: 5px 0px 20px 0px;
  border-bottom: 1px solid #d4d6e2; }
  .block-layered-nav .block-content > dl > dd .amshopby-slider-ui .ui-slider-range {
    background-color: #d4d6e2; }
  .block-layered-nav .block-content > dl > dd .amshopby-slider-ui .ui-slider-handle {
    background-color: #0867a9;
    border: none;
    width: 1.1em;
    height: 1.1em; }
  .block-layered-nav .block-content > dl > dd .amshopby-slider-ui span:nth-of-type(2) {
    margin-left: -.8em; }
  .block-layered-nav .block-content > dl > dd li {
    line-height: 1; }
  .block-layered-nav .block-content > dl > dd ol > li span .count, .block-layered-nav .block-content > dl > dd ol > li a .count {
    color: #0867a9; }
  .block-layered-nav .block-content > dl > dd ol > li span:hover, .block-layered-nav .block-content > dl > dd ol > li a:hover {
    color: #c1151a;
    text-decoration: none; }
  .block-layered-nav .block-content > dl > dd ol > li span.amshopby-attr, .block-layered-nav .block-content > dl > dd ol > li a.amshopby-attr {
    padding-left: 20px; }
  .block-layered-nav .block-content > dl > dd ol > li span.amshopby-attr-selected, .block-layered-nav .block-content > dl > dd ol > li a.amshopby-attr-selected {
    padding-left: 20px;
    color: #0867a9; }
.block-layered-nav .block-content > dl dd.price ol li:first-of-type {
  margin-bottom: 10px; }
.block-layered-nav .block-content > dl dd.price ol li {
  text-align: center; }
  .block-layered-nav .block-content > dl dd.price ol li input {
    margin-top: 10px;
    width: 30%; }
  .block-layered-nav .block-content > dl dd.price ol li button {
    margin-top: 8px;
    vertical-align: bottom; }
.block-layered-nav .block-content > dl dd:last-of-type {
  border: none; }

@media only screen and (max-width: 959px) {
  .block-layered-nav .block-content > dl > dd ol > li span .count, .block-layered-nav .block-content > dl > dd ol > li a .count {
    display: none; } }
.block-layered-nav .block-content > dl > dt {
  background-color: transparent;
  padding: 0px;
  border: none;
  text-transform: none;
  font-size: 18px;
  color: #0867a9; }
  .block-layered-nav .block-content > dl > dt:hover {
    background-color: transparent; }

@media only screen and (min-width: 781px) {
  .block-layered-nav .block-content > dl > dt:after {
    display: none; } }
@media only screen and (max-width: 780px) {
  .sidebar .block.block-layered-nav {
    border-bottom: none; }
    .sidebar .block.block-layered-nav .block-content {
      padding-top: 0; }
      .sidebar .block.block-layered-nav .block-content > dl > dt {
        cursor: pointer;
        border-bottom-width: 0;
        text-align: center; }
        .sidebar .block.block-layered-nav .block-content > dl > dt:hover {
          color: #3e5881; }
        .sidebar .block.block-layered-nav .block-content > dl > dt.last {
          border-bottom-width: 1px; }
      .sidebar .block.block-layered-nav .block-content > dl > dd {
        display: none; }
      .sidebar .block.block-layered-nav .block-content.accordion-open > dl > dt.current {
        border-bottom-width: 1px; }
      .sidebar .block.block-layered-nav .block-content.accordion-open > dl > dd.current {
        display: block; }
      .sidebar .block.block-layered-nav .block-content .block-subtitle--filter {
        background-color: #617795;
        border: 0;
        margin-bottom: 0;
        display: block;
        color: #FFFFFF;
        padding: 7px 0;
        text-align: center; }
        .sidebar .block.block-layered-nav .block-content .block-subtitle--filter:before {
          content: "Pokaż Filtry"; }
        .sidebar .block.block-layered-nav .block-content .block-subtitle--filter.active:before {
          content: "Ukryj Filtry"; }
        .sidebar .block.block-layered-nav .block-content .block-subtitle--filter:hover {
          background-color: #0867a9;
          color: #FFFFFF; }
        .sidebar .block.block-layered-nav .block-content .block-subtitle--filter:after {
          display: none; }
      .sidebar .block.block-layered-nav .block-content #narrow-by-list,
      .sidebar .block.block-layered-nav .block-content #narrow-by-list2 {
        background-color: #f7f7fc;
        padding: 0;
        border: 1px solid #d4d6e2;
        border-top: 0; }
      .sidebar .block.block-layered-nav .block-content dl dt {
        min-height: 33px;
        padding: 7px 0;
        font-size: 15px;
        color: #617795;
        border-bottom: 1px solid #fff;
        text-align: center; }
        .sidebar .block.block-layered-nav .block-content dl dt:after {
          display: none; }
        .sidebar .block.block-layered-nav .block-content dl dt:hover {
          color: #0867a9;
          background-color: #fff; }
        .sidebar .block.block-layered-nav .block-content dl dt.last {
          border: none; }
      .sidebar .block.block-layered-nav .block-content dl dd {
        background-color: #fff;
        margin: 0;
        padding: 0 0 10px 0; }
        .sidebar .block.block-layered-nav .block-content dl dd.price ol li:first-of-type {
          margin: 0; }
        .sidebar .block.block-layered-nav .block-content dl dd > ol {
          overflow: hidden; }
          .sidebar .block.block-layered-nav .block-content dl dd > ol > li {
            padding: 0 10px;
            width: 50%;
            float: left; }
            .sidebar .block.block-layered-nav .block-content dl dd > ol > li.amshopby-advanced {
              width: auto; }
            .sidebar .block.block-layered-nav .block-content dl dd > ol > li > a {
              color: #617795; }
              .sidebar .block.block-layered-nav .block-content dl dd > ol > li > a:hover {
                color: #c1151a; }
      .sidebar .block.block-layered-nav .block-content.accordion-open dl dt.current {
        color: #0867a9;
        background-color: #fff; } }
@media only screen and (max-width: 780px) {
  .block.block-layered-nav .block-content .block-subtitle {
    font-size: 14px; } }
@media only screen and (max-width: 480px) {
  .block.block-layered-nav {
    border-bottom: none; }
    .block.block-layered-nav .block-content dl dd > ol {
      padding: 0; }
      .block.block-layered-nav .block-content dl dd > ol > li {
        float: none;
        width: 100%; } }
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase; }
.block-layered-nav .currently ol {
  margin-bottom: 10px;
  overflow: hidden; }
  .block-layered-nav .currently ol li {
    padding: 0 0 5px 0; }
    .block-layered-nav .currently ol li .label {
      color: #617795;
      text-align: right;
      padding-right: 10px;
      float: left;
      display: block;
      font-weight: 600;
      font-size: 13px; }
    .block-layered-nav .currently ol li .f-grupa {
      float: left; }
    .block-layered-nav .currently ol li .multiselect-child {
      float: left;
      margin-right: 10px; }
      .block-layered-nav .currently ol li .multiselect-child:last-child {
        margin-right: 0px; }
    .block-layered-nav .currently ol li .currently-cecha {
      float: left;
      color: #617795;
      font-size: 13px; }
    .block-layered-nav .currently ol li:after {
      content: '';
      display: table;
      clear: both; }

.block-layered-nav .actions a {
  text-align: right;
  color: #c1151a; }
  .block-layered-nav .actions a .currently-usun {
    display: inline-block;
    background: transparent url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/cecha-x1.png") left top no-repeat;
    height: 16px;
    width: 16px;
    margin: 2px 5px 0px 0px; }

/* ================================================= *
 * Ostatnio oglądane
 * ================================================= */
.main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li {
  width: 10.75%;
  border: none;
  padding: 0;
  float: left;
  clear: none;
  margin-right: 2%; }
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li a {
    margin: 0; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li a img {
      padding: 10px; }
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li .product-info {
    display: none; }
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(8n) {
    margin-right: 0px; }

@media only screen and (max-width: 959px) {
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li {
    width: 12.25%;
    float: left;
    margin-right: 2.375%; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(7n) {
      margin-right: 0px; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(8n) {
      margin-right: 2.375%; } }
@media only screen and (max-width: 820px) {
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li {
    width: 14.25%;
    float: left;
    margin-right: 2.9%; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(6n) {
      margin-right: 0px; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(7n), .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(8n) {
      margin-right: 2.9%; } }
@media only screen and (max-width: 600px) {
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li {
    width: 17.2%;
    float: left;
    margin-right: 3.5%; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(5n) {
      margin-right: 0px; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(6n), .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(7n), .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(8n) {
      margin-right: 3.5%; } }
@media only screen and (max-width: 480px) {
  .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li {
    width: 21.625%;
    float: left;
    margin-right: 4.5%; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(4n), .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(8n) {
      margin-right: 0px; }
    .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(5n), .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(6n), .main-container.col2-left-layout .main .widget-viewed.widget .widget-products ul.products-grid li:nth-child(7n) {
      margin-right: 4.5%; } }
/* ================================================= *
 * OWybrane kryteria
 * ================================================= */
.block-layered-nav.amshopby-filters-top .block-title {
  display: none !important; }
.block-layered-nav.amshopby-filters-top .block-content .amshopby-item-top {
  border: none;
  background-color: transparent; }
.block-layered-nav.amshopby-filters-top .block-content > dl > dd {
  margin: 0px;
  padding: 0px; }

@media only screen and (max-width: 780px) {
  .block-layered-nav.amshopby-filters-top {
    display: none; } }
/* ================================================= *
 * Nagłówek Promocja
 * ================================================= */
body.catalog-product-view .col-main {
  position: relative; }
  body.catalog-product-view .col-main .product-view .product-essential .promocja-info {
    font-size: 12px;
    /*  position:absolute;
      top:0px;
      right:-50px;
      max-width:250px;*/
    /*
    .promo-under{
        background: url(/skin/frontend/gastrro/default/images/ribbon-under-bg.png) right bottom no-repeat;
        width:20px;
        height:20px;
        position:absolute;
        right:0px;
        bottom:-20px;
    }*/ }
    body.catalog-product-view .col-main .product-view .product-essential .promocja-info span.promo-above {
      display: block;
      width: auto;
      height: auto;
      padding: 5px 20px;
      background-color: #0867a9;
      line-height: 1.2;
      text-align: center; }
      body.catalog-product-view .col-main .product-view .product-essential .promocja-info span.promo-above .promo-title {
        color: #fff;
        font-size: 16px;
        font-weight: bold; }
      body.catalog-product-view .col-main .product-view .product-essential .promocja-info span.promo-above p {
        color: #c0c2d2;
        font-size: 12px;
        font-weight: normal; }
        body.catalog-product-view .col-main .product-view .product-essential .promocja-info span.promo-above p span {
          font-weight: bold;
          color: #fff; }

/* ================================================= *
 * Nazwa Produktu i Logo Producenta
 * ================================================= */
.product-view .product-essential {
  overflow: hidden;
  margin-bottom: 30px; }
  .product-view .product-essential .produkt-info .product-name .h1,
  .product-view .product-essential .product-img-box .product-name h1 {
    color: #0867a9;
    margin-bottom: 10px;
    border: 0;
    font-size: 24px;
    text-transform: none;
    font-weight: normal; }
  .product-view .product-essential .produkt-producent {
    margin-top: 10px; }
    .product-view .product-essential .produkt-producent img {
      display: inline-block;
      max-height: 50px; }
  .product-view .product-essential .product-name {
    margin-bottom: 15px;
    /*            margin-right: 200px;*/ }
  .product-view .product-essential:after {
    content: '';
    display: table;
    clear: both; }

/* ================================================= *
 * Img-BOX
 * ================================================= */
.product-img-box {
  width: 34.58333%;
  float: left;
  padding-right: 15px; }
  .product-img-box .more-views h2 {
    display: none; }
  .product-img-box .product-name {
    display: none; }
    .product-img-box .product-name h1 {
      border: 0; }
  .product-img-box .product-image {
    margin-bottom: 10px; }
    .product-img-box .product-image:before {
      content: "";
      display: block;
      padding-top: 100%; }
    .product-img-box .product-image img {
      max-height: 100%;
      max-width: 100%;
      width: auto;
      height: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      -webkit-transform: translateY(-50%) translateX(-50%);
      -moz-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      -o-transform: translateY(-50%) translateX(-50%);
      margin: 0px auto; }
      .product-img-box .product-image img#image-main {
        padding: 0px; }
  .product-img-box .product-image-gallery {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
    .product-img-box .product-image-gallery .gallery-image {
      display: none; }
      .product-img-box .product-image-gallery .gallery-image.visible {
        display: block; }
        .product-img-box .product-image-gallery .gallery-image.visible.hidden {
          visibility: hidden; }
    .product-img-box .product-image-gallery:before, .product-img-box .product-image-gallery:after {
      content: '';
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      display: none; }
    .product-img-box .product-image-gallery:before {
      background-color: white;
      opacity: 0.8;
      z-index: 2; }
    .product-img-box .product-image-gallery:after {
      background-image: url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/opc-ajax-loader.gif");
      background-repeat: no-repeat;
      background-position: center;
      z-index: 3; }
    .product-img-box .product-image-gallery.loading {
      position: relative; }
      .product-img-box .product-image-gallery.loading:before, .product-img-box .product-image-gallery.loading:after {
        display: block; }
  .product-img-box .product-image-thumbs {
    text-align: center; }
    .product-img-box .product-image-thumbs li {
      display: inline-block; }
    .product-img-box .product-image-thumbs li:first-child {
      margin-left: -1px; }
    .product-img-box .product-image-thumbs a {
      display: inline-block;
      border: 1px solid transparent; }

.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7; }

/* ================================================= *
 * Skrocone informacje o Produkcie
 * ================================================= */
.product-view .product-essential .produkt-info {
  width: 65.41667%;
  float: right; }
  .product-view .product-essential .produkt-info .product-shop {
    float: left;
    width: 45%;
    margin-top: 20px; }
    .product-view .product-essential .produkt-info .product-shop .extra-info .ratings .rating-box {
      float: left; }
    .product-view .product-essential .produkt-info .product-shop .extra-info .ratings .rating-links {
      float: left;
      height: 20px;
      margin-left: 10px; }
    .product-view .product-essential .produkt-info .product-shop .extra-info .ratings:after {
      content: '';
      display: table;
      clear: both; }
    .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki {
      margin-left: -10px;
      border-spacing: 15px 10px;
      border-collapse: separate; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki tr {
        margin-bottom: 10px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki td {
        vertical-align: middle; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-ikona span {
        display: block;
        width: 20px;
        height: 20px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .nr-katalogwy .produkt-dodatki-ikona span {
        background-position: 0 -860px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .gwarancja .produkt-dodatki-ikona span {
        background-position: 0 -720px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .dostepnosc .produkt-dodatki-ikona span {
        background-position: 0 -755px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .czas-dostawy .produkt-dodatki-ikona span {
        background-position: 0 -790px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .koszt-dostawy .produkt-dodatki-ikona span {
        background-position: 0 -825px; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-tekst {
        font-size: 12px;
        text-align: left; }
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-info {
        text-align: left;
        color: #0867a9;
        font-weight: bold;
        font-size: 12px; }
        .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-info a {
          color: #0867a9;
          font-weight: bold;
          font-size: 12px;
          text-decoration: underline; }
          .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki .produkt-dodatki-info a:hover {
            color: #c1151a; }
    .product-view .product-essential .produkt-info .product-shop .tags {
      margin: 20px 0; }
      .product-view .product-essential .produkt-info .product-shop .tags ul li a {
        font-size: 12px;
        color: #5e6d81; }
    .product-view .product-essential .produkt-info .product-shop .short-description {
      margin-bottom: 10px;
      clear: both; }
    .product-view .product-essential .produkt-info .product-shop .ratings {
      margin-bottom: 8px;
      display: inline-block; }
    .product-view .product-essential .produkt-info .product-shop .availability {
      font-size: 16px; }
  .product-view .product-essential .produkt-info .porady {
    display: block;
    min-height: 50px;
    max-width: 380px;
    margin: 30px auto;
    padding: 10px 10px 10px 90px;
    background-color: #f7f7fc;
    border-bottom: 1px solid #d4d6e2;
    color: #0867a9;
    position: relative;
    text-align: left; }
    .product-view .product-essential .produkt-info .porady .question-img {
      display: block;
      width: 77px;
      height: 76px;
      background: url(/skin/frontend/gastrro/default/images/porady.png) no-repeat left bottom;
      position: absolute;
      left: 0;
      bottom: 0; }
    .product-view .product-essential .produkt-info .porady:hover {
      color: #c1151a; }

/* ================================================= *
 * BOX z ceną Produktu
 * ================================================= */
.product-view .product-essential .produkt-info .add-to-cart-wrapper {
  float: right;
  width: 55%;
  text-align: center; }
  .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info {
    text-align: right; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box {
      font-size: 14px;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      margin-bottom: 15px;
      text-align: right;
      line-height: 1.2; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-label {
        display: none; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax,
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax {
        display: block;
        text-transform: lowercase;
        color: #c0c2d2;
        text-align: center; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax .label,
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .label {
          font-size: 13px;
          color: #c0c2d2; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax .p-stara-cena,
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-stara-cena {
          text-decoration: line-through;
          font-size: 16px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax .p-nowa-cena,
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax .p-katalog-cena,
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-nowa-cena,
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-katalog-cena {
          color: #556c94;
          font-size: 20px; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-nowa-cena,
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-katalog-cena {
        transition: 0.25s linear 0s;
        font-weight: bold;
        color: #0867a9;
        font-size: 30px; }
  .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box {
    background-color: #f7f7fc;
    border-top: 1px solid #d4d6e2;
    border-bottom: 1px solid #d4d6e2;
    margin-bottom: 10px;
    text-align: center;
    padding: 15px;
    max-width: 350px;
    display: inline-block; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki {
      text-align: center;
      padding: 0 20px 15px 20px; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li {
        display: inline-block;
        margin-right: 10px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li span {
          display: block; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li:nth-child(even) {
          margin-right: 0; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li .produkt-dodatki-ikona {
          float: left;
          width: 21px;
          height: 16px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li a {
          display: block;
          width: auto;
          height: 16px;
          padding: 0;
          text-decoration: underline; }
          .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li a:hover span {
            text-decoration: underline;
            color: #c1151a; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li .produkt-dodatki-tekst {
          font-size: 12px;
          margin-left: 10px;
          float: left;
          margin-left: 5px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li.negocjuj a .produkt-dodatki-ikona {
          background-position: 0 -930px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li.negocjuj a:hover .produkt-dodatki-ikona {
          background-position: -35px -930px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li.lista-zyczen a .produkt-dodatki-ikona {
          background-position: 0 -965px; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki li.lista-zyczen a:hover .produkt-dodatki-ikona {
          background-position: -35px -965px; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box ul.add-to-links.produkt-dodatki:after {
        content: '';
        display: table;
        clear: both; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper,
    .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .product-options-bottom .price-box,
    .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart-buttons {
      min-height: 40px; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart {
      text-align: center; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper {
        overflow: hidden;
        display: inline-block;
        margin-right: 0; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper label {
          display: none;
          line-height: 40px;
          float: left; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart .qty-wrapper .qty {
          float: left;
          height: 40px; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons {
        display: inline-block; }
        .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box .add-to-cart .add-to-cart-buttons .button {
          min-height: 40px;
          line-height: 40px;
          font-size: 16px;
          padding: 0px 20px;
          float: left;
          min-width: 160px;
          width: 100%;
          white-space: normal; }

/* ================================================= *
 * Sharing-links
 * ================================================= */
.product-view .sharing-links {
  margin-top: 15px;
  text-align: center; }
  .product-view .sharing-links li {
    display: block;
    margin-bottom: 10px;
    position: relative; }
    .product-view .sharing-links li a {
      display: inline-block; }
    .product-view .sharing-links li img {
      display: inline-block;
      margin: 0 5px; }
    .product-view .sharing-links li .zaufane-opinie-info {
      position: relative;
      bottom: 10px;
      color: #5e9d48;
      font-size: 18px;
      display: inline-block;
      margin-top: -20px; }

/*.product-view .sharing-links {
    float: left;

    &:after {
        @include clearfix;
    }

    li {
        float: left;
        padding: 0px 7px 7px;
    }

    a {
        @include image-replacement;
        @extend .icon-sprite;
        display: block;
        width: 26px;
        height: 26px;
    }
    a:hover {
        opacity: 0.8;
    }
    a.link-wishlist {
        background-position: 0px -225px;
    }
    a.link-compare {
        background-position: 0px -250px;
    }
    a.link-email-friend {
        background-position: 0px (-325px + 3px);
    }
    a.link-facebook {
        background-position: 0px -425px;
    }
    a.link-twitter {
        background-position: 0px (-375px + 3px);
    }
}*/
/* ================================================= *
 * Tablet Mobile
 * ================================================= */
@media only screen and (max-width: 959px) {
  .product-view .product-essential .produkt-info .product-name .h1,
  .product-view .product-essential .product-img-box .product-name h1 {
    font-size: 18px; }
  .product-view .product-essential .promocja-info {
    position: static;
    right: auto;
    left: auto;
    max-width: 250px; }
  .product-view .product-essential .product-name {
    text-align: center; }
    .product-view .product-essential .product-name .produkt-producent {
      text-align: center; }
  .product-view .product-essential .product-img-box {
    width: 50%; }
  .product-view .product-essential .produkt-info {
    width: 50%; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper,
    .product-view .product-essential .produkt-info .product-shop {
      float: none;
      width: 100%;
      text-align: center; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper table.produkt-dodatki,
      .product-view .product-essential .produkt-info .product-shop table.produkt-dodatki {
        display: inline-table; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper {
      margin: 20px 0; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .add-to-box {
        display: inline-block;
        max-width: 330px;
        min-width: 300px; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax .p-nowa-cena,
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-excluding-tax .p-katalog-cena {
        font-size: 18px; }
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-nowa-cena,
      .product-view .product-essential .produkt-info .add-to-cart-wrapper .price-info .price-box .price-including-tax .p-katalog-cena {
        font-size: 24px; } }
@media only screen and (max-width: 780px) {
  .product-view .product-essential .promocja-info {
    position: static;
    right: auto;
    left: auto;
    max-width: 250px; }
  .product-view .product-essential .product-img-box {
    width: 100%;
    float: none;
    padding-right: 0; }
    .product-view .product-essential .product-img-box .product-name {
      display: block; }
  .product-view .product-essential .produkt-info {
    margin-top: 15px;
    width: 100%;
    overflow: hidden; }
    .product-view .product-essential .produkt-info .product-name {
      display: none; }
    .product-view .product-essential .produkt-info .add-to-cart-wrapper {
      float: left;
      width: 60%;
      margin: 0; }
    .product-view .product-essential .produkt-info .product-shop {
      float: left;
      width: 40%; } }
@media only screen and (max-width: 590px) {
  .product-view .product-essential .promocja-info {
    position: static;
    right: auto;
    left: auto;
    max-width: 250px; }
  .product-view .product-essential .produkt-info .add-to-cart-wrapper {
    float: none;
    width: 100%; }
  .product-view .product-essential .produkt-info .product-shop {
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px; }
  .product-view .block-related .block-content .mini-products-list li .product .product-details .price-box .price-excluding-tax .p-nowa-cena,
  .product-view .block-related .block-content .mini-products-list li .product .product-details .price-box .price-including-tax .p-nowa-cena {
    display: block; } }
/* ================================================= *
 * Paypal
 * ================================================= */
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center; }
  .product-view .add-to-cart-buttons .paypal-logo .paypal-button {
    margin: 0 auto;
    display: block;
    width: 170px; }
  .product-view .add-to-cart-buttons .paypal-logo .bml_button {
    display: block;
    width: 174px;
    margin: 0 auto; }
    .product-view .add-to-cart-buttons .paypal-logo .bml_button a {
      text-align: center; }
  .product-view .add-to-cart-buttons .paypal-logo .paypal-or {
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1;
    text-align: center; }

@media only screen and (max-width: 480px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px; }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none; } }
/* ================================================= *
 * Opis Produktu
 * ================================================= */
.product-collateral {
  clear: both; }
  .product-collateral .collateral-tabs dd h2 {
    display: none; }
  .product-collateral .collateral-tabs .tab-content {
    overflow: hidden; }
    .product-collateral .collateral-tabs .tab-content .produkt-opis-lewa,
    .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa {
      width: 50%;
      float: left; }
      .product-collateral .collateral-tabs .tab-content .produkt-opis-lewa:first-child,
      .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa:first-child {
        padding-right: 30px; }
      .product-collateral .collateral-tabs .tab-content .produkt-opis-lewa .std iframe,
      .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa .std iframe {
        width: 100%;
        max-width: 560px; }
    .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna {
      text-align: center; }
      .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna h2 {
        max-width: 600px;
        width: 100%; }
      .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna .data-table {
        max-width: 600px;
        width: 100%;
        display: inline-table; }
        .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna .data-table th, .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna .data-table td {
          text-align: left; }
    .product-collateral .collateral-tabs .tab-content:after {
      content: '';
      display: table;
      clear: both; }

.box-collateral {
  clear: both; }

.box-collateral.box-tags {
  clear: both;
  margin-top: 35px; }
  .box-collateral.box-tags h2 {
    font-size: 24px;
    color: #0867a9;
    text-transform: none; }
  .box-collateral.box-tags .note {
    font-size: 12px;
    margin-top: 5px; }

@media only screen and (max-width: 590px) {
  .box-collateral {
    clear: both; }
    .box-collateral h2 {
      font-size: 24px;
      color: #0867a9;
      text-transform: none;
      text-align: center; } }
@media only screen and (max-width: 959px) {
  .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa {
    float: none;
    text-align: center;
    width: 100%; }
    .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa h2 {
      max-width: 600px;
      width: 100%; }
    .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa .data-table {
      max-width: 600px;
      width: 100%;
      display: inline-table; }
      .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa .data-table th, .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa .data-table td {
        text-align: left; }
  .product-collateral .collateral-tabs .tab-content .produkt-opis-lewa:first-child {
    padding-right: 0px;
    margin-bottom: 40px;
    width: 100%;
    float: none; } }
@media only screen and (min-width: 781px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #d4d6e2;
    border-bottom: none;
    background-color: #617795; }
    .product-collateral .toggle-tabs li {
      float: left; }
      .product-collateral .toggle-tabs li > span {
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
        user-select: none;
        display: inline-block;
        padding: 0 30px;
        height: 40px;
        line-height: 40px;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 12px;
        position: relative;
        color: #fff; }
    .product-collateral .toggle-tabs li.current > span {
      background-color: #FFFFFF;
      z-index: 5;
      color: #0867a9; }
    .product-collateral .toggle-tabs li.current:hover span {
      color: #0867a9;
      background-color: #FFFFFF;
      cursor: default; }
    .product-collateral .toggle-tabs li:hover span {
      color: #617795;
      background-color: #f7f7fc; }
    .product-collateral .toggle-tabs li:first-child {
      border-left: none; }
    .product-collateral .toggle-tabs:after {
      content: '';
      display: table;
      clear: both; }
  .product-collateral > dl {
    width: 100%; }
    .product-collateral > dl > dt {
      display: none; }
    .product-collateral > dl > dd {
      width: 100%;
      display: none;
      padding: 30px;
      border: 1px solid #d4d6e2;
      border-top: 0;
      line-height: 1.7; }
      .product-collateral > dl > dd .tab-content > ul {
        list-style: disc outside url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/kropka.png"); }
        .product-collateral > dl > dd .tab-content > ul li {
          margin-left: 2em; }
      .product-collateral > dl > dd p {
        margin-bottom: 10px; }
    .product-collateral > dl > dd.current {
      display: block; } }
@media only screen and (max-width: 780px) {
  .box-collateral.box-tags h2 {
    font-size: 18px; }

  .product-collateral .toggle-tabs {
    display: none; }
  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #556c94;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #d4d6e2;
    position: relative;
    color: #fff;
    background-color: #617795;
    display: block; }
    .product-collateral > dl > dt:hover {
      color: #617795;
      background-color: #f7f7fc; }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #d4d6e2; }
    .product-collateral > dl > dd .tab-content > ul {
      list-style: disc outside url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/kropka.png"); }
      .product-collateral > dl > dd .tab-content > ul li {
        margin-left: 2em; }
    .product-collateral > dl > dd p {
      margin-bottom: 10px; }
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px; }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
    text-align: center; }
    .product-collateral > dl > dt:hover {
      color: #3e5881; }
    .product-collateral > dl > dt.last {
      border-bottom-width: 1px; }
  .product-collateral > dl > dd {
    display: none; }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px; }
  .product-collateral.accordion-open > dl > dd.current {
    display: block; }
  .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa h2,
  .product-collateral .collateral-tabs .tab-content .produkt-opis-prawa .data-table,
  .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna h2,
  .product-collateral .collateral-tabs .tab-content .produkt-opis-kolumna .data-table {
    max-width: none;
    width: 100%; } }
/* ================================================= *
 * Produkty powiązane
 * ================================================= */
.block-related {
  margin: 30px 0 50px 0; }
  .block-related .block-title {
    border: none;
    margin-bottom: 15px; }
    .block-related .block-title h2 {
      text-transform: none;
      font-weight: normal;
      font-size: 24px;
      color: #0867a9;
      margin-bottom: 0; }
  .block-related .block-content {
    border: 1px solid #d4d6e2;
    overflow: auto;
    max-height: 325px;
    width: 100%; }
    .block-related .block-content .block-subtitle {
      margin-bottom: 7px;
      color: #617795;
      font-size: 13px;
      margin-bottom: 15px; }
      .block-related .block-content .block-subtitle a {
        color: #0867a9;
        text-decoration: underline; }
        .block-related .block-content .block-subtitle a:hover {
          color: #c1151a; }
    .block-related .block-content .mini-products-list {
      width: 100%;
      padding: 0 20px 10px;
      column-count: 2;
      margin-top: -1px; }
      .block-related .block-content .mini-products-list li {
        border-top: 1px solid #d4d6e2;
        margin: 0 0 10px 0;
        padding: 10px 15px 0 15px;
        height: auto;
        clear: none;
        display: grid; }
        .block-related .block-content .mini-products-list li .product {
          margin-left: 10px;
          position: relative; }
          .block-related .block-content .mini-products-list li .product:after {
            content: '';
            display: table;
            clear: both; }
          .block-related .block-content .mini-products-list li .product .product-image img {
            width: 60px;
            height: 60px; }
        .block-related .block-content .mini-products-list li .checkbox {
          float: left;
          margin-top: 33px; }
        .block-related .block-content .mini-products-list li label {
          display: block; }
        .block-related .block-content .mini-products-list li input[type=checkbox] + label:before {
          top: 50%;
          margin-top: -7px; }
        .block-related .block-content .mini-products-list li .product-details {
          position: relative;
          margin-left: 70px; }
        .block-related .block-content .mini-products-list li .product-name {
          padding-top: 10px;
          display: grid;
          padding-right: 180px; }
          .block-related .block-content .mini-products-list li .product-name a {
            font-size: 12px; }
            .block-related .block-content .mini-products-list li .product-name a:hover {
              color: #0867a9; }
        .block-related .block-content .mini-products-list li .link-wishlist {
          display: none; }
        .block-related .block-content .mini-products-list li .price-box {
          position: absolute;
          top: 0;
          right: 0;
          font-size: 12px;
          font-family: "Sarala", Tahoma, Arial, sans-serif;
          padding-top: 10px;
          text-align: right;
          line-height: 1.2;
          width: 180px; }
          .block-related .block-content .mini-products-list li .price-box .price-label {
            display: none; }
          .block-related .block-content .mini-products-list li .price-box .price-excluding-tax,
          .block-related .block-content .mini-products-list li .price-box .price-including-tax {
            display: block;
            text-transform: lowercase;
            color: #c0c2d2;
            text-align: right; }
            .block-related .block-content .mini-products-list li .price-box .price-excluding-tax .label,
            .block-related .block-content .mini-products-list li .price-box .price-including-tax .label {
              font-size: 12px;
              color: #c0c2d2; }
            .block-related .block-content .mini-products-list li .price-box .price-excluding-tax .p-stara-cena,
            .block-related .block-content .mini-products-list li .price-box .price-including-tax .p-stara-cena {
              text-decoration: line-through;
              font-size: 14px;
              display: none; }
            .block-related .block-content .mini-products-list li .price-box .price-excluding-tax .p-nowa-cena,
            .block-related .block-content .mini-products-list li .price-box .price-excluding-tax .p-katalog-cena,
            .block-related .block-content .mini-products-list li .price-box .price-including-tax .p-nowa-cena,
            .block-related .block-content .mini-products-list li .price-box .price-including-tax .p-katalog-cena {
              color: #617795;
              font-size: 14px; }
          .block-related .block-content .mini-products-list li .price-box .price-including-tax {
            margin-bottom: 5px; }
            .block-related .block-content .mini-products-list li .price-box .price-including-tax .p-nowa-cena,
            .block-related .block-content .mini-products-list li .price-box .price-including-tax .p-katalog-cena {
              transition: 0.25s linear 0s;
              font-weight: bold;
              color: #0867a9;
              font-size: 16px; }

@media only screen and (max-width: 1199px) {
  .block-related .block-content .mini-products-list li .product {
    padding-bottom: 10px; }
    .block-related .block-content .mini-products-list li .product .product-image {
      position: absolute;
      bottom: 0;
      left: 0; }
    .block-related .block-content .mini-products-list li .product .product-details {
      margin: 0; }
      .block-related .block-content .mini-products-list li .product .product-details .product-name {
        padding: 0; }
      .block-related .block-content .mini-products-list li .product .product-details .price-box {
        position: static;
        width: auto; } }
@media only screen and (max-width: 959px) {
  .block-related .block-content .mini-products-list {
    column-count: 1; }
    .block-related .block-content .mini-products-list li {
      width: 100%; }
      .block-related .block-content .mini-products-list li:nth-child(2) {
        border-top: 1px solid #d4d6e2; }
      .block-related .block-content .mini-products-list li:nth-child(odd) {
        margin-right: 0; }
      .block-related .block-content .mini-products-list li product-image {
        position: relative;
        bottom: 0;
        left: 0; }
      .block-related .block-content .mini-products-list li .product-details {
        margin-left: 70px; }
      .block-related .block-content .mini-products-list li .product-name {
        padding-top: 10px;
        display: grid;
        padding-right: 180px; }
      .block-related .block-content .mini-products-list li .price-box {
        position: absolute;
        top: 0;
        right: 0;
        padding-top: 10px;
        width: 180px; } }
@media only screen and (max-width: 780px) {
  .block-related .block-content .mini-products-list li .product {
    padding-bottom: 5px; }
    .block-related .block-content .mini-products-list li .product .product-image {
      position: absolute;
      bottom: 0;
      left: 0; }
    .block-related .block-content .mini-products-list li .product .product-details {
      margin: 0; }
      .block-related .block-content .mini-products-list li .product .product-details .product-name {
        padding: 0; }
      .block-related .block-content .mini-products-list li .product .product-details .price-box {
        position: static;
        width: auto;
        margin-top: 5px; } }
@media only screen and (max-width: 430px) {
  .block-related .block-content .mini-products-list li .product {
    padding-bottom: 5px; }
    .block-related .block-content .mini-products-list li .product .product-image {
      position: absolute;
      bottom: 0;
      left: 0; }
    .block-related .block-content .mini-products-list li .product .product-details {
      margin: 0; }
      .block-related .block-content .mini-products-list li .product .product-details .product-name {
        padding: 0; }
      .block-related .block-content .mini-products-list li .product .product-details .price-box {
        position: static;
        width: auto;
        margin-top: 5px; } }
/* ================================================= *
 * Pozostałe
 * ================================================= */
.product-view .alert-price,
.product-view .alert-stock {
  clear: both; }
.product-view h3 {
  color: #0867a9;
  text-transform: none;
  margin: 30px 0 20px 0; }
.product-view div.dodatki {
  margin: 20px 0 30px 0; }

.product-view .data-table.dodatki {
  border-left: 1px solid #d4d6e2;
  border-right: 1px solid #d4d6e2;
  border-top: 1px solid #d4d6e2;
  margin-bottom: 30px; }
  .product-view .data-table.dodatki th, .product-view .data-table.dodatki td {
    width: auto; }
  .product-view .data-table.dodatki tr th:nth-child(even),
  .product-view .data-table.dodatki tr td:nth-child(even) {
    border-left: 1px solid #d4d6e2;
    border-right: 1px solid #d4d6e2; }

#product-attribute-specs-table {
  border: 1px solid #d4d6e2; }
  #product-attribute-specs-table th {
    border-right: 1px solid #d4d6e2;
    border-bottom: 1px solid #d4d6e2; }

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #d4d6e2;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px; }
  .grouped-items-table-wrapper tbody tr:last-child td {
    border-bottom: none; }
  @media only screen and (max-width: 480px) {
    .grouped-items-table-wrapper {
      margin-bottom: 15px; } }

.grouped-items-table .name-wrapper {
  color: #6c839f;
  font-family: "Sarala", Tahoma, Arial, sans-serif; }
.grouped-items-table .qty-wrapper {
  padding-top: 7px; }
.grouped-items-table .qty-label {
  margin-left: 7px; }
.grouped-items-table td {
  padding: 4px; }
  .grouped-items-table td:last-child {
    width: 30%;
    text-align: left; }
.grouped-items-table .price-box {
  text-align: right; }

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 15px 15px;
  border: 1px solid #d4d6e2;
  clear: both;
  position: relative; }

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right; }

@media only screen and (max-width: 959px) {
  .product-view .product-options .required {
    position: static; } }
.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal; }

.product-options dt:first-child {
  margin-top: 0; }

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0; }

.product-options dd .qty-holder .qty {
  width: 3em; }

.product-options dd .qty-holder label {
  vertical-align: middle; }

.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px; }

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED; }

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0; }

.product-options dd .input-text {
  width: 98%; }

.product-options dd .input-box {
  padding-top: 0; }

.product-options dd input.datetime-picker {
  width: 150px; }

.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle; }

.product-options dd textarea {
  width: 98%;
  height: 8em; }

.product-options dd select {
  width: 330px;
  max-width: 100%; }

.product-options ul.options-list {
  margin-right: 5px; }

.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px; }

.product-options ul.options-list li:last-child {
  margin-bottom: 0; }

.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px; }

.product-options ul.options-list .label {
  display: block; }

.product-options ul.options-list label {
  font-weight: normal; }

.product-options p.note {
  margin: 0;
  font-size: 11px; }

.product-options-bottom {
  background-color: #fafafc;
  padding: 15px 20px;
  border: 1px solid #d4d6e2;
  border-top: 0;
  margin-bottom: 10px; }

.product-options-bottom:after {
  content: '';
  display: table;
  clear: both; }

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #556c94; }
  @media only screen and (max-width: 1199px) {
    .product-options-bottom .product-pricing,
    .product-options-bottom .tier-prices {
      float: none;
      width: 100%;
      text-align: right;
      padding-bottom: 5px;
      margin-bottom: 10px;
      border-bottom: 1px solid #d4d6e2; } }

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0; }

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #556c94; }

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0; }

@media only screen and (max-width: 480px) {
  .product-options-bottom .price-box .price-as-configured {
    text-align: right; }
    .product-options-bottom .price-box .price-as-configured .price-label {
      display: block; } }
.product-options-bottom .price-tax {
  float: left; }

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  margin-top: 20px; }
  .box-up-sell .ratings {
    display: none; }

/* ================================================= *
 * Negocjuj Cenę
 * ================================================= */
.catalog-product-view {
  position: relative; }
  .catalog-product-view .neg-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 99999;
    display: none; }
    .catalog-product-view .neg-bg .neg-box {
      -webkit-box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
      margin: 50px auto 0 auto;
      max-width: 1260px;
      max-height: 740px;
      background: url(/skin/frontend/gastrro/default/images/negocjuj-bg.jpg) left bottom no-repeat;
      background-size: cover;
      padding: 40px;
      position: relative; }
      .catalog-product-view .neg-bg .neg-box:after {
        content: '';
        display: table;
        clear: both; }
      .catalog-product-view .neg-bg .neg-box .neg-close {
        width: 26px;
        height: 26px;
        padding: 4px;
        background: url(/skin/frontend/gastrro/default/images/negocjuj-close.png) center center no-repeat;
        background-color: rgba(255, 255, 255, 0.8);
        opacity: 0.7;
        position: absolute;
        top: 0;
        right: 0;
        border: 0px;
        text-indent: -9999999px; }
        .catalog-product-view .neg-bg .neg-box .neg-close:hover {
          opacity: 1; }
      .catalog-product-view .neg-bg .neg-box .neg-right {
        margin: auto 0;
        width: 50%;
        max-width: 515px;
        float: right; }
        .catalog-product-view .neg-bg .neg-box .neg-right .neg-form {
          -webkit-box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
          background-color: #fff;
          text-align: center; }
          .catalog-product-view .neg-bg .neg-box .neg-right .neg-form button {
            margin: 0 0 30px 0;
            width: 220px; }
          .catalog-product-view .neg-bg .neg-box .neg-right .neg-form h2 {
            display: block;
            background-color: #0867a9;
            width: 100%;
            text-align: center;
            height: 70px;
            line-height: 70px;
            color: #fff;
            text-transform: none;
            font-weight: normal;
            margin-bottom: 0px; }
        .catalog-product-view .neg-bg .neg-box .neg-right .form-list {
          padding: 20px;
          text-align: left; }
          .catalog-product-view .neg-bg .neg-box .neg-right .form-list textarea {
            width: 100%;
            font-size: 13px;
            height: 115px;
            max-width: none; }
          .catalog-product-view .neg-bg .neg-box .neg-right .form-list input {
            font-size: 13px; }
          .catalog-product-view .neg-bg .neg-box .neg-right .form-list .no-label {
            margin-top: 15px;
            margin-bottom: 0px; }
      .catalog-product-view .neg-bg .neg-box .neg-left {
        margin: auto 0;
        width: 40%;
        float: left;
        text-align: center; }
        .catalog-product-view .neg-bg .neg-box .neg-left .product-name {
          margin-bottom: 30px; }
          .catalog-product-view .neg-bg .neg-box .neg-left .product-name h2 {
            color: #0867a9;
            font-size: 18px;
            text-transform: none;
            margin-bottom: 10px; }
          .catalog-product-view .neg-bg .neg-box .neg-left .product-name p {
            text-transform: lowercase; }
            .catalog-product-view .neg-bg .neg-box .neg-left .product-name p span {
              color: #0867a9; }
        .catalog-product-view .neg-bg .neg-box .neg-left .price-box {
          font-size: 14px;
          font-family: "Sarala", Tahoma, Arial, sans-serif;
          margin-bottom: 30px;
          text-align: right;
          line-height: 1.2; }
          .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-label {
            display: none; }
          .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax,
          .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax {
            display: block;
            text-transform: lowercase;
            color: #617795;
            text-align: center; }
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .label,
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .label {
              font-size: 13px;
              color: #617795; }
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .p-stara-cena,
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-stara-cena {
              text-decoration: line-through;
              font-size: 16px; }
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .p-nowa-cena,
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .p-katalog-cena,
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-nowa-cena,
            .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-katalog-cena {
              color: #617795;
              font-size: 20px; }
          .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-nowa-cena,
          .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-katalog-cena {
            transition: 0.25s linear 0s;
            font-weight: bold;
            color: #0867a9;
            font-size: 30px; }
        .catalog-product-view .neg-bg .neg-box .neg-left .logo {
          text-align: center;
          max-width: none;
          padding: 0px; }
          .catalog-product-view .neg-bg .neg-box .neg-left .logo img {
            display: inline-block; }
        .catalog-product-view .neg-bg .neg-box .neg-left .product-img {
          margin: 0 auto 30px auto;
          border-radius: 175px;
          -webkit-border-radius: 175px;
          border: 4px solid #0867a9;
          -webkit-box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.5);
          background-color: #fff;
          width: 208px;
          height: 208px;
          overflow: hidden; }
          .catalog-product-view .neg-bg .neg-box .neg-left .product-img img {
            width: 200px;
            height: 200px;
            display: inline-block;
            padding: 20px; }

@media only screen and (max-width: 780px) {
  .catalog-product-view .neg-bg .neg-box {
    padding: 30px;
    margin: 0 auto; }
    .catalog-product-view .neg-bg .neg-box .neg-right,
    .catalog-product-view .neg-bg .neg-box .neg-left {
      width: 100%;
      float: none; }
    .catalog-product-view .neg-bg .neg-box .neg-left .product-name {
      margin-bottom: 10px; }
      .catalog-product-view .neg-bg .neg-box .neg-left .product-name h2 {
        font-size: 16px;
        margin-bottom: 5px; }
      .catalog-product-view .neg-bg .neg-box .neg-left .product-name p {
        font-size: 13px; }
    .catalog-product-view .neg-bg .neg-box .neg-left .product-img,
    .catalog-product-view .neg-bg .neg-box .neg-left .logo {
      display: none; }
    .catalog-product-view .neg-bg .neg-box .neg-left .price-box {
      margin-bottom: 20px; }
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-stara-cena,
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .p-stara-cena {
        font-size: 13px; }
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-nowa-cena,
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-katalog-cena,
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .p-nowa-cena,
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-excluding-tax .p-katalog-cena {
        font-size: 16px; }
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-nowa-cena,
      .catalog-product-view .neg-bg .neg-box .neg-left .price-box .price-including-tax .p-katalog-cena {
        font-size: 20px; }
    .catalog-product-view .neg-bg .neg-box .neg-right {
      max-width: none; }
      .catalog-product-view .neg-bg .neg-box .neg-right .neg-form {
        background-color: #fff;
        text-align: center; }
        .catalog-product-view .neg-bg .neg-box .neg-right .neg-form button {
          margin: 0 0 30px 0;
          width: 220px; }
        .catalog-product-view .neg-bg .neg-box .neg-right .neg-form h2 {
          height: 30px;
          line-height: 30px;
          font-size: 16px;
          padding: 0px; }
      .catalog-product-view .neg-bg .neg-box .neg-right .form-list {
        padding: 10px 20px; }
        .catalog-product-view .neg-bg .neg-box .neg-right .form-list textarea {
          height: 80px; }
      .catalog-product-view .neg-bg .neg-box .neg-right button {
        margin-bottom: 20px; } }
@media only screen and (max-width: 590px) {
  .catalog-product-view .neg-bg .neg-box {
    background-position-x: 15%; } }
@media only screen and (max-width: 480px) {
  .catalog-product-view .neg-bg .neg-box {
    background-position-x: 25%; } }
.produkt-linki {
  height: 171px; }

/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase; }

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px; }

.map-popup {
  background: #FFFFFF;
  border: 5px solid #d4d6e2;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100; }
  @media only screen and (min-width: 781px) {
    .map-popup.map-popup-right {
      left: 10px !important; }
    .map-popup.map-popup-left {
      left: auto !important;
      right: 10px !important; } }
  @media only screen and (max-width: 780px) {
    .map-popup {
      width: 100%;
      left: 0px !important; } }
  .map-popup .map-popup-heading {
    padding: 8px 10px;
    margin-right: 40px;
    width: auto; }
    .map-popup .map-popup-heading h3 {
      font-size: 14px;
      margin: 0;
      overflow: hidden;
      white-space: nowrap;
      word-wrap: break-word;
      text-align: left;
      text-overflow: ellipsis; }
      @media only screen and (max-width: 480px) {
        .map-popup .map-popup-heading h3 {
          text-align: center; } }
  .map-popup .map-popup-close {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 36px;
    width: 36px;
    font-size: 20px;
    line-height: 32px;
    text-align: center; }
  .map-popup .map-popup-content {
    border-top: 1px solid #EDEDED;
    padding: 10px;
    margin: 0 10px;
    overflow: hidden;
    text-align: left; }
    @media only screen and (max-width: 480px) {
      .map-popup .map-popup-content {
        text-align: center; } }
  .map-popup .map-popup-checkout {
    padding: 10px 0; }
    .map-popup .map-popup-checkout form:after {
      content: '';
      display: table;
      clear: both; }
    .map-popup .map-popup-checkout span {
      display: block; }
    .map-popup .map-popup-checkout .button {
      float: left;
      margin: 0 2px;
      clear: left; }
    .map-popup .map-popup-checkout .additional-addtocart-box {
      float: left;
      min-width: 210px; }
      .map-popup .map-popup-checkout .additional-addtocart-box li {
        list-style-type: none; }
    .map-popup .map-popup-checkout .paypal-logo {
      width: auto; }
      .map-popup .map-popup-checkout .paypal-logo a {
        display: inline-block;
        float: left;
        clear: left; }
      .map-popup .map-popup-checkout .paypal-logo .paypal-or {
        float: left;
        text-align: center;
        padding: 5px 15px;
        clear: left; }
      .map-popup .map-popup-checkout .paypal-logo:after {
        content: '';
        display: table;
        clear: both; }
      .map-popup .map-popup-checkout .paypal-logo .bml_button a {
        clear: left; }
    @media only screen and (max-width: 480px) {
      .map-popup .map-popup-checkout {
        text-align: center; }
        .map-popup .map-popup-checkout .button,
        .map-popup .map-popup-checkout .additional-addtocart-box,
        .map-popup .map-popup-checkout .paypal-logo a,
        .map-popup .map-popup-checkout .paypal-logo .paypal-or {
          float: none; }
        .map-popup .map-popup-checkout .additional-addtocart-box {
          min-width: 0px; }
        .map-popup .map-popup-checkout .paypal-logo .paypal-or {
          margin: 0px;
          margin-bottom: 10px; } }
    .map-popup .map-popup-checkout:after {
      content: '';
      display: table;
      clear: both; }
  .map-popup .map-popup-price {
    padding: 10px 0; }
    @media only screen and (max-width: 480px) {
      .map-popup .map-popup-price {
        text-align: center;
        padding-top: 0px; } }
    .map-popup .map-popup-price .price-box,
    .map-popup .map-popup-price .price-box .special-price {
      display: inline-block;
      margin: 0;
      padding: 0; }
    .map-popup .map-popup-price .price-box .minimal-price-link {
      display: inline-block; }
  .map-popup .map-popup-text {
    padding: 10px 0;
    margin: 0 10px;
    word-wrap: break-word; }
  .map-popup .map-popup-text,
  .map-popup .map-popup-only-text {
    border-top: 1px solid #EDEDED; }

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
.price-box .map-link {
  display: block;
  text-align: center; }

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both; }

.compare-table .product-image {
  display: inline-block; }

.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0; }
.compare-table .product-shop-row.bottom td {
  padding-top: 0; }

/* ============================================ *
 * Preloader
 * ============================================ */
.koszyk-preloader {
  width: 488px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 50%;
  margin-left: -244px; }
  .koszyk-preloader .preloader {
    width: 100%;
    height: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #c0c2d2;
    margin-bottom: 5px; }
    .koszyk-preloader .preloader .kwota {
      background: url(/skin/frontend/gastrro/default/images/preloader-bg.jpg) repeat-x;
      position: absolute;
      top: 0px;
      width: 100%;
      height: 100%; }
    .koszyk-preloader .preloader .brakujaca-kwota {
      background-color: #f7f7fc;
      width: 100%;
      height: 100%; }
  .koszyk-preloader p {
    color: #617795; }
    .koszyk-preloader p span {
      color: #0867a9;
      font-size: 15px;
      font-weight: bold;
      text-transform: uppercase; }
    .koszyk-preloader p span.price {
      text-transform: none;
      font-size: 15px; }

@media only screen and (max-width: 780px) {
  .koszyk-preloader {
    position: static;
    margin: 0 auto 20px auto;
    width: 100%;
    max-width: 488px; } }
/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart .button {
  white-space: normal; }

.cart-totals-wrapper:after,
.cart.display-both-prices:after {
  content: '';
  display: table;
  clear: both; }

.cart-forms,
.cart-totals-wrapper {
  float: right;
  clear: right;
  padding-left: 20px; }

.cart-table,
.cart table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px; }

.checkout-cart-index #postcode {
  width: 100%; }

.display-both-prices .cart-table {
  float: none;
  width: 100%; }
.display-both-prices .cart-forms {
  float: left;
  padding-right: 20px;
  padding-left: 0; }
.display-both-prices .cart-totals-wrapper {
  padding-left: 20px; }
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper {
  width: 50%; }

@media only screen and (max-width: 959px) {
  .display-single-price .cart-table {
    float: none;
    width: 100%; }
  .display-single-price .cart-forms {
    float: left;
    padding-right: 20px;
    padding-left: 0; }
  .display-single-price .cart-totals-wrapper {
    padding-left: 20px; }
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper {
    width: 50%; } }
.display-single-price:after {
  content: '';
  display: table;
  clear: both; }

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 25px; }
  .cart .page-title:after {
    content: '';
    display: table;
    clear: both; }
  .cart .page-title h1 {
    float: left;
    border-bottom: none;
    margin-bottom: 6px;
    margin-right: 10px; }

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */ }
  .checkout-types li {
    vertical-align: top;
    margin: 0 0 5px 5px; }
    .checkout-types li:after {
      content: '';
      display: table;
      clear: both; }
    .checkout-types li img {
      display: inline;
      vertical-align: top; }
  .checkout-types li:first-child {
    margin-left: 0; }
  .checkout-types .method-checkout-cart-methods-multishipping {
    display: block; }
  .checkout-types.top li {
    display: inline-block; }
  .checkout-types.top .bml_button {
    display: inline-block;
    vertical-align: top; }
    .checkout-types.top .bml_button img {
      display: block; }
  .checkout-types.top .paypal-logo .paypal-or {
    margin-top: 5px; }
  .checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
    display: block; }
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    margin: 0px;
    display: block;
    text-align: center; }
  .checkout-types button {
    font-size: 18px;
    background-color: #11B400;
    padding-right: 45px;
    position: relative; }
    .checkout-types button:hover, .checkout-types button:focus, .checkout-types button:active {
      opacity: 0.8;
      background-color: #11B400; }
    .checkout-types button .do-kasy {
      display: inline-block;
      position: absolute;
      top: 8px;
      width: 20px;
      height: 22px;
      background-position: -70px -685px;
      margin-left: 10px; }
  .checkout-types.bottom {
    float: none;
    width: 100%;
    margin: 0 auto; }
    .checkout-types.bottom button {
      width: 100%; }

@media only screen and (min-width: 741px) {
  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px; } }
.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px; }

@media only screen and (max-width: 740px) {
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none; } }
@media only screen and (max-width: 590px) {
  .btn-checkout {
    width: 100%; } }
/* ============================================ *
 * Tabela
 * ============================================ */
#shopping-cart-totals-table tfoot span {
  display: inline-block; }

#m-wishlist-table,
table.wishlist-product-price,
.cart table,
.opc-wrapper-opc table,
.my-account table {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 13px;
  color: #617795;
  width: 100%; }
  #m-wishlist-table td,
  #m-wishlist-table th,
  table.wishlist-product-price td,
  table.wishlist-product-price th,
  .cart table td,
  .cart table th,
  .opc-wrapper-opc table td,
  .opc-wrapper-opc table th,
  .my-account table td,
  .my-account table th {
    border-bottom: none;
    padding: 10px;
    width: auto;
    border-bottom: none; }
  #m-wishlist-table h2,
  table.wishlist-product-price h2,
  .cart table h2,
  .opc-wrapper-opc table h2,
  .my-account table h2 {
    color: #617795;
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 0; }
  #m-wishlist-table thead,
  table.wishlist-product-price thead,
  .cart table thead,
  .opc-wrapper-opc table thead,
  .my-account table thead {
    background-color: #f7f7fc;
    border-bottom: 1px solid #d4d6e2;
    border-top: 1px solid #d4d6e2; }
    #m-wishlist-table thead th,
    table.wishlist-product-price thead th,
    .cart table thead th,
    .opc-wrapper-opc table thead th,
    .my-account table thead th {
      background-color: transparent;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      vertical-align: bottom;
      text-transform: lowercase;
      color: #0867a9; }
    #m-wishlist-table thead tr,
    table.wishlist-product-price thead tr,
    .cart table thead tr,
    .opc-wrapper-opc table thead tr,
    .my-account table thead tr {
      border: none; }
  #m-wishlist-table tbody td,
  table.wishlist-product-price tbody td,
  .cart table tbody td,
  .opc-wrapper-opc table tbody td,
  .my-account table tbody td {
    background-color: transparent;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    vertical-align: middle; }
    #m-wishlist-table tbody td .product-name a,
    table.wishlist-product-price tbody td .product-name a,
    .cart table tbody td .product-name a,
    .opc-wrapper-opc table tbody td .product-name a,
    .my-account table tbody td .product-name a {
      transition: none;
      color: #617795;
      text-decoration: none; }
      #m-wishlist-table tbody td .product-name a:hover,
      table.wishlist-product-price tbody td .product-name a:hover,
      .cart table tbody td .product-name a:hover,
      .opc-wrapper-opc table tbody td .product-name a:hover,
      .my-account table tbody td .product-name a:hover {
        color: #c1151a;
        text-decoration: none; }
    #m-wishlist-table tbody td .product-cart-sku a,
    table.wishlist-product-price tbody td .product-cart-sku a,
    .cart table tbody td .product-cart-sku a,
    .opc-wrapper-opc table tbody td .product-cart-sku a,
    .my-account table tbody td .product-cart-sku a {
      color: #0867a9;
      text-decoration: none; }
      #m-wishlist-table tbody td .product-cart-sku a:hover,
      table.wishlist-product-price tbody td .product-cart-sku a:hover,
      .cart table tbody td .product-cart-sku a:hover,
      .opc-wrapper-opc table tbody td .product-cart-sku a:hover,
      .my-account table tbody td .product-cart-sku a:hover {
        text-decoration: none;
        color: #c1151a; }
    #m-wishlist-table tbody td strong,
    table.wishlist-product-price tbody td strong,
    .cart table tbody td strong,
    .opc-wrapper-opc table tbody td strong,
    .my-account table tbody td strong {
      font-weight: normal; }
  #m-wishlist-table tr,
  table.wishlist-product-price tr,
  .cart table tr,
  .opc-wrapper-opc table tr,
  .my-account table tr {
    border-bottom: 1px solid #d4d6e2; }
  #m-wishlist-table tfoot tr,
  table.wishlist-product-price tfoot tr,
  .cart table tfoot tr,
  .opc-wrapper-opc table tfoot tr,
  .my-account table tfoot tr {
    background: none;
    border: none; }
    #m-wishlist-table tfoot tr button,
    table.wishlist-product-price tfoot tr button,
    .cart table tfoot tr button,
    .opc-wrapper-opc table tfoot tr button,
    .my-account table tfoot tr button {
      position: relative; }
      #m-wishlist-table tfoot tr button span,
      table.wishlist-product-price tfoot tr button span,
      .cart table tfoot tr button span,
      .opc-wrapper-opc table tfoot tr button span,
      .my-account table tfoot tr button span {
        color: #0867a9;
        text-transform: lowercase;
        font-size: 13px;
        text-decoration: underline; }
      #m-wishlist-table tfoot tr button:hover span,
      table.wishlist-product-price tfoot tr button:hover span,
      .cart table tfoot tr button:hover span,
      .opc-wrapper-opc table tfoot tr button:hover span,
      .my-account table tfoot tr button:hover span {
        color: #c1151a;
        text-decoration: underline; }
      #m-wishlist-table tfoot tr button .koszyk-btn,
      table.wishlist-product-price tfoot tr button .koszyk-btn,
      .cart table tfoot tr button .koszyk-btn,
      .opc-wrapper-opc table tfoot tr button .koszyk-btn,
      .my-account table tfoot tr button .koszyk-btn {
        display: inline-block;
        width: 20px;
        height: 20px;
        text-indent: -9999px;
        position: relative;
        top: 5px;
        left: 0px;
        margin-right: 5px; }
    #m-wishlist-table tfoot tr .btn-empty .koszyk-btn,
    table.wishlist-product-price tfoot tr .btn-empty .koszyk-btn,
    .cart table tfoot tr .btn-empty .koszyk-btn,
    .opc-wrapper-opc table tfoot tr .btn-empty .koszyk-btn,
    .my-account table tfoot tr .btn-empty .koszyk-btn {
      background-position: -35px -650px; }
    #m-wishlist-table tfoot tr .btn-empty:hover .koszyk-btn,
    table.wishlist-product-price tfoot tr .btn-empty:hover .koszyk-btn,
    .cart table tfoot tr .btn-empty:hover .koszyk-btn,
    .opc-wrapper-opc table tfoot tr .btn-empty:hover .koszyk-btn,
    .my-account table tfoot tr .btn-empty:hover .koszyk-btn {
      background-position: 0px -650px; }
    #m-wishlist-table tfoot tr .btn-update .koszyk-btn,
    table.wishlist-product-price tfoot tr .btn-update .koszyk-btn,
    .cart table tfoot tr .btn-update .koszyk-btn,
    .opc-wrapper-opc table tfoot tr .btn-update .koszyk-btn,
    .my-account table tfoot tr .btn-update .koszyk-btn {
      background-position: 0px -1000px; }
    #m-wishlist-table tfoot tr .btn-update:hover .koszyk-btn,
    table.wishlist-product-price tfoot tr .btn-update:hover .koszyk-btn,
    .cart table tfoot tr .btn-update:hover .koszyk-btn,
    .opc-wrapper-opc table tfoot tr .btn-update:hover .koszyk-btn,
    .my-account table tfoot tr .btn-update:hover .koszyk-btn {
      background-position: -35px -1000px; }
    #m-wishlist-table tfoot tr .btn-continue .koszyk-btn,
    table.wishlist-product-price tfoot tr .btn-continue .koszyk-btn,
    .cart table tfoot tr .btn-continue .koszyk-btn,
    .opc-wrapper-opc table tfoot tr .btn-continue .koszyk-btn,
    .my-account table tfoot tr .btn-continue .koszyk-btn {
      background-position: 0px -1140px; }
    #m-wishlist-table tfoot tr .btn-continue:hover .koszyk-btn,
    table.wishlist-product-price tfoot tr .btn-continue:hover .koszyk-btn,
    .cart table tfoot tr .btn-continue:hover .koszyk-btn,
    .opc-wrapper-opc table tfoot tr .btn-continue:hover .koszyk-btn,
    .my-account table tfoot tr .btn-continue:hover .koszyk-btn {
      background-position: -35px -1140px; }
  #m-wishlist-table tfoot tr > td:after,
  table.wishlist-product-price tfoot tr > td:after,
  .cart table tfoot tr > td:after,
  .opc-wrapper-opc table tfoot tr > td:after,
  .my-account table tfoot tr > td:after {
    content: '';
    display: table;
    clear: both; }
  #m-wishlist-table thead th.koszyk-suma-naglowek,
  table.wishlist-product-price thead th.koszyk-suma-naglowek,
  .cart table thead th.koszyk-suma-naglowek,
  .opc-wrapper-opc table thead th.koszyk-suma-naglowek,
  .my-account table thead th.koszyk-suma-naglowek {
    width: 100%; }
  #m-wishlist-table thead th.tabela-bottom,
  table.wishlist-product-price thead th.tabela-bottom,
  .cart table thead th.tabela-bottom,
  .opc-wrapper-opc table thead th.tabela-bottom,
  .my-account table thead th.tabela-bottom {
    padding-top: 0px; }
  #m-wishlist-table thead th.tabela-top,
  table.wishlist-product-price thead th.tabela-top,
  .cart table thead th.tabela-top,
  .opc-wrapper-opc table thead th.tabela-top,
  .my-account table thead th.tabela-top {
    padding-bottom: 0px; }
  #m-wishlist-table span.or,
  table.wishlist-product-price span.or,
  .cart table span.or,
  .opc-wrapper-opc table span.or,
  .my-account table span.or {
    font-size: 9px;
    padding: 0 5px;
    text-transform: uppercase;
    font-family: "Sarala", Tahoma, Arial, sans-serif; }
  #m-wishlist-table .product-cart-image .cart-links,
  #m-wishlist-table .product-cart-info .btn-remove,
  #m-wishlist-table .product-cart-actions .button,
  #m-wishlist-table .product-cart-actions .cart-links,
  table.wishlist-product-price .product-cart-image .cart-links,
  table.wishlist-product-price .product-cart-info .btn-remove,
  table.wishlist-product-price .product-cart-actions .button,
  table.wishlist-product-price .product-cart-actions .cart-links,
  .cart table .product-cart-image .cart-links,
  .cart table .product-cart-info .btn-remove,
  .cart table .product-cart-actions .button,
  .cart table .product-cart-actions .cart-links,
  .opc-wrapper-opc table .product-cart-image .cart-links,
  .opc-wrapper-opc table .product-cart-info .btn-remove,
  .opc-wrapper-opc table .product-cart-actions .button,
  .opc-wrapper-opc table .product-cart-actions .cart-links,
  .my-account table .product-cart-image .cart-links,
  .my-account table .product-cart-info .btn-remove,
  .my-account table .product-cart-actions .button,
  .my-account table .product-cart-actions .cart-links {
    display: none; }
  #m-wishlist-table .product-cart-image,
  table.wishlist-product-price .product-cart-image,
  .cart table .product-cart-image,
  .opc-wrapper-opc table .product-cart-image,
  .my-account table .product-cart-image {
    padding-left: 0;
    padding-right: 0; }
    #m-wishlist-table .product-cart-image .product-image,
    table.wishlist-product-price .product-cart-image .product-image,
    .cart table .product-cart-image .product-image,
    .opc-wrapper-opc table .product-cart-image .product-image,
    .my-account table .product-cart-image .product-image {
      margin: auto;
      padding: 0px;
      width: 47px; }
      #m-wishlist-table .product-cart-image .product-image img,
      table.wishlist-product-price .product-cart-image .product-image img,
      .cart table .product-cart-image .product-image img,
      .opc-wrapper-opc table .product-cart-image .product-image img,
      .my-account table .product-cart-image .product-image img {
        width: 45px; }
    #m-wishlist-table .product-cart-image a.cart-edit,
    table.wishlist-product-price .product-cart-image a.cart-edit,
    .cart table .product-cart-image a.cart-edit,
    .opc-wrapper-opc table .product-cart-image a.cart-edit,
    .my-account table .product-cart-image a.cart-edit {
      display: none; }
  #m-wishlist-table .product-cart-info,
  table.wishlist-product-price .product-cart-info,
  .cart table .product-cart-info,
  .opc-wrapper-opc table .product-cart-info,
  .my-account table .product-cart-info {
    width: 100%; }
    #m-wishlist-table .product-cart-info a:hover,
    table.wishlist-product-price .product-cart-info a:hover,
    .cart table .product-cart-info a:hover,
    .opc-wrapper-opc table .product-cart-info a:hover,
    .my-account table .product-cart-info a:hover {
      color: #0867a9; }
  #m-wishlist-table .btn-empty,
  table.wishlist-product-price .btn-empty,
  .cart table .btn-empty,
  .opc-wrapper-opc table .btn-empty,
  .my-account table .btn-empty {
    float: left; }
  #m-wishlist-table .product-cart-actions,
  table.wishlist-product-price .product-cart-actions,
  .cart table .product-cart-actions,
  .opc-wrapper-opc table .product-cart-actions,
  .my-account table .product-cart-actions {
    text-align: center; }
    #m-wishlist-table .product-cart-actions .qty,
    table.wishlist-product-price .product-cart-actions .qty,
    .cart table .product-cart-actions .qty,
    .opc-wrapper-opc table .product-cart-actions .qty,
    .my-account table .product-cart-actions .qty {
      height: 20px;
      border-color: #d4d6e2;
      border-radius: 0;
      text-align: center;
      width: 3.2em; }
    #m-wishlist-table .product-cart-actions .button,
    table.wishlist-product-price .product-cart-actions .button,
    .cart table .product-cart-actions .button,
    .opc-wrapper-opc table .product-cart-actions .button,
    .my-account table .product-cart-actions .button {
      padding: 0px;
      background-color: transparent;
      color: #0867a9;
      display: inline-block; }
      #m-wishlist-table .product-cart-actions .button:hover, #m-wishlist-table .product-cart-actions .button:focus,
      table.wishlist-product-price .product-cart-actions .button:hover,
      table.wishlist-product-price .product-cart-actions .button:focus,
      .cart table .product-cart-actions .button:hover,
      .cart table .product-cart-actions .button:focus,
      .opc-wrapper-opc table .product-cart-actions .button:hover,
      .opc-wrapper-opc table .product-cart-actions .button:focus,
      .my-account table .product-cart-actions .button:hover,
      .my-account table .product-cart-actions .button:focus {
        background-color: transparent;
        color: #c1151a; }
  #m-wishlist-table .product-cart-wishlist .link-wishlist,
  table.wishlist-product-price .product-cart-wishlist .link-wishlist,
  .cart table .product-cart-wishlist .link-wishlist,
  .opc-wrapper-opc table .product-cart-wishlist .link-wishlist,
  .my-account table .product-cart-wishlist .link-wishlist {
    background-position: 0px -963px;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-indent: -9999px; }
    #m-wishlist-table .product-cart-wishlist .link-wishlist:hover,
    table.wishlist-product-price .product-cart-wishlist .link-wishlist:hover,
    .cart table .product-cart-wishlist .link-wishlist:hover,
    .opc-wrapper-opc table .product-cart-wishlist .link-wishlist:hover,
    .my-account table .product-cart-wishlist .link-wishlist:hover {
      background-position: -35px -963px; }
  #m-wishlist-table .cart-tax-total,
  table.wishlist-product-price .cart-tax-total,
  .cart table .cart-tax-total,
  .opc-wrapper-opc table .cart-tax-total,
  .my-account table .cart-tax-total {
    position: relative;
    cursor: pointer; }
    #m-wishlist-table .cart-tax-total:after,
    table.wishlist-product-price .cart-tax-total:after,
    .cart table .cart-tax-total:after,
    .opc-wrapper-opc table .cart-tax-total:after,
    .my-account table .cart-tax-total:after {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      display: block;
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-right: 6px solid #6c839f;
      border-left: none;
      position: absolute;
      top: 3px;
      right: -11px; }
    #m-wishlist-table .cart-tax-total.cart-tax-total-expanded:after,
    table.wishlist-product-price .cart-tax-total.cart-tax-total-expanded:after,
    .cart table .cart-tax-total.cart-tax-total-expanded:after,
    .opc-wrapper-opc table .cart-tax-total.cart-tax-total-expanded:after,
    .my-account table .cart-tax-total.cart-tax-total-expanded:after {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      display: block;
      border-right: 6px solid transparent;
      border-left: 6px solid transparent;
      border-top: 6px solid #6c839f;
      border-bottom: none;
      right: -15px;
      top: 6px; }
  #m-wishlist-table .cart-links > li,
  table.wishlist-product-price .cart-links > li,
  .cart table .cart-links > li,
  .opc-wrapper-opc table .cart-links > li,
  .my-account table .cart-links > li {
    white-space: nowrap;
    line-height: 1.3;
    margin-bottom: 5px;
    min-width: 65px;
    font-size: 13px; }
    #m-wishlist-table .cart-links > li > a,
    table.wishlist-product-price .cart-links > li > a,
    .cart table .cart-links > li > a,
    .opc-wrapper-opc table .cart-links > li > a,
    .my-account table .cart-links > li > a {
      display: block; }
    #m-wishlist-table .cart-links > li:last-child,
    table.wishlist-product-price .cart-links > li:last-child,
    .cart table .cart-links > li:last-child,
    .opc-wrapper-opc table .cart-links > li:last-child,
    .my-account table .cart-links > li:last-child {
      margin-bottom: 0; }
  #m-wishlist-table .item-options,
  table.wishlist-product-price .item-options,
  .cart table .item-options,
  .opc-wrapper-opc table .item-options,
  .my-account table .item-options {
    padding-left: 15px; }
  #m-wishlist-table.podsumowanie tbody tr, #m-wishlist-table#shopping-cart-totals-table tbody tr, #m-wishlist-table#opc-shopping-cart-totals-table tbody tr,
  table.wishlist-product-price.podsumowanie tbody tr,
  table.wishlist-product-price#shopping-cart-totals-table tbody tr,
  table.wishlist-product-price#opc-shopping-cart-totals-table tbody tr,
  .cart table.podsumowanie tbody tr,
  .cart table#shopping-cart-totals-table tbody tr,
  .cart table#opc-shopping-cart-totals-table tbody tr,
  .opc-wrapper-opc table.podsumowanie tbody tr,
  .opc-wrapper-opc table#shopping-cart-totals-table tbody tr,
  .opc-wrapper-opc table#opc-shopping-cart-totals-table tbody tr,
  .my-account table.podsumowanie tbody tr,
  .my-account table#shopping-cart-totals-table tbody tr,
  .my-account table#opc-shopping-cart-totals-table tbody tr {
    border: none; }
    #m-wishlist-table.podsumowanie tbody tr.summary-details-amrules, #m-wishlist-table#shopping-cart-totals-table tbody tr.summary-details-amrules, #m-wishlist-table#opc-shopping-cart-totals-table tbody tr.summary-details-amrules,
    table.wishlist-product-price.podsumowanie tbody tr.summary-details-amrules,
    table.wishlist-product-price#shopping-cart-totals-table tbody tr.summary-details-amrules,
    table.wishlist-product-price#opc-shopping-cart-totals-table tbody tr.summary-details-amrules,
    .cart table.podsumowanie tbody tr.summary-details-amrules,
    .cart table#shopping-cart-totals-table tbody tr.summary-details-amrules,
    .cart table#opc-shopping-cart-totals-table tbody tr.summary-details-amrules,
    .opc-wrapper-opc table.podsumowanie tbody tr.summary-details-amrules,
    .opc-wrapper-opc table#shopping-cart-totals-table tbody tr.summary-details-amrules,
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tbody tr.summary-details-amrules,
    .my-account table.podsumowanie tbody tr.summary-details-amrules,
    .my-account table#shopping-cart-totals-table tbody tr.summary-details-amrules,
    .my-account table#opc-shopping-cart-totals-table tbody tr.summary-details-amrules {
      color: #c1151a; }
    #m-wishlist-table.podsumowanie tbody tr td, #m-wishlist-table#shopping-cart-totals-table tbody tr td, #m-wishlist-table#opc-shopping-cart-totals-table tbody tr td,
    table.wishlist-product-price.podsumowanie tbody tr td,
    table.wishlist-product-price#shopping-cart-totals-table tbody tr td,
    table.wishlist-product-price#opc-shopping-cart-totals-table tbody tr td,
    .cart table.podsumowanie tbody tr td,
    .cart table#shopping-cart-totals-table tbody tr td,
    .cart table#opc-shopping-cart-totals-table tbody tr td,
    .opc-wrapper-opc table.podsumowanie tbody tr td,
    .opc-wrapper-opc table#shopping-cart-totals-table tbody tr td,
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tbody tr td,
    .my-account table.podsumowanie tbody tr td,
    .my-account table#shopping-cart-totals-table tbody tr td,
    .my-account table#opc-shopping-cart-totals-table tbody tr td {
      padding: 5px 10px; }
    #m-wishlist-table.podsumowanie tbody tr:first-child td, #m-wishlist-table#shopping-cart-totals-table tbody tr:first-child td, #m-wishlist-table#opc-shopping-cart-totals-table tbody tr:first-child td,
    table.wishlist-product-price.podsumowanie tbody tr:first-child td,
    table.wishlist-product-price#shopping-cart-totals-table tbody tr:first-child td,
    table.wishlist-product-price#opc-shopping-cart-totals-table tbody tr:first-child td,
    .cart table.podsumowanie tbody tr:first-child td,
    .cart table#shopping-cart-totals-table tbody tr:first-child td,
    .cart table#opc-shopping-cart-totals-table tbody tr:first-child td,
    .opc-wrapper-opc table.podsumowanie tbody tr:first-child td,
    .opc-wrapper-opc table#shopping-cart-totals-table tbody tr:first-child td,
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tbody tr:first-child td,
    .my-account table.podsumowanie tbody tr:first-child td,
    .my-account table#shopping-cart-totals-table tbody tr:first-child td,
    .my-account table#opc-shopping-cart-totals-table tbody tr:first-child td {
      padding-top: 10px; }
    #m-wishlist-table.podsumowanie tbody tr:last-child td, #m-wishlist-table#shopping-cart-totals-table tbody tr:last-child td, #m-wishlist-table#opc-shopping-cart-totals-table tbody tr:last-child td,
    table.wishlist-product-price.podsumowanie tbody tr:last-child td,
    table.wishlist-product-price#shopping-cart-totals-table tbody tr:last-child td,
    table.wishlist-product-price#opc-shopping-cart-totals-table tbody tr:last-child td,
    .cart table.podsumowanie tbody tr:last-child td,
    .cart table#shopping-cart-totals-table tbody tr:last-child td,
    .cart table#opc-shopping-cart-totals-table tbody tr:last-child td,
    .opc-wrapper-opc table.podsumowanie tbody tr:last-child td,
    .opc-wrapper-opc table#shopping-cart-totals-table tbody tr:last-child td,
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tbody tr:last-child td,
    .my-account table.podsumowanie tbody tr:last-child td,
    .my-account table#shopping-cart-totals-table tbody tr:last-child td,
    .my-account table#opc-shopping-cart-totals-table tbody tr:last-child td {
      padding-bottom: 10px; }
  #m-wishlist-table.podsumowanie tfoot, #m-wishlist-table#shopping-cart-totals-table tfoot, #m-wishlist-table#opc-shopping-cart-totals-table tfoot,
  table.wishlist-product-price.podsumowanie tfoot,
  table.wishlist-product-price#shopping-cart-totals-table tfoot,
  table.wishlist-product-price#opc-shopping-cart-totals-table tfoot,
  .cart table.podsumowanie tfoot,
  .cart table#shopping-cart-totals-table tfoot,
  .cart table#opc-shopping-cart-totals-table tfoot,
  .opc-wrapper-opc table.podsumowanie tfoot,
  .opc-wrapper-opc table#shopping-cart-totals-table tfoot,
  .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot,
  .my-account table.podsumowanie tfoot,
  .my-account table#shopping-cart-totals-table tfoot,
  .my-account table#opc-shopping-cart-totals-table tfoot {
    margin-top: 10px;
    border-top: 1px solid #d4d6e2; }
    #m-wishlist-table.podsumowanie tfoot tr:first-child td, #m-wishlist-table#shopping-cart-totals-table tfoot tr:first-child td, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr:first-child td,
    table.wishlist-product-price.podsumowanie tfoot tr:first-child td,
    table.wishlist-product-price#shopping-cart-totals-table tfoot tr:first-child td,
    table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr:first-child td,
    .cart table.podsumowanie tfoot tr:first-child td,
    .cart table#shopping-cart-totals-table tfoot tr:first-child td,
    .cart table#opc-shopping-cart-totals-table tfoot tr:first-child td,
    .opc-wrapper-opc table.podsumowanie tfoot tr:first-child td,
    .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr:first-child td,
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr:first-child td,
    .my-account table.podsumowanie tfoot tr:first-child td,
    .my-account table#shopping-cart-totals-table tfoot tr:first-child td,
    .my-account table#opc-shopping-cart-totals-table tfoot tr:first-child td {
      padding-top: 15px; }
    #m-wishlist-table.podsumowanie tfoot tr td, #m-wishlist-table#shopping-cart-totals-table tfoot tr td, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr td,
    table.wishlist-product-price.podsumowanie tfoot tr td,
    table.wishlist-product-price#shopping-cart-totals-table tfoot tr td,
    table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr td,
    .cart table.podsumowanie tfoot tr td,
    .cart table#shopping-cart-totals-table tfoot tr td,
    .cart table#opc-shopping-cart-totals-table tfoot tr td,
    .opc-wrapper-opc table.podsumowanie tfoot tr td,
    .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr td,
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr td,
    .my-account table.podsumowanie tfoot tr td,
    .my-account table#shopping-cart-totals-table tfoot tr td,
    .my-account table#opc-shopping-cart-totals-table tfoot tr td {
      font-size: 13px;
      padding: 0px 10px;
      text-transform: lowercase; }
      #m-wishlist-table.podsumowanie tfoot tr td strong, #m-wishlist-table#shopping-cart-totals-table tfoot tr td strong, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr td strong,
      table.wishlist-product-price.podsumowanie tfoot tr td strong,
      table.wishlist-product-price#shopping-cart-totals-table tfoot tr td strong,
      table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr td strong,
      .cart table.podsumowanie tfoot tr td strong,
      .cart table#shopping-cart-totals-table tfoot tr td strong,
      .cart table#opc-shopping-cart-totals-table tfoot tr td strong,
      .opc-wrapper-opc table.podsumowanie tfoot tr td strong,
      .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr td strong,
      .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr td strong,
      .my-account table.podsumowanie tfoot tr td strong,
      .my-account table#shopping-cart-totals-table tfoot tr td strong,
      .my-account table#opc-shopping-cart-totals-table tfoot tr td strong {
        font-size: 18px;
        text-transform: none; }
        #m-wishlist-table.podsumowanie tfoot tr td strong.koszyk-cena, #m-wishlist-table.podsumowanie tfoot tr td strong.koszyk-cena-duza, #m-wishlist-table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena, #m-wishlist-table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        table.wishlist-product-price.podsumowanie tfoot tr td strong.koszyk-cena,
        table.wishlist-product-price.podsumowanie tfoot tr td strong.koszyk-cena-duza,
        table.wishlist-product-price#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        table.wishlist-product-price#shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        .cart table.podsumowanie tfoot tr td strong.koszyk-cena,
        .cart table.podsumowanie tfoot tr td strong.koszyk-cena-duza,
        .cart table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .cart table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        .cart table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .cart table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        .opc-wrapper-opc table.podsumowanie tfoot tr td strong.koszyk-cena,
        .opc-wrapper-opc table.podsumowanie tfoot tr td strong.koszyk-cena-duza,
        .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        .my-account table.podsumowanie tfoot tr td strong.koszyk-cena,
        .my-account table.podsumowanie tfoot tr td strong.koszyk-cena-duza,
        .my-account table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .my-account table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza,
        .my-account table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .my-account table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena-duza {
          color: #0867a9;
          font-weight: bold;
          margin-left: 20px; }
        #m-wishlist-table.podsumowanie tfoot tr td strong.koszyk-cena, #m-wishlist-table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        table.wishlist-product-price.podsumowanie tfoot tr td strong.koszyk-cena,
        table.wishlist-product-price#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .cart table.podsumowanie tfoot tr td strong.koszyk-cena,
        .cart table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .cart table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .opc-wrapper-opc table.podsumowanie tfoot tr td strong.koszyk-cena,
        .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .my-account table.podsumowanie tfoot tr td strong.koszyk-cena,
        .my-account table#shopping-cart-totals-table tfoot tr td strong.koszyk-cena,
        .my-account table#opc-shopping-cart-totals-table tfoot tr td strong.koszyk-cena {
          font-size: 24px; }
      #m-wishlist-table.podsumowanie tfoot tr td .do-zaplaty, #m-wishlist-table#shopping-cart-totals-table tfoot tr td .do-zaplaty, #m-wishlist-table#opc-shopping-cart-totals-table tfoot tr td .do-zaplaty,
      table.wishlist-product-price.podsumowanie tfoot tr td .do-zaplaty,
      table.wishlist-product-price#shopping-cart-totals-table tfoot tr td .do-zaplaty,
      table.wishlist-product-price#opc-shopping-cart-totals-table tfoot tr td .do-zaplaty,
      .cart table.podsumowanie tfoot tr td .do-zaplaty,
      .cart table#shopping-cart-totals-table tfoot tr td .do-zaplaty,
      .cart table#opc-shopping-cart-totals-table tfoot tr td .do-zaplaty,
      .opc-wrapper-opc table.podsumowanie tfoot tr td .do-zaplaty,
      .opc-wrapper-opc table#shopping-cart-totals-table tfoot tr td .do-zaplaty,
      .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot tr td .do-zaplaty,
      .my-account table.podsumowanie tfoot tr td .do-zaplaty,
      .my-account table#shopping-cart-totals-table tfoot tr td .do-zaplaty,
      .my-account table#opc-shopping-cart-totals-table tfoot tr td .do-zaplaty {
        display: none; }

@media only screen and (max-width: 959px) {
  .koszyk-kolumny .cart-forms,
  .koszyk-kolumny .cart-totals-wrapper {
    width: 100%;
    float: none;
    padding: 0px; }

  .cart-totals {
    overflow: hidden; }
    .cart-totals .checkout-types.bottom {
      max-width: 400px;
      float: right; }

  #my-orders-table thead th.cart-total-head,
  #my-orders-table td.product-cart-total {
    display: none; }
  #my-orders-table tfoot td {
    text-align: center; }
    #my-orders-table tfoot td .btn-empty {
      float: none; }
  #my-orders-table th,
  #my-orders-table td {
    padding: 7px 6px; }
  #my-orders-table th {
    font-size: 12px; }
  #my-orders-table span.or {
    display: none; } }
@media only screen and (max-width: 780px) {
  #shopping-cart-table thead th.cart-total-head,
  #shopping-cart-table td.product-cart-total {
    display: none; }
  #shopping-cart-table tfoot td {
    text-align: center; }
    #shopping-cart-table tfoot td .btn-empty {
      float: none; }
  #shopping-cart-table th,
  #shopping-cart-table td {
    padding: 7px 6px; }
  #shopping-cart-table th {
    font-size: 12px; }
  #shopping-cart-table span.or {
    display: none; } }
.tabela-mala-tr,
.tabela-mala-td {
  display: none; }

@media only screen and (max-width: 590px) {
  .data-table .tabela-mala-td {
    display: table-cell; }
    .data-table .tabela-mala-td.product-cart-price {
      text-transform: lowercase; }
      .data-table .tabela-mala-td.product-cart-price .price {
        color: #0867a9; }
  .data-table .product-cart-image {
    width: 59px; }
  .data-table .product-cart-actions {
    width: 60px; }
  .data-table .product-cart-remove.product-cart-wishlist {
    width: 61px; }
  .data-table .tabela-mala-tr {
    display: table-row;
    border-bottom: none; }
    .data-table .tabela-mala-tr > td {
      padding-bottom: 0px; }
    .data-table .tabela-mala-tr .product-cart-info {
      width: auto; }
  .data-table .tabela-duza {
    display: none; }

  .checkout-types.top {
    max-width: none;
    width: 100%;
    float: none; }
    .checkout-types.top li {
      display: block; }

  .cart-totals .checkout-types.bottom {
    max-width: none;
    width: 100%;
    float: none; }
    .cart-totals .checkout-types.bottom li {
      display: block; } }
@media only screen and (max-width: 480px) {
  #shopping-cart-totals-table tfoot td,
  .data-table tfoot td,
  .podsumowanie tfoot td {
    text-align: center; }
  #shopping-cart-totals-table tfoot .koszyk-wartosc td > span,
  .data-table tfoot .koszyk-wartosc td > span,
  .podsumowanie tfoot .koszyk-wartosc td > span {
    display: block;
    text-align: center; } }
/*
@include bp(max-width, 599px) {

    .cart-table {
        colgroup, thead {
            display: none;
        }

        tr {
            display: block;
            margin-bottom: 10px;
            padding-bottom: 10px;
            position: relative;
            width: 100%;

            &:after {
                @include clearfix;
            }

            &:last-child {
                margin-bottom: 0;
            }
        }

        tfoot tr {
            padding-bottom: 0;
        }

        td {
            border: none;
            display: block;

            &[data-rwd-label] {
                padding-left: 15px;
                margin-bottom: 6px;

                .price {
                    font-weight: normal;
                }

                &:before {
                    content: attr(data-rwd-label) ":";
                    font-size: $f-size-xs;
                    font-family: $f-stack-special;
                    padding-right: 5px;
                    text-transform: uppercase;
                }
            }

            &.product-cart-price {
                text-align: left;
            }
        }

        h2 {
            font-size: $f-size-xs;
        }

        .cart-links {
            padding-top: 5px;
            padding-right: 5px;

            > li {
                white-space: normal;
                text-align: center;

                > a {
                    padding: 2px 0px;
                }
            }
        }

        .cart-tax-info {
            font-style: italic;
            padding-left: $trim-small;
            font-size: $f-size-s;

            .price {
                font-size: $f-size-s;
            }
        }

        .product-cart-image {
            width: percentage(1/4);
            float: left;
            padding-bottom: 0;

            a.cart-edit {
                display: block;
                font-size: $f-size-xl;
                text-align: center;
                text-transform: uppercase;
            }
        }

        .product-cart-info,
        td[data-rwd-label] {
            float: right;
            width: percentage(3/4);
        }

        .product-cart-actions,
        .product-cart-price {
            padding-bottom: 0;
            padding-top: 0;
            float: right;
        }

        .product-cart-remove,
        .product-cart-total,
        .product-cart-actions .cart-links {
            display: none;
        }

        .product-cart-image .cart-links,
        .product-cart-info .btn-remove {
            display: block;
        }

        // This element will be displayed via JS once the related input is focused
        .product-cart-actions .button {
            display: none;
        }

        .product-cart-info {

            .btn-remove {
                float: right;
                margin: -4px 0px 2px 7px;
            }

            .product-cart-sku {
                margin-bottom: 5px;
            }
        }

        .product-cart-actions {
            text-align: left;

            .qty {
                margin-right: 7px;
                margin-bottom: 7px;
            }
        }

        .price,
        .product-cart-price:before {
            font-weight: 500;
            font-size: $f-size-l;
            font-family: $f-stack-sans;
        }

        .cart-footer-actions {
            text-align: center;
            width: 100%;

            #empty_cart_button {
                float: right;
            }

            .btn-continue {
                float: left;
            }

            span.or {
                display: none;
            }

        }
    }

    .display-both-prices {
        .cart-table {
            td {
                &[data-rwd-tax-label] {
                    &:before {
                        content: attr(data-rwd-tax-label) ":";
                    }
                }
            }
        }
    }
}*/
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.cart #shipping-zip-form {
  display: none; }
.cart #co-shipping-method-form .sp-methods dt {
  display: none; }
.cart h3 {
  font-size: 15px;
  color: #0867a9;
  text-transform: none; }

.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px; }
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #d4d6e2; }
.shipping select.validation-failed {
  border-color: #DF280A; }
.shipping .shipping-desc {
  display: none; }
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0; }
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both; }
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0; }
.shipping .form-list .shipping-country {
  width: 37%; }
.shipping .form-list .shipping-region {
  width: 41%; }
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%; }
  .shipping .form-list .shipping-postcode input {
    margin-top: 4px; }
.shipping .form-list .input-box {
  padding-top: 0; }
.shipping .form-list input {
  height: 30px;
  margin-top: 4px; }
.shipping .form-list label {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap; }
.shipping .sp-methods {
  text-align: left; }
  .shipping .sp-methods label {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 12px;
    font-style: italic;
    min-width: 100px; }
    .shipping .sp-methods label p {
      display: inline; }
      .shipping .sp-methods label p span.price {
        font-weight: normal; }
    .shipping .sp-methods label span {
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-weight: bold;
      font-style: normal; }
    .shipping .sp-methods label .dymek-info {
      width: 18px;
      height: 18px;
      display: block;
      position: relative;
      margin-top: -2px;
      background-position: -70px -720px;
      text-indent: 0px; }
      .shipping .sp-methods label .dymek-info span {
        display: none;
        padding: 3px;
        margin-left: 5px;
        width: 250px;
        height: auto;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        border: 1px solid #0867a9;
        text-align: center;
        font-weight: normal;
        top: -100%;
        left: 100%;
        z-index: 1000;
        font-style: italic; }
      .shipping .sp-methods label .dymek-info:hover {
        background-position: -120px -720px; }
        .shipping .sp-methods label .dymek-info:hover span {
          display: inline;
          color: #617795; }
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0; }
.shipping #co-shipping-method-form .sp-methods dd label {
  background-color: transparent; }

@media only screen and (max-width: 780px) {
  .shipping .shipping-form .sp-methods label a {
    float: none; }
  .shipping .shipping-form .sp-methods label .dymek-info {
    width: auto;
    height: auto;
    display: block;
    position: static;
    cursor: default;
    background: none;
    margin-left: 0px;
    margin-top: 5px;
    color: #c0c2d2; }
    .shipping .shipping-form .sp-methods label .dymek-info span {
      display: inline;
      padding: 0px;
      margin-left: 0px;
      width: auto;
      height: auto;
      position: static;
      background-color: transparent;
      border-radius: 0px;
      border: none;
      text-align: left; }
    .shipping .shipping-form .sp-methods label .dymek-info:hover {
      text-decoration: none; }
      .shipping .shipping-form .sp-methods label .dymek-info:hover span {
        color: #c0c2d2; }
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none; }
    .shipping .shipping-form .form-list > li label {
      display: block; }
    .shipping .shipping-form .form-list > li input,
    .shipping .shipping-form .form-list > li select {
      width: 100%; } }
/*.cart .cart-totals {
    text-align: right;

    &:after {
        @include clearfix;
    }

    table {
        font-family: $f-stack-special;
        font-size: $f-size-xs;
        margin-bottom: 20px;
        text-transform: uppercase;
        width: 100%;

        td {
            padding: 2px 0px;
        }
        td:first-child {
            padding-right: 10px;
            min-width: 120px;
        }

        tbody tr:last-child td,
        tbody tr:last-child th {
            padding-bottom: 10px;
        }

        tfoot {
            border-top: 1px solid #E6E6E6;
            border-bottom: 1px solid #E6E6E6;
            td {
                font-size: 24px;
                padding: 2px 5px;
                vertical-align: top;
            }

            strong span,
            span.price {
                font-family: $f-stack-sans;

            }

            strong {
                font-weight: 400;
            }
        }
    }
}

@include bp(max-width, 600px) {

    .cart-totals {
        text-align: right;
    }
}

@include bp(max-width, $bp-medium) {

    .cart .cart-totals table tfoot td {
        font-size: $f-size-xxl;
    }
}

*/
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both; }

.discount-form {
  position: relative; }
  .discount-form .button-wrapper {
    position: absolute;
    left: 200px;
    top: 4px; }

#discount-coupon-form,
.cart .giftcard {
  width: 100%; }
  #discount-coupon-form label,
  .cart .giftcard label {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    min-width: 105px;
    display: none;
    margin-right: 10px; }
  #discount-coupon-form .field-wrapper,
  .cart .giftcard .field-wrapper {
    display: inline-block; }
  #discount-coupon-form .button-wrapper,
  .cart .giftcard .button-wrapper {
    display: inline-block;
    vertical-align: bottom; }
    #discount-coupon-form .button-wrapper > button,
    .cart .giftcard .button-wrapper > button {
      float: left; }
  #discount-coupon-form .input-text,
  .cart .giftcard .input-text {
    border-radius: 0;
    height: 30px;
    margin: 4px 10px 0 0;
    width: 190px; }

.cart .giftcard p {
  margin-bottom: 7px; }

.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px; }
  .cart .giftcard .check-gc-status > span > span {
    font-size: 14px;
    text-transform: none; }

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.koszyk-kolumny {
  overflow: hidden; }

.crosssell {
  margin-top: 30px; }
  .crosssell h2 {
    color: #0867a9;
    text-transform: none;
    font-size: 18px; }

@media only screen and (max-width: 959px) {
  .crosssell .products-grid > li,
  .box-collateral .products-grid > li {
    width: 23.33333%;
    margin-right: 2.22222%; }
    .crosssell .products-grid > li:nth-child(4n+4),
    .box-collateral .products-grid > li:nth-child(4n+4) {
      margin-right: 0px;
      clear: none; } }
@media only screen and (max-width: 780px) {
  .crosssell,
  .box-collateral {
    margin-top: 20px; }
    .crosssell .products-grid > li,
    .crosssell .products-grid > li:nth-child(4n+4),
    .box-collateral .products-grid > li,
    .box-collateral .products-grid > li:nth-child(4n+4) {
      width: 30.8642%;
      margin-right: 3.7037%; }
      .crosssell .products-grid > li:nth-child(3n+3),
      .crosssell .products-grid > li:nth-child(4n+4):nth-child(3n+3),
      .box-collateral .products-grid > li:nth-child(3n+3),
      .box-collateral .products-grid > li:nth-child(4n+4):nth-child(3n+3) {
        margin-right: 0px;
        clear: none; } }
@media only screen and (max-width: 590px) {
  .crosssell h2,
  .box-collateral h2 {
    text-align: center; }
  .crosssell .products-grid > li,
  .crosssell .products-grid > li:nth-child(4n+4),
  .crosssell .products-grid > li:nth-child(3n+3),
  .box-collateral .products-grid > li,
  .box-collateral .products-grid > li:nth-child(4n+4),
  .box-collateral .products-grid > li:nth-child(3n+3) {
    width: 47.72727%;
    margin-right: 4.54545%; }
    .crosssell .products-grid > li:nth-child(2n+2),
    .crosssell .products-grid > li:nth-child(4n+4):nth-child(2n+2),
    .crosssell .products-grid > li:nth-child(3n+3):nth-child(2n+2),
    .box-collateral .products-grid > li:nth-child(2n+2),
    .box-collateral .products-grid > li:nth-child(4n+4):nth-child(2n+2),
    .box-collateral .products-grid > li:nth-child(3n+3):nth-child(2n+2) {
      margin-right: 0px;
      clear: none; } }
@media only screen and (max-width: 480px) {
  .crosssell .products-grid > li,
  .crosssell .products-grid > li:nth-child(4n+4),
  .crosssell .products-grid > li:nth-child(3n+3),
  .crosssell .products-grid > li:nth-child(2n+2),
  .box-collateral .products-grid > li,
  .box-collateral .products-grid > li:nth-child(4n+4),
  .box-collateral .products-grid > li:nth-child(3n+3),
  .box-collateral .products-grid > li:nth-child(2n+2) {
    width: 100%;
    margin-right: 0px; } }
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none; }

.checkout-onepage-index .col-main {
  width: auto;
  float: none; }

@media only screen and (min-width: 960px) {
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 20px; }
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block; }
  .checkout-onepage-index .col-right {
    padding-left: 0; } }
.opc select {
  width: 365px; }

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #ECECEC;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .opc .section .step-title:after {
    content: '';
    display: table;
    clear: both; }

.opc .section.allow:not(.active) .step-title {
  cursor: pointer; }

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #fafafc; }

.opc .section.active .step-title {
  border-bottom: 1px solid #ECECEC; }

.opc .section .step-title a {
  display: none; }

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px; }

.no-touch .opc .section .step-title a:hover {
  text-decoration: none; }

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #3e5881;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px; }

.opc .section.allow .step-title .number {
  background-color: #9facc0; }

.opc .section.allow .step-title h2 {
  color: #c0c2d2; }

.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #6c839f; }

.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px; }

.opc .section .step {
  padding: 20px; }
  .opc .section .step:after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 959px) {
    .opc .section .step {
      padding: 10px; } }

.opc select {
  max-width: 365px;
  width: 100%; }

.opc h3 {
  font-weight: 500; }

.opc .buttons-set {
  text-align: left; }
  .opc .buttons-set button.button {
    float: left;
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: 0; }
  .opc .buttons-set p.required {
    float: right;
    margin-left: 5px;
    margin-bottom: 0; }
  .opc .buttons-set .back-link {
    float: right;
    margin: 0; }
  .opc .buttons-set a {
    line-height: 20px;
    display: inline-block;
    padding: 5px 5px 5px 0; }

@media only screen and (max-width: 480px) {
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0; } }
.opc #opc-login .step {
  padding: 0px; }
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px; }

@media only screen and (max-width: 780px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none; } }
#opc-payment .note {
  padding: 10px; }

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
.opc.opc-firststep-login .section:not(#opc-login) .step-title,
.opc-block-progress-step-login {
  -moz-transition: opacity 300ms 0;
  -o-transition: opacity 300ms 0;
  -webkit-transition: opacity 300ms 0;
  transition: opacity 300ms 0; }

.opc.opc-firststep-login .section#opc-login .step-title .number {
  -moz-transition: width 80ms 0;
  -o-transition: width 80ms 0;
  -webkit-transition: width 80ms 0;
  transition: width 80ms 0; }

.opc.opc-firststep-login .section#opc-login .step-title h2 {
  -moz-transition: margin-left 80ms 0;
  -o-transition: margin-left 80ms 0;
  -webkit-transition: margin-left 80ms 0;
  transition: margin-left 80ms 0; }

/* When a user progresses from the "Checkout Method" to "Billing Information" for the first time, the              */
/* "opc-has-progressed-from-login" class gets added to the body. Also, the .opc element will only have the         */
/* "opc-firststep-login" class if the first step of the checkout is the "Checkout Method" (eg, not when logged in) */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section:not(#opc-login) .step-title,
body:not(.opc-has-progressed-from-login) .opc-block-progress-step-login {
  opacity: 0; }

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden; }

body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px; }

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px; }
  .sp-methods dt {
    margin: 13px 0 5px;
    font-weight: bold; }
    .sp-methods dt:first-child {
      margin: 0 0 5px; }
  .sp-methods dd li {
    margin: 5px 0; }
  .sp-methods label img {
    float: left; }
  .sp-methods label a {
    margin-top: 6px;
    float: right;
    margin-left: 10px; }
  .sp-methods .price {
    font-weight: bold; }
  .sp-methods .form-list {
    padding-left: 20px; }
    .sp-methods .form-list li {
      margin: 0 0 8px; }
  .sp-methods select.month {
    width: 120px;
    margin-right: 10px; }
  .sp-methods select.year {
    width: 96px; }
  .sp-methods input.cvv {
    width: 4em !important; }
  .sp-methods #advice-validate-cc-exp-ccsave_expiration {
    max-width: 130px; }
  .sp-methods .checkmo-list li {
    margin: 0 0 5px;
    content: '';
    display: table;
    clear: both; }
  .sp-methods .checkmo-list label {
    width: 165px;
    padding-right: 15px;
    text-align: right;
    float: left; }
  .sp-methods .checkmo-list address {
    float: left; }
  @media only screen and (max-width: 480px) {
    .sp-methods .checkmo-list {
      padding-left: 0; }
      .sp-methods .checkmo-list label {
        width: 135px; } }
  .sp-methods .release-amounts {
    margin: 0.5em 0; }
  .sp-methods .release-amounts button {
    float: left;
    margin: 5px 10px 0 0; }

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #d4d6e2;
  padding-left: 20px; }
  .block-progress .block-content {
    font-size: 13px; }
  .block-progress dt {
    padding-top: 6px;
    margin: 0;
    margin-bottom: 10px;
    color: #556c94;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: normal;
    color: #c0c2d2; }
  .block-progress dt.complete {
    color: #556c94; }
  .block-progress dd {
    padding-left: 15px;
    margin-bottom: 10px;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-style: italic; }
    .block-progress dd address {
      font-style: italic; }
  .block-progress #payment-progress-opcheckout .subtitle {
    margin-bottom: 3px; }
  .block-progress .payment-info dt {
    padding: 0;
    margin: 0 0 3px 0;
    color: #556c94;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    text-transform: none;
    font-style: italic;
    float: left;
    clear: both;
    font-size: 13px; }
    .block-progress .payment-info dt:after {
      content: ': '; }
  .block-progress .payment-info dd {
    float: left;
    margin-bottom: 3px;
    font-size: 13px; }
  .block-progress .payment-info:after {
    content: '';
    display: table;
    clear: both; }

/* review step */
#checkout-review-table .btn-remove img {
  display: none; }

#checkout-review-table-wrapper {
  clear: both; }

#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px; }
  #review-buttons-container .btn-checkout {
    min-width: 220px; }
  #review-buttons-container .please-wait {
    float: left;
    margin-right: 10px; }
  #review-buttons-container .f-left {
    float: right; }

@media only screen and (max-width: 590px) {
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none; } }
@media only screen and (max-width: 480px) {
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none; } }
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline; }

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none; }

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0; }
  #checkout-step-review .opc-block-progress .block-title {
    display: none; }
  #checkout-step-review .opc-block-progress .block-content {
    display: block !important;
    padding: 0; }
    #checkout-step-review .opc-block-progress .block-content > dl > div {
      float: left;
      width: 50%; }
    @media only screen and (max-width: 480px) {
      #checkout-step-review .opc-block-progress .block-content > dl > div {
        float: none;
        width: auto; } }
    #checkout-step-review .opc-block-progress .block-content .changelink {
      display: none; }

/*@include bp(max-width, $bp-xsmall) {
    #checkout-review-table thead > tr > th {
        display: none;

        &:first-child {
            display: block;
        }
    }
    #checkout-review-table thead > tr > th:first-child {
        display: block;
    }
}*/
#checkout-step-review .centinel > p {
  margin-bottom: 10px; }
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px; }

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px; }
  .gift-messages-form .item h5 {
    font-weight: bold; }
  .gift-messages-form .item .product-img-box {
    width: auto;
    float: left;
    padding-right: 15px; }
  .gift-messages-form .item .details {
    float: left; }

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block; }
  .gift-message-form .inner-box > div.extra-options-container p {
    margin-bottom: 15px; }
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px; }
.gift-message-form .gift-wrapping-form img {
  float: left; }
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px; }
  .gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
    content: '';
    display: table;
    clear: both; }
  .gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
    margin-right: 5px; }
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC; }
  .gift-message-form .gift-item:after {
    content: '';
    display: table;
    clear: both; }
  .gift-message-form .gift-item .product-img-box {
    width: 200px; }
    .gift-message-form .gift-item .product-img-box .product-image {
      width: 75px;
      margin-left: auto;
      margin-right: auto; }
    .gift-message-form .gift-item .product-img-box .product-name {
      display: block; }
  .gift-message-form .gift-item .fieldset {
    margin-left: 200px; }

@media only screen and (max-width: 780px) {
  .gift-message-form .giftmessage-area {
    max-width: 100%; }
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none; }
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px; }
    .gift-message-form .gift-item .fieldset textarea {
      width: 100%; } }
/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center; }
.checkout-onepage-success .page-title h1 {
  float: none;
  text-align: center; }
.checkout-onepage-success h3.podtytul {
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block; }
.checkout-onepage-success p a {
  color: #0867a9;
  text-decoration: underline; }
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center; }
  .checkout-onepage-success .buttons-set button {
    float: none; }

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both; }

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #556c94;
  text-decoration: none;
  box-sizing: content-box; }

.swatch-link {
  border: 1px solid #d4d6e2;
  margin: 0 0 3px; }
  .swatch-link img {
    border-radius: 2px; }
  .swatch-link:hover {
    cursor: pointer;
    text-decoration: none; }
  .swatch-link .x {
    display: none;
    text-indent: -999em;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/bg_x.png) center no-repeat transparent;
    z-index: 10; }
  .swatch-link.has-image .swatch-label {
    position: relative; }
  .swatch-link.has-image img {
    position: absolute;
    top: 0;
    left: 0; }

.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #fafafc; }

.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px); }
  .configurable-swatch-list li {
    float: left;
    zoom: 1;
    margin: 0 0 0 3px; }
  .products-grid .configurable-swatch-list li {
    display: inline-block;
    float: none;
    margin: 0;
    vertical-align: top; }
  .configurable-swatch-list .not-available .x {
    display: block; }
  .configurable-swatch-list .not-available .swatch-link {
    border-color: #EDEDED;
    position: relative; }
    .configurable-swatch-list .not-available .swatch-link.has-image img {
      opacity: 0.4;
      filter: alpha(opacity=40); }
  .configurable-swatch-list .not-available .swatch-label {
    color: #aaa;
    background: #fff; }
  .configurable-swatch-list .wide-swatch .swatch-label {
    padding: 0 6px; }
  .configurable-swatch-list .not-available a:focus {
    outline: 0; }

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%; }
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left; }
  #narrow-by-list dd .swatch-link.has-image {
    line-height: inherit; }
  #narrow-by-list dd .swatch-link:hover .swatch-label {
    border-color: #d4d6e2; }
#narrow-by-list dd .swatch-label {
  background: #fafafc;
  border: 1px solid #d4d6e2;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap; }
  #narrow-by-list dd .swatch-label img {
    border: 1px solid #fff;
    border-radius: 3px;
    box-sizing: content-box; }
#narrow-by-list dd .has-image .swatch-label {
  padding: 0; }

@media only screen and (max-width: 780px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left; } }
.currently .swatch-current {
  position: relative; }
  .currently .swatch-current .btn-remove {
    margin-top: -10px;
    position: absolute;
    right: 0;
    top: 50%; }
  .currently .swatch-current span {
    display: block;
    float: left; }
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px; }
  .currently .swatch-link:hover {
    border-color: #d4d6e2;
    cursor: default; }

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #d4d6e2; }

.configurable-swatch-box {
  background: none !important; }
  .configurable-swatch-box select.swatch-select {
    display: none; }
  .configurable-swatch-box .validation-advice {
    margin: 0 0 5px;
    background: #DF280A;
    padding: 2px 5px !important;
    font-weight: bold;
    color: #fff !important;
    float: left;
    display: block;
    border-radius: 3px; }

/* CUSTOM */
.availability.out-of-stock span {
  color: #c0c2d2; }

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0; }
  .product-view .product-options .swatch-attr label,
  .product-view .product-options .swatch-attr .select-label {
    font-size: 12px; }
  .product-view .product-options .swatch-attr label {
    display: block;
    line-height: 1.3; }
  .product-view .product-options .swatch-attr .select-label {
    display: inline;
    font-weight: normal;
    color: #6c839f;
    padding-left: 5px; }
.product-view .product-options dd .input-box {
  width: auto;
  height: auto; }
.product-view .product-options .select-label {
  display: none; }
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default; }

.login-lewa {
  width: 50%;
  float: left;
  padding-right: 15px;
  border-right: 1px solid #cccccc; }
  .login-lewa .btn {
    width: 100%; }

.login-prawa {
  width: 50%;
  float: right;
  padding-left: 15px; }
  .login-prawa .facebook-text {
    position: absolute;
    bottom: 10px;
    font-size: 13px; }

.customer-account-forgotpassword .podtytul,
.customer-account-login .podtytul,
.customer-account-create .podtytul,
.customer-account-confirmation .podtytul {
  margin: 10px 0 20px 0;
  display: block; }

.control.remember-me-box {
  margin-top: 0px; }

.benefits {
  font-size: 14px; }

.customer-account-logoutsuccess .main-container img {
  float: right;
  margin-top: -80px;
  margin-right: 100px; }

@media only screen and (max-width: 979px) {
  .customer-account-logoutsuccess .main-container img {
    float: none;
    width: 280px;
    margin: 30px auto 0px; } }
@media only screen and (max-width: 480px) {
  .customer-account-logoutsuccess .main-container img {
    width: 250px; }
  .customer-account-logoutsuccess .main-container p {
    text-align: center; } }
.customer-account-login .col2-set .buttons-set button,
.customer-account-create .col2-set .buttons-set button {
  background-color: #11B400; }

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .scaffold-form label:first-child {
  width: 115px; }
.customer-account-login .col2-set {
  font-size: 13px; }
  .customer-account-login .col2-set .buttons-set {
    display: inline-block;
    padding: 0px;
    margin-top: 20px;
    width: 100%;
    max-width: 250px; }
    .customer-account-login .col2-set .buttons-set button,
    .customer-account-login .col2-set .buttons-set .button {
      float: none;
      margin: 0;
      width: 100%;
      min-width: 200px; }
  .customer-account-login .col2-set .col-1 {
    width: 34%;
    padding: 0 20px 0 0; }
    .customer-account-login .col2-set .col-1 .buttons-set {
      margin-top: 10px; }
  .customer-account-login .col2-set .col-2 {
    width: 66%;
    padding: 0 0 0 20px; }
    .customer-account-login .col2-set .col-2 .buttons-set {
      position: absolute;
      bottom: 0px; }
    .customer-account-login .col2-set .col-2 .content {
      min-height: 192px;
      position: relative; }
      .customer-account-login .col2-set .col-2 .content img {
        position: relative;
        margin-top: -80px;
        margin-right: -20px;
        right: 0;
        top: 0;
        float: right;
        width: 50%;
        max-width: 341px; }

.customer-account-create .col2-set h3 {
  font-weight: normal;
  color: #0867a9;
  font-size: 15px;
  text-transform: none;
  display: block;
  margin-top: 30px;
  margin-bottom: 20px; }
  .customer-account-create .col2-set h3.podtytul {
    margin-top: 10px; }
.customer-account-create .col2-set .buttons-set {
  display: inline-block;
  padding: 0px;
  margin-top: 20px;
  width: 100%;
  max-width: 250px; }
  .customer-account-create .col2-set .buttons-set button,
  .customer-account-create .col2-set .buttons-set .button {
    float: none;
    margin: 0;
    width: 100%;
    min-width: 200px; }
.customer-account-create .col2-set .col-1 {
  padding: 0 20px 0 0; }
  .customer-account-create .col2-set .col-1 .pslogin-register {
    margin-top: 20px;
    width: 50%;
    padding-right: 15px;
    min-width: 215px; }
    .customer-account-create .col2-set .col-1 .pslogin-register .pslogin-buttons {
      min-width: 200px;
      width: 100%; }
.customer-account-create .col2-set .col-2 {
  padding: 0 0 0 20px; }
  .customer-account-create .col2-set .col-2 ul.benefits {
    list-style: disc;
    padding-left: 20px;
    margin: 10px 0 20px 0;
    color: #0867a9; }
    .customer-account-create .col2-set .col-2 ul.benefits li span {
      color: #556c94; }
    .customer-account-create .col2-set .col-2 ul.benefits li strong {
      color: #0867a9; }
  .customer-account-create .col2-set .col-2 .podtytul span {
    color: #c1151a; }

.customer-account-create .scaffold-form label:first-child {
  width: 140px; }

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 13px;
  color: #c0c2d2; }

.remember-me-box a.hide {
  display: none; }
.remember-me-box .link-tip {
  font-size: 13px;
  padding-left: 10px; }

.remember-me-popup {
  display: none;
  border: 1px solid #d4d6e2;
  padding: 10px;
  position: relative; }
  .remember-me-popup.show {
    display: block; }
  .remember-me-popup p {
    font-family: "Sarala", Tahoma, Arial, sans-serif; }
  .remember-me-popup .remember-me-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 12px; }
  .remember-me-popup .remember-me-popup-close-button {
    display: none; }

.customer-account-forgotpassword .fieldset {
  max-width: 550px; }
  @media only screen and (max-width: 480px) {
    .customer-account-forgotpassword .fieldset {
      margin-left: 0; } }
.customer-account-forgotpassword .buttons-set {
  margin-top: 20px;
  width: 50%;
  min-width: 215px;
  padding: 0px; }
  .customer-account-forgotpassword .buttons-set button,
  .customer-account-forgotpassword .buttons-set .button {
    min-width: 200px;
    float: none;
    margin: 0;
    width: 100%; }
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%; }

@media only screen and (max-width: 959px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    float: none;
    width: 100%;
    padding: 0px; }
    .customer-account-login .col2-set .col-1 .input-box,
    .customer-account-login .col2-set .col-2 .input-box {
      max-width: 350px; }
  .customer-account-login .col2-set .col-2 {
    margin-top: 30px; }
    .customer-account-login .col2-set .col-2 .buttons-set {
      position: static; }
    .customer-account-login .col2-set .col-2 .content {
      min-height: auto; } }
@media only screen and (max-width: 780px) {
  .customer-account-create .col2-set .col-1,
  .customer-account-create .col2-set .col-2 {
    width: 100%;
    float: none;
    padding: 0px; }
  .customer-account-create .col2-set .col-2 {
    margin-top: 30px; } }
@media only screen and (max-width: 590px) {
  .customer-account-login .col2-set .col-2 .content,
  .customer-account-create .col2-set .col-2 .content {
    position: relative; }
    .customer-account-login .col2-set .col-2 .content img,
    .customer-account-create .col2-set .col-2 .content img {
      position: static;
      margin: 0 auto;
      float: none;
      width: 100%;
      max-width: 341px; }
  .customer-account-login .col2-set .col-1 .buttons-set button,
  .customer-account-login .col2-set .col-1 .buttons-set .button,
  .customer-account-create .col2-set .col-1 .buttons-set button,
  .customer-account-create .col2-set .col-1 .buttons-set .button {
    min-width: auto; }
  .customer-account-login .col2-set .col-1 .buttons-set,
  .customer-account-login .col2-set .col-1 .pslogin-register,
  .customer-account-login .col2-set .col-2 .buttons-set,
  .customer-account-login .col2-set .col-2 .pslogin-register,
  .customer-account-create .col2-set .col-1 .buttons-set,
  .customer-account-create .col2-set .col-1 .pslogin-register,
  .customer-account-create .col2-set .col-2 .buttons-set,
  .customer-account-create .col2-set .col-2 .pslogin-register {
    width: 100%;
    padding: 0px; } }
@media only screen and (max-width: 480px) {
  .customer-account-login .col2-set .col-1 .buttons-set button,
  .customer-account-login .col2-set .col-1 .buttons-set .button,
  .customer-account-create .col2-set .col-1 .buttons-set button,
  .customer-account-create .col2-set .col-1 .buttons-set .button {
    min-width: 0px; }
  .customer-account-login .col2-set .col-1 .buttons-set,
  .customer-account-login .col2-set .col-1 .pslogin-register,
  .customer-account-login .col2-set .col-2 .buttons-set,
  .customer-account-login .col2-set .col-2 .pslogin-register,
  .customer-account-create .col2-set .col-1 .buttons-set,
  .customer-account-create .col2-set .col-1 .pslogin-register,
  .customer-account-create .col2-set .col-2 .buttons-set,
  .customer-account-create .col2-set .col-2 .pslogin-register {
    width: 100%;
    padding: 0px;
    max-width: 100%; }
  .customer-account-login .col2-set .col-1 .input-box,
  .customer-account-login .col2-set .col-2 .input-box,
  .customer-account-create .col2-set .col-1 .input-box,
  .customer-account-create .col2-set .col-2 .input-box {
    max-width: 100%; } }
/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body .my-account .fieldset h2,
body .my-account .addresses-list h2,
body .my-account .order-details h2 {
  width: 100%;
  display: inline-block; }
body .my-account .pager {
  float: none; }
body table.podsumowanie {
  width: auto; }
  body table.podsumowanie tr {
    border-bottom: none; }
body .data-table.order-about .status .status-name {
  color: #0867a9; }
body .data-table.order-about .status .tresc {
  font-style: italic;
  word-break: break-all; }
body .data-table td.number a {
  transition: none;
  color: #0867a9;
  text-decoration: none; }
  body .data-table td.number a:hover {
    color: #c1151a;
    text-decoration: none; }
body .data-table td.order-again a,
body .data-table td .view a, body .data-table td.view a {
  display: inline-block;
  width: 22px;
  height: 22px; }
body .data-table td .view a, body .data-table td.view a {
  background-position: 0px -1070px; }
  body .data-table td .view a:hover, body .data-table td.view a:hover {
    background-position: -35px -1070px; }
body .data-table td.order-again a {
  background-position: 0px -1105px; }
  body .data-table td.order-again a:hover {
    background-position: -35px -1105px; }
body .data-table td.rating,
body .data-table td .rating {
  width: auto; }
  body .data-table td.rating .ratings,
  body .data-table td .rating .ratings {
    margin: 0px;
    position: relative;
    width: 85px;
    height: 17px; }
    body .data-table td.rating .ratings > span,
    body .data-table td .rating .ratings > span {
      padding-right: 90px; }
    body .data-table td.rating .ratings .rating-box,
    body .data-table td .rating .ratings .rating-box {
      margin: 0px;
      position: absolute;
      right: 0px;
      top: 0px; }
body .data-table span.nobr a {
  white-space: nowrap; }
body .data-table#my_recent_reviews td > .rating, body .data-table#my-reviews-table td > .rating {
  display: none;
  margin-top: 5px; }
  body .data-table#my_recent_reviews td > .rating:after, body .data-table#my-reviews-table td > .rating:after {
    content: '';
    display: table;
    clear: both; }
  body .data-table#my_recent_reviews td > .rating .view, body .data-table#my-reviews-table td > .rating .view {
    float: left;
    margin-left: 10px;
    margin-top: 2px; }
  body .data-table#my_recent_reviews td > .rating .ratings, body .data-table#my-reviews-table td > .rating .ratings {
    float: left; }
body .data-table#my_recent_reviews td > .product-name, body .data-table#my-reviews-table td > .product-name {
  margin-bottom: 5px;
  color: #0867a9;
  font-size: 13px; }
  body .data-table#my_recent_reviews td > .product-name a, body .data-table#my-reviews-table td > .product-name a {
    color: #0867a9; }
    body .data-table#my_recent_reviews td > .product-name a:hover, body .data-table#my-reviews-table td > .product-name a:hover {
      color: #c1151a; }
body .data-table#my_recent_reviews .tresc, body .data-table#my-reviews-table .tresc {
  font-style: italic; }
body .sidebar .block ol#compare-items li {
  margin: 10px 0; }
body .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px; }
body .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0; }
body .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0; }
body .sidebar .block-cart .summary {
  margin-bottom: 15px; }
body .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin: 10px 0 0 0; }
body .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0; }

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px; }
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left; }

/* ============================================ *
 * Dashboard
 * ============================================ */
.my-account p {
  font-size: 13px; }
.my-account .welcome-msg {
  margin-bottom: 30px; }
  .my-account .welcome-msg .hello {
    color: #0867a9; }
.my-account > img {
  margin-bottom: 10px; }
.my-account .box-title {
  margin-bottom: 10px; }
  .my-account .box-title a.link-edit {
    display: inline-block;
    width: 17px;
    height: 17px;
    background-position: 0px -1035px;
    margin-left: 5px; }
    .my-account .box-title a.link-edit:hover {
      background-position: -35px -1035px; }
  .my-account .box-title a.link-remove {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: -31px -650px; }
    .my-account .box-title a.link-remove:hover {
      background-position: 4px -650px; }
.my-account .col2-set .col-1,
.my-account .col2-set .col-2 {
  padding: 0px; }
.my-account .col2-set .col-1.a-center {
  text-align: left; }
.my-account .col2-set .col-2.a-center {
  text-align: right; }
.my-account .box-content p {
  margin-bottom: 10px; }
.my-account .box-content p,
.my-account .box-content {
  font-size: 13px;
  font-style: italic; }
  .my-account .box-content p address,
  .my-account .box-content address {
    font-size: 13px;
    font-style: italic; }
.my-account .box-account {
  margin-bottom: 30px; }
.my-account .box-reviews.box-account {
  padding-bottom: 0; }
.my-account .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED; }
  .my-account .box-reviews li:first-child {
    border-top: 0; }
  .my-account .box-reviews li .number {
    margin-right: -20px;
    float: left;
    line-height: 1.4;
    font-size: 13px; }
  .my-account .box-reviews li .details {
    margin-left: 20px; }
    .my-account .box-reviews li .details .ratings {
      content: '';
      display: table;
      clear: both;
      margin-bottom: 0; }
      .my-account .box-reviews li .details .ratings strong {
        float: left;
        font-family: "Sarala", Tahoma, Arial, sans-serif;
        font-size: 13px;
        margin-right: 5px; }
      .my-account .box-reviews li .details .ratings .rating-box {
        float: left;
        margin: 3px 0 0 0; }

/* ============================================ *
 * Edit Account
 * ============================================ */
.my-account #form-validate,
.customer-account-changeforgotten #form-validate,
.customer-account-confirmation #form-validate {
  max-width: 550px;
  margin-bottom: 30px; }
  .my-account #form-validate textarea,
  .customer-account-changeforgotten #form-validate textarea,
  .customer-account-confirmation #form-validate textarea {
    max-width: none; }

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list {
  font-family: "Sarala", Tahoma, Arial, sans-serif; }
  .my-account .addresses-list .item {
    margin: 0 0 30px 0; }
    .my-account .addresses-list .item p {
      margin-top: 10px; }
  .my-account .addresses-list .addresses-primary,
  .my-account .addresses-list .addresses-additional {
    margin-bottom: 30px; }

/* ============================================ *
 * Print Order
 * ============================================ */
.data-table tr td .product-name.print,
.data-table tr td .product-cart-sku.print {
  display: none; }

body.sales-order-print .my-account .order-items:after {
  content: '';
  display: table;
  clear: both; }
body.sales-order-print .my-account .print-head {
  float: left; }
  body.sales-order-print .my-account .print-head .logo {
    padding-top: 0px; }
body.sales-order-print .my-account > .col-2 {
  float: right;
  padding-top: 20px;
  text-align: center; }
  body.sales-order-print .my-account > .col-2 .page-title h1 {
    margin-bottom: 0px; }
body.sales-order-print .my-account .order-info {
  margin-top: 0px;
  clear: both; }
body.sales-order-print .my-account p, body.sales-order-print .my-account h1, body.sales-order-print .my-account h2, body.sales-order-print .my-account h3, body.sales-order-print .my-account span,
body.sales-order-print .my-account .page-title h1,
body.sales-order-print .my-account .order-date,
body.sales-order-print .my-account .order-date span,
body.sales-order-print .my-account .tytul,
body.sales-order-print .my-account .tytul h2,
body.sales-order-print .my-account h3.podtytul,
body.sales-order-print .my-account .box-content,
body.sales-order-print .my-account address,
body.sales-order-print .my-account .data-table tr,
body.sales-order-print .my-account .data-table td,
body.sales-order-print .my-account .data-table th,
body.sales-order-print .my-account tbody,
body.sales-order-print .my-account tfoot,
body.sales-order-print .my-account thead,
body.sales-order-print .my-account .podsumowanie tr,
body.sales-order-print .my-account .podsumowanie td,
body.sales-order-print .my-account .podsumowanie th {
  color: #000;
  border-color: #939598; }
body.sales-order-print .my-account .data-table td.print {
  display: none; }
body.sales-order-print .my-account .data-table tr td .product-name.print,
body.sales-order-print .my-account .data-table tr td .product-cart-sku.print {
  display: block; }
body.sales-order-print .my-account .data-table tr td .product-name.no-print,
body.sales-order-print .my-account .data-table tr td .product-cart-sku.no-print {
  display: none; }
body.sales-order-print .my-account .buttons-set span {
  color: #fff; }

/* ============================================ *
 * Order View
 * ============================================ */
a.link-reorder,
a.link-print,
a.link-download {
  position: relative;
  text-transform: lowercase;
  color: #0867a9;
  text-decoration: none !important;
  font-size: 13px; }
  a.link-reorder:hover,
  a.link-print:hover,
  a.link-download:hover {
    color: #c1151a; }
  a.link-reorder .ikona,
  a.link-print .ikona,
  a.link-download .ikona {
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
    top: 7px;
    left: 0; }
  a.link-reorder.link-reorder .ikona,
  a.link-print.link-reorder .ikona,
  a.link-download.link-reorder .ikona {
    top: 8px;
    background-position: 0px -1105px; }
  a.link-reorder.link-reorder:hover .ikona,
  a.link-print.link-reorder:hover .ikona,
  a.link-download.link-reorder:hover .ikona {
    background-position: -35px -1105px; }
  a.link-reorder.link-print .ikona,
  a.link-print.link-print .ikona,
  a.link-download.link-print .ikona {
    background-position: 0px -1175px; }
  a.link-reorder.link-print:hover .ikona,
  a.link-print.link-print:hover .ikona,
  a.link-download.link-print:hover .ikona {
    background-position: -35px -1175px; }
  a.link-reorder.link-download .ikona,
  a.link-print.link-download .ikona,
  a.link-download.link-download .ikona {
    top: 0px;
    background-position: -70px -1140px; }
  a.link-reorder.link-download:hover .ikona,
  a.link-print.link-download:hover .ikona,
  a.link-download.link-download:hover .ikona {
    background-position: -105px -1140px; }

a + a.link-print {
  margin-left: 20px;
  margin-top: -5px; }

.my-account .order-links {
  text-align: right;
  margin-top: -8px; }
.my-account .order-status span,
.my-account .order-status strong,
.my-account .order-date span,
.my-account .order-date strong {
  color: #0867a9; }
.my-account .order-status strong,
.my-account .order-date strong {
  font-size: 15px; }
.my-account .order-total {
  margin-top: 30px; }
.my-account .order-info,
.my-account .order-additional,
.my-account .tracking-box {
  margin-bottom: 30px;
  margin-top: 30px; }
  .my-account .order-info .col-3,
  .my-account .order-additional .col-3,
  .my-account .tracking-box .col-3 {
    margin-top: 20px; }
.my-account .tracking-box a {
  color: #0867a9;
  text-decoration: underline; }
  .my-account .tracking-box a:hover {
    color: #c1151a;
    text-decoration: underline; }

.tracking-table-popup {
  margin-top: 5px;
  border: 1px solid #d4d6e2; }
  .tracking-table-popup th {
    border-right: 1px solid #d4d6e2;
    border-bottom: 1px solid #d4d6e2; }

.shipping-tracking-popup .box-title {
  margin: 20px 0 5px 0; }

.box-collateral {
  margin-top: 30px; }
  .box-collateral h2 {
    color: #0867a9;
    text-transform: none;
    font-size: 18px; }

@media only screen and (max-width: 959px) {
  .box-collateral .products-grid > li {
    width: 23.33333%;
    margin-right: 2.22222%; }
    .box-collateral .products-grid > li:nth-child(4n+4) {
      margin-right: 0px;
      clear: none; } }
@media only screen and (max-width: 780px) {
  .box-collateral {
    margin-top: 20px; }
    .box-collateral .products-grid > li,
    .box-collateral .products-grid > li:nth-child(4n+4) {
      width: 30.8642%;
      margin-right: 3.7037%; }
      .box-collateral .products-grid > li:nth-child(3n+3),
      .box-collateral .products-grid > li:nth-child(4n+4):nth-child(3n+3) {
        margin-right: 0px;
        clear: none; } }
@media only screen and (max-width: 590px) {
  .box-collateral h2 {
    text-align: center; }
  .box-collateral .products-grid > li,
  .box-collateral .products-grid > li:nth-child(4n+4),
  .box-collateral .products-grid > li:nth-child(3n+3) {
    width: 47.72727%;
    margin-right: 4.54545%; }
    .box-collateral .products-grid > li:nth-child(2n+2),
    .box-collateral .products-grid > li:nth-child(4n+4):nth-child(2n+2),
    .box-collateral .products-grid > li:nth-child(3n+3):nth-child(2n+2) {
      margin-right: 0px;
      clear: none; } }
@media only screen and (max-width: 480px) {
  .box-collateral .products-grid > li,
  .box-collateral .products-grid > li:nth-child(4n+4),
  .box-collateral .products-grid > li:nth-child(3n+3),
  .box-collateral .products-grid > li:nth-child(2n+2) {
    width: 100%;
    margin-right: 0px; } }
/*#my-orders-table {
    .option-label {
        margin-left: $box-spacing;
        font-weight: 600;
        font-style: italic;
    }

    .option-value {
        margin-left: $box-spacing * 2;
    }

    tr.bundle:not(:last-child) td {
        border-bottom: none;
        border-top: none;
    }
}*/
ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0; }
ol#cart-sidebar-reorder p.product-name {
  display: inline; }

.order-gift-message dd {
  margin-top: 10px; }

@media only screen and (max-width: 480px) {
  .order-info {
    margin-top: 15px; }

  .data-table#my-orders-table .link-reorder,
  .data-table#my-orders-table .order-again,
  .data-table#my-orders-table .total {
    display: none; }
  .data-table.order-about .date {
    white-space: normal;
    min-width: 100px; }

  .col2-set .col-1,
  .col2-set .col-2 {
    width: 100%;
    margin-top: 15px; }

  .order-info-box {
    margin: 0; }
    .order-info-box .col-1,
    .order-info-box .col-2 {
      width: 100%; }
    .order-info-box + .order-info-box {
      padding-bottom: 0;
      border-bottom: 0;
      margin-bottom: 30px; }

  #my-reviews-table .nobr {
    white-space: normal; } }
@media only screen and (max-width: 590px) {
  body table.podsumowanie {
    width: 100%; }

  .my-account .order-links a + a.link-print {
    margin-left: 0px; }

  body.customer-account .my-account .form-list .control {
    padding-left: 0; }
  body.customer-account .my-account #my_recent_reviews th.rating,
  body.customer-account .my-account #my_recent_reviews td.rating,
  body.customer-account .my-account #my_recent_reviews th.view,
  body.customer-account .my-account #my_recent_reviews td.view,
  body.customer-account .my-account #my-reviews-table th.rating,
  body.customer-account .my-account #my-reviews-table td.rating,
  body.customer-account .my-account #my-reviews-table th.view,
  body.customer-account .my-account #my-reviews-table td.view {
    display: none; }
  body.customer-account .my-account #my_recent_reviews td > .rating,
  body.customer-account .my-account #my-reviews-table td > .rating {
    display: block; }
  body.customer-account .my-account .page-title {
    text-align: center;
    margin-bottom: 15px; }
    body.customer-account .my-account .page-title p.back-link {
      float: none; }
    body.customer-account .my-account .page-title h1 {
      float: none;
      margin-bottom: 0px;
      padding-bottom: 0px; }
    body.customer-account .my-account .page-title .buttons-set {
      margin-top: 10px;
      float: none;
      width: 100%; }
  body.customer-account .my-account .col2-set .col-1.a-center,
  body.customer-account .my-account .col2-set .col-2.a-center {
    float: none;
    width: 100%;
    text-align: center;
    margin: 0px; }

  #my-orders-table .product-cart-image,
  #my-orders-table .product-cart-qty {
    display: table-cell; }
  #my-orders-table .option-label {
    margin-left: 20px; }
  #my-orders-table .option-value {
    margin-left: 35px; }
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none; }
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px; }
  #my-orders-table tr.bundle {
    border-color: #EDEDED; }
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px; }
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0; }
    #my-orders-table tbody:last-child tr:last-child td:last-child {
      padding-bottom: 15px; }
  #my-orders-table tfoot tr.shipping {
    margin-top: 0; } }
body.customer-address-form .buttons-set button,
body.customer-account-edit .buttons-set button,
body.newsletter-manage-index .buttons-set button,
body.wishlist-index-share .buttons-set button,
body.customer-account-forgotpassword .buttons-set button,
body.customer-account-changeforgotten .buttons-set button,
body.customer-account-confirmation .buttons-set button {
  float: left;
  margin-left: 0px; }

body.customer-account .sidebar {
  position: relative; }
  body.customer-account .sidebar .block-reorder .block-title {
    border: none;
    padding: 0px; }
  body.customer-account .sidebar .block-reorder .block-content .actions {
    margin-top: 10px;
    text-align: center; }
    body.customer-account .sidebar .block-reorder .block-content .actions button {
      float: none; }

@media only screen and (max-width: 979px) {
  body.customer-account #my-orders-table th.ship,
  body.customer-account #my-orders-table td.ship {
    display: none; }

  .my-account .order-links a {
    display: block; } }
@media only screen and (max-width: 850px) {
  body.customer-account #my-orders-table th.status,
  body.customer-account #my-orders-table td.status {
    display: none; } }
@media only screen and (max-width: 780px) {
  body.customer-account .sidebar .block-reorder {
    display: none; }

  .my-account .order-info-box .box-content {
    clear: left; }
  .my-account .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px; }
  .my-account .order-info dt {
    display: none; }
  .my-account .dashboard .page-title {
    margin-top: 20px; }
    .my-account .dashboard .page-title h1 {
      margin-top: 0; }
  .my-account .dashboard .welcome-msg {
    font-family: "Sarala", Tahoma, Arial, sans-serif; }
    .my-account .dashboard .welcome-msg .hello {
      font-style: italic; }
  .my-account .dashboard .welcome-msg,
  .my-account .dashboard .box-account {
    margin-bottom: 20px; } }
/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px; }
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none; }

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px; }
  .contacts-index-index .buttons-set p.required {
    float: left; }
  @media only screen and (max-width: 590px) {
    .contacts-index-index .buttons-set {
      max-width: 330px;
      margin-left: 0; }
      .contacts-index-index .buttons-set button {
        float: left;
        margin-left: 0px; }
      .contacts-index-index .buttons-set p.required {
        float: right; } }

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 880px) and (min-width: 781px) {
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px; } }

.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED; }
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0; }
  .paypal-review-order .buttons-set button {
    margin-bottom: 10px; }
@media only screen and (max-width: 780px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0; }
  .paypal-review-order .field.inactive {
    display: none; } }

.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center; }
  .top-container .bml-ad span {
    display: inline-block; }
    .top-container .bml-ad span a {
      display: block; }

.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px; }
  .bml-ad span {
    display: block;
    line-height: 0; }
  .bml-ad a {
    display: inline-block;
    max-width: 100%; }
  .bml-ad a:hover {
    opacity: 0.7; }
  .bml-ad img {
    height: auto !important;
    max-width: 100%; }

.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0; }

@media only screen and (max-width: 780px) {
  .bml-ad.small {
    display: block; } }
@media only screen and (min-width: 781px) {
  .bml-ad.large {
    display: block; } }
div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%; }
  div.paypal-logo span {
    display: block;
    width: 100%; }
    div.paypal-logo span a {
      display: inline-block;
      max-width: 100%; }
      div.paypal-logo span a img {
        max-width: 100%; }
  div.paypal-logo span > img {
    display: none; }

.checkout-types div.paypal-logo {
  text-align: right; }

.bml-checkout-type {
  list-style-type: none; }

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0; }
  .sidebar .paypal-logo > a {
    display: inline-block;
    max-width: 100%; }
    .sidebar .paypal-logo > a:hover {
      opacity: 0.8; }
    .sidebar .paypal-logo > a img {
      display: block; }
  .sidebar .paypal-logo .label {
    margin-top: 4px; }
    .sidebar .paypal-logo .label a {
      font-size: 12px;
      line-height: 1.5; }

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  overflow: hidden; }
  #customer-reviews .produkt-opis-kolumna {
    text-align: left; }
  #customer-reviews .form-add h2,
  #customer-reviews .review-heading h2 {
    margin-bottom: 25px;
    color: #0867a9;
    font-size: 18px;
    display: inline-block;
    text-transform: none;
    width: 100%; }
  #customer-reviews .review-heading .pager {
    clear: none;
    float: right;
    width: auto; }
    #customer-reviews .review-heading .pager .count-container .limiter {
      margin-bottom: 0; }
      #customer-reviews .review-heading .pager .count-container .limiter label {
        font-family: "Sarala", Tahoma, Arial, sans-serif;
        font-size: 10px;
        text-transform: uppercase; }
    #customer-reviews .review-heading .pager .amount {
      display: none; }
  #customer-reviews #review-form {
    text-align: left; }
  #customer-reviews h2 {
    color: #0867a9;
    font-size: 12px; }
    #customer-reviews h2 span {
      color: #556c94; }
  #customer-reviews h3 {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-transform: none; }
    #customer-reviews h3 span {
      color: #0867a9; }
  #customer-reviews .fieldset {
    max-width: 470px; }
    #customer-reviews .fieldset h4 {
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-size: 14px;
      font-weight: 600;
      text-transform: none; }
      #customer-reviews .fieldset h4 em {
        display: none; }
    #customer-reviews .fieldset .produkt-papryczki {
      margin-left: 60px; }
      #customer-reviews .fieldset .produkt-papryczki #advice-validate-one-required-Ocena_5,
      #customer-reviews .fieldset .produkt-papryczki #advice-validate-one-required-Ocena_4,
      #customer-reviews .fieldset .produkt-papryczki #advice-validate-one-required-Ocena_3,
      #customer-reviews .fieldset .produkt-papryczki #advice-validate-one-required-Ocena_2 {
        display: none; }
      #customer-reviews .fieldset .produkt-papryczki #advice-validate-one-required-Ocena_1 {
        position: absolute;
        top: 14px;
        left: 0px; }
      #customer-reviews .fieldset .produkt-papryczki label ~ #advice-validate-one-required-Ocena_1 {
        margin-bottom: 20px; }
    #customer-reviews .fieldset .ocena-radio {
      font-size: 14px;
      position: relative;
      margin-right: 10px;
      margin-bottom: 20px; }
      #customer-reviews .fieldset .ocena-radio:after {
        content: '';
        display: table;
        clear: both; }
      #customer-reviews .fieldset .ocena-radio > span {
        display: block;
        float: left; }
    #customer-reviews .fieldset .radio {
      float: right;
      width: 17px;
      height: 17px;
      padding: 0;
      margin: 0 0 0 -17px;
      opacity: 0; }
    #customer-reviews .fieldset .ocena-radio:hover .ocena-papryczki:hover,
    #customer-reviews .fieldset .ocena-radio:hover .ocena-papryczki:hover ~ .ocena-papryczki,
    #customer-reviews .fieldset .radio:checked ~ .ocena-papryczki {
      background-position: 0 -600px; }
    #customer-reviews .fieldset .ocena-papryczki,
    #customer-reviews .fieldset .produkt-papryczki:hover .ocena-papryczki {
      position: relative;
      float: right;
      display: block;
      width: 17px;
      height: 17px;
      background: url(/skin/frontend/gastrro/default/images/icon_sprite.png) 0 -620px no-repeat;
      cursor: pointer; }
    #customer-reviews .fieldset ul.form-list .input-box {
      position: relative; }
      #customer-reviews .fieldset ul.form-list .input-box.produkt-dodaj-recenzje {
        margin-top: 2px;
        padding: 0 150px 0 0; }
      #customer-reviews .fieldset ul.form-list .input-box textarea {
        max-width: none; }
      #customer-reviews .fieldset ul.form-list .input-box .input-text {
        width: 100%; }
  #customer-reviews .buttons-set {
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0px;
    margin: 0px;
    height: 30px; }
    #customer-reviews .buttons-set button {
      height: 30px;
      width: 140px;
      margin: 0px; }
  #customer-reviews dl {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.7; }
    #customer-reviews dl dt .review-meta {
      color: #0867a9;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-size: 14px;
      font-style: italic; }
    #customer-reviews dl dd {
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-style: italic;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #cccccc; }
      #customer-reviews dl dd:last-child {
        border-bottom: none;
        margin-bottom: 0px;
        padding-bottom: 0px; }
      #customer-reviews dl dd .produkt-recenzja-tresc {
        display: block; }
      #customer-reviews dl dd .ratings-table {
        font-family: "Sarala", Tahoma, Arial, sans-serif;
        font-size: 12px;
        width: auto; }
        #customer-reviews dl dd .ratings-table tr th {
          width: 100px;
          font-size: 14px;
          color: #0867a9;
          font-style: italic; }

@media only screen and (max-width: 959px) {
  #customer-reviews .produkt-opis-prawa {
    text-align: left; } }
@media only screen and (max-width: 590px) {
  #customer-reviews .form-add h2 {
    text-align: center; } }
@media only screen and (max-width: 480px) {
  #customer-reviews .buttons-set {
    position: static;
    margin-top: 5px; }
    #customer-reviews .buttons-set button {
      width: 100%; }
  #customer-reviews .fieldset ul.form-list .input-box.produkt-dodaj-recenzje {
    padding: 0; } }
.review-summary-table {
  border-bottom: 1px solid #d4d6e2;
  margin: 0 0 10px; }
  .review-summary-table thead {
    background: transparent; }
    .review-summary-table thead th {
      background: transparent;
      border: none;
      padding: 15px 7px 10px 8px; }
  .review-summary-table tbody th {
    background: #FFFFFF;
    font-size: 12px; }
  .review-summary-table tbody td {
    border: none;
    text-align: center;
    padding: 0; }
    .review-summary-table tbody td label {
      width: 100%;
      display: block;
      padding: 11px 0; }
  .review-summary-table .rating-box .rating-number {
    display: none; }
    .review-summary-table .rating-box .rating-number:after {
      content: "";
      display: inline-block;
      background-position: 0px -599px;
      width: 13px;
      height: 14px;
      margin-left: 5px;
      position: relative;
      top: 2px; }

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 12px; }
  .ratings-table td {
    margin: 0px;
    padding: 0px; }
  .ratings-table th {
    padding: 0 10px 0 0;
    margin: 0px; }
  .ratings-table .rating-box {
    background-position: 0 -620px;
    background-repeat: repeat-x;
    height: 17px;
    overflow: hidden;
    text-indent: -9999px;
    width: 85px; }
    .ratings-table .rating-box .rating {
      background-position: 0 -600px;
      background-repeat: repeat-x;
      float: left;
      height: 17px;
      text-indent: -9999px; }

@media only screen and (max-width: 780px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0; }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%; }
    body.review-product-list .product-view .product-shop .extra-info .ratings-table {
      margin: 10px 0;
      width: 100%; }
      body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
        margin-right: 15px; } }
@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0; }
    body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
      float: none;
      margin-right: 0; } }
@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%; }
    #customer-reviews .fieldset .form-list {
      width: 100%; }
      #customer-reviews .fieldset .form-list .inline-label label,
      #customer-reviews .fieldset .form-list .inline-label .input-box {
        float: none; }
  #customer-reviews .buttons-set {
    width: 100%; }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px; }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px; }
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px; }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%; }
    #customer-reviews .review-summary-table .rating-box .rating {
      display: none; }
    #customer-reviews .review-summary-table .rating-box .rating-number {
      display: inline-block; } }
@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none; } }
/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none; }
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%; }
  .review-product-view .product-review .product-img-box > a {
    width: 100%; }
  .review-product-view .product-review .product-img-box .product-image {
    width: 100%; }

@media only screen and (max-width: 780px) {
  .review-product-view .product-review .product-img-box {
    max-width: 100%; } }
/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 1px solid #EDEDED; }
  .slideshow-container .slideshow {
    width: 100%;
    padding: 0;
    position: relative;
    margin: 0;
    border: 10px solid #FFFFFF; }
    .slideshow-container .slideshow > li {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 0;
      display: block;
      margin: 0; }
      .slideshow-container .slideshow > li:first-child {
        position: static;
        z-index: 100; }
      .slideshow-container .slideshow > li img {
        max-width: 100%;
        width: 100%; }

.slideshow-pager {
  text-align: center;
  width: 100%;
  z-index: 115;
  position: absolute;
  bottom: 0px;
  top: auto;
  overflow: hidden;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .slideshow-pager span {
    font-family: arial;
    width: 44px;
    height: 44px;
    display: inline-block;
    color: #DDDDDD;
    cursor: pointer; }
    .slideshow-pager span:before {
      content: '';
      display: block;
      width: 16px;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-left: -8px;
      margin-top: -8px;
      border-radius: 1px;
      background-color: #FFFFFF;
      position: relative; }
    .slideshow-pager span:hover:before {
      background-color: #4d5867; }
    .slideshow-pager span.cycle-pager-active:before {
      background-color: #424c59; }
  .slideshow-pager > * {
    cursor: pointer; }

.slideshow-prev,
.slideshow-next {
  position: absolute;
  top: 0;
  width: 15%;
  max-width: 80px;
  height: 100%;
  opacity: 0.6;
  z-index: 110;
  cursor: pointer;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none; }
  .slideshow-prev:before,
  .slideshow-next:before {
    content: '';
    width: 0;
    height: 0;
    font-size: 0;
    position: absolute;
    border-style: solid;
    display: block;
    top: 50%;
    margin-top: -15px; }
  .slideshow-prev:hover,
  .slideshow-next:hover {
    opacity: 1; }
  .slideshow-prev.disabled,
  .slideshow-next.disabled {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    opacity: 0.5;
    cursor: default; }

.slideshow-prev {
  left: 8px; }
  .slideshow-prev:before {
    border-width: 15px 15px 15px 0;
    border-color: transparent #FFFFFF transparent transparent;
    top: 50%;
    left: 10px; }
  .slideshow-prev:hover:before {
    border-color: transparent #4d5867 transparent transparent; }

.slideshow-next {
  right: 8px; }
  .slideshow-next:before {
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #FFFFFF;
    top: 50%;
    right: 10px; }
  .slideshow-next:hover:before {
    border-color: transparent transparent transparent #4d5867; }

.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110; }

.cycle-overlay {
  font-family: tahoma, arial;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 120;
  background: black;
  color: white;
  padding: 15px;
  opacity: .5; }

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th,
#m-wishlist-table th {
  text-align: center; }
#wishlist-table tr,
#m-wishlist-table tr {
  position: relative; }
#wishlist-table.clean-table,
#m-wishlist-table.clean-table {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 12px;
  width: 100%; }
  #wishlist-table.clean-table td,
  #m-wishlist-table.clean-table td {
    padding: 10px;
    vertical-align: middle; }
  #wishlist-table.clean-table thead th,
  #m-wishlist-table.clean-table thead th {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 12px; }
#wishlist-table .product-name,
#m-wishlist-table .product-name {
  font-size: 13px;
  margin-bottom: 0;
  padding-left: 60px; }
  #wishlist-table .product-name a,
  #m-wishlist-table .product-name a {
    color: #617795; }
    #wishlist-table .product-name a:hover,
    #m-wishlist-table .product-name a:hover {
      color: #c1151a;
      text-decoration: none; }
#wishlist-table .wishlist-sku,
#m-wishlist-table .wishlist-sku {
  font-size: 13px;
  padding-left: 60px; }
  #wishlist-table .wishlist-sku a,
  #m-wishlist-table .wishlist-sku a {
    color: #0867a9; }
    #wishlist-table .wishlist-sku a:hover,
    #m-wishlist-table .wishlist-sku a:hover {
      color: #c1151a;
      text-decoration: none; }
#wishlist-table .description,
#wishlist-table textarea,
#m-wishlist-table .description,
#m-wishlist-table textarea {
  font-style: italic; }
#wishlist-table textarea,
#m-wishlist-table textarea {
  border: 1px solid #d4d6e2;
  width: 100%;
  min-height: 45px;
  max-height: 80px;
  font-size: 13px;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  max-width: none;
  margin-top: 5px; }
  #wishlist-table textarea::-webkit-input-placeholder,
  #m-wishlist-table textarea::-webkit-input-placeholder {
    text-transform: normal; }
  #wishlist-table textarea:-moz-placeholder,
  #m-wishlist-table textarea:-moz-placeholder {
    text-transform: normal; }
  #wishlist-table textarea::-moz-placeholder,
  #m-wishlist-table textarea::-moz-placeholder {
    text-transform: normal; }
  #wishlist-table textarea:-ms-input-placeholder,
  #m-wishlist-table textarea:-ms-input-placeholder {
    text-transform: normal; }
  #wishlist-table textarea:focus,
  #m-wishlist-table textarea:focus {
    border: 1px solid #888888; }
#wishlist-table .item-manage,
#m-wishlist-table .item-manage {
  text-align: right; }
  #wishlist-table .item-manage .button,
  #m-wishlist-table .item-manage .button {
    height: 30px; }
#wishlist-table .cart-cell,
#m-wishlist-table .cart-cell {
  text-align: center; }
#wishlist-table td.customer-wishlist-item-info .wishlist-product-info,
#m-wishlist-table td.customer-wishlist-item-info .wishlist-product-info {
  position: relative;
  min-height: 55px; }
  #wishlist-table td.customer-wishlist-item-info .wishlist-product-info .product-image,
  #m-wishlist-table td.customer-wishlist-item-info .wishlist-product-info .product-image {
    position: absolute; }
    #wishlist-table td.customer-wishlist-item-info .wishlist-product-info .product-image img,
    #m-wishlist-table td.customer-wishlist-item-info .wishlist-product-info .product-image img {
      width: 45px;
      height: 45px; }
#wishlist-table td.customer-wishlist-item-price,
#m-wishlist-table td.customer-wishlist-item-price {
  text-align: right;
  display: block; }
  #wishlist-table td.customer-wishlist-item-price .add-to-cart-alt,
  #m-wishlist-table td.customer-wishlist-item-price .add-to-cart-alt {
    text-align: center; }
  #wishlist-table td.customer-wishlist-item-price .wishlist-product-price tr,
  #m-wishlist-table td.customer-wishlist-item-price .wishlist-product-price tr {
    border: none;
    text-align: center; }
  #wishlist-table td.customer-wishlist-item-price .wishlist-product-price .cart-cell td,
  #m-wishlist-table td.customer-wishlist-item-price .wishlist-product-price .cart-cell td {
    padding: 0 0 10px 0; }
  #wishlist-table td.customer-wishlist-item-price .wishlist-product-price .wishlist-add-to-cart td,
  #m-wishlist-table td.customer-wishlist-item-price .wishlist-product-price .wishlist-add-to-cart td {
    padding: 0; }
    #wishlist-table td.customer-wishlist-item-price .wishlist-product-price .wishlist-add-to-cart td button,
    #m-wishlist-table td.customer-wishlist-item-price .wishlist-product-price .wishlist-add-to-cart td button {
      margin-left: 5px; }
  #wishlist-table td.customer-wishlist-item-price .price-box,
  #m-wishlist-table td.customer-wishlist-item-price .price-box {
    text-align: center; }
  #wishlist-table td.customer-wishlist-item-price .price-label,
  #wishlist-table td.customer-wishlist-item-price .price-excluding-tax .label,
  #wishlist-table td.customer-wishlist-item-price .price-excluding-tax .p-stara-cena,
  #wishlist-table td.customer-wishlist-item-price .price-including-tax .label,
  #wishlist-table td.customer-wishlist-item-price .price-including-tax .p-stara-cena,
  #m-wishlist-table td.customer-wishlist-item-price .price-label,
  #m-wishlist-table td.customer-wishlist-item-price .price-excluding-tax .label,
  #m-wishlist-table td.customer-wishlist-item-price .price-excluding-tax .p-stara-cena,
  #m-wishlist-table td.customer-wishlist-item-price .price-including-tax .label,
  #m-wishlist-table td.customer-wishlist-item-price .price-including-tax .p-stara-cena {
    display: none; }
  #wishlist-table td.customer-wishlist-item-price .price-excluding-tax,
  #m-wishlist-table td.customer-wishlist-item-price .price-excluding-tax {
    display: block;
    color: #0867a9;
    font-size: 13px; }
    #wishlist-table td.customer-wishlist-item-price .price-excluding-tax:after,
    #m-wishlist-table td.customer-wishlist-item-price .price-excluding-tax:after {
      content: " netto";
      color: #617795;
      font-size: 12px; }
  #wishlist-table td.customer-wishlist-item-price .price-including-tax,
  #m-wishlist-table td.customer-wishlist-item-price .price-including-tax {
    display: block;
    color: #0867a9;
    font-size: 13px; }
    #wishlist-table td.customer-wishlist-item-price .price-including-tax:after,
    #m-wishlist-table td.customer-wishlist-item-price .price-including-tax:after {
      content: " brutto";
      color: #617795; }
  #wishlist-table td.customer-wishlist-item-price a.btn-remove,
  #m-wishlist-table td.customer-wishlist-item-price a.btn-remove {
    margin: 5px 0 0 10px; }
  #wishlist-table td.customer-wishlist-item-price .wishlist-textarea,
  #m-wishlist-table td.customer-wishlist-item-price .wishlist-textarea {
    display: none; }
#wishlist-table td .button,
#wishlist-table td button,
#m-wishlist-table td .button,
#m-wishlist-table td button {
  white-space: normal; }
#wishlist-table .giftregisty-add,
#m-wishlist-table .giftregisty-add {
  margin-top: 5px; }
  #wishlist-table .giftregisty-add .change,
  #m-wishlist-table .giftregisty-add .change {
    display: none; }
  #wishlist-table .giftregisty-add li,
  #m-wishlist-table .giftregisty-add li {
    cursor: pointer;
    color: #3e5881;
    margin-bottom: 3px; }
#wishlist-table .truncated .details,
#m-wishlist-table .truncated .details {
  background: none;
  color: #3e5881; }
#wishlist-table td[data-rwd-label]:before,
#m-wishlist-table td[data-rwd-label]:before {
  display: none; }

#wishlist-view-form .buttons-set,
.my-wishlist .buttons-set {
  text-align: center; }
  #wishlist-view-form .buttons-set .button + .button,
  .my-wishlist .buttons-set .button + .button {
    margin-left: 0px; }
  #wishlist-view-form .buttons-set button,
  .my-wishlist .buttons-set button {
    min-width: 0px;
    margin-left: 0px; }
    #wishlist-view-form .buttons-set button:hover, #wishlist-view-form .buttons-set button:active,
    .my-wishlist .buttons-set button:hover,
    .my-wishlist .buttons-set button:active {
      background-color: transparent;
      top: 0px; }
    #wishlist-view-form .buttons-set button span,
    .my-wishlist .buttons-set button span {
      color: #0867a9;
      text-transform: lowercase;
      font-size: 13px;
      text-decoration: underline; }
    #wishlist-view-form .buttons-set button:hover span,
    .my-wishlist .buttons-set button:hover span {
      color: #c1151a;
      text-decoration: underline; }
    #wishlist-view-form .buttons-set button .wishlist-btn,
    .my-wishlist .buttons-set button .wishlist-btn {
      display: inline-block;
      width: 20px;
      height: 20px;
      position: relative;
      top: 5px;
      left: 0px;
      margin-right: 2px; }
  #wishlist-view-form .buttons-set .btn-update .wishlist-btn,
  .my-wishlist .buttons-set .btn-update .wishlist-btn {
    background-position: 0px -965px;
    top: 7px; }
  #wishlist-view-form .buttons-set .btn-update:hover .wishlist-btn,
  .my-wishlist .buttons-set .btn-update:hover .wishlist-btn {
    background-position: -35px -965px; }
  #wishlist-view-form .buttons-set .btn-add .wishlist-btn,
  .my-wishlist .buttons-set .btn-add .wishlist-btn {
    background-position: 0px -1140px; }
  #wishlist-view-form .buttons-set .btn-add:hover .wishlist-btn,
  .my-wishlist .buttons-set .btn-add:hover .wishlist-btn {
    background-position: -35px -1140px; }
  #wishlist-view-form .buttons-set .btn-share .wishlist-btn,
  .my-wishlist .buttons-set .btn-share .wishlist-btn {
    background-position: -70px -1000px;
    top: 8px; }
  #wishlist-view-form .buttons-set .btn-share:hover .wishlist-btn,
  .my-wishlist .buttons-set .btn-share:hover .wishlist-btn {
    background-position: -105px -1000px; }

@media only screen and (max-width: 590px) {
  #wishlist-table .wishlist-product-price .cart-cell td,
  #m-wishlist-table .wishlist-product-price .cart-cell td {
    text-align: center; }
  #wishlist-table .wishlist-product-price tr,
  #m-wishlist-table .wishlist-product-price tr {
    display: block; }
  #wishlist-table .wishlist-product-price td,
  #m-wishlist-table .wishlist-product-price td {
    display: inline-block; }
  #wishlist-table > tbody > tr, #wishlist-table > tbody > tr > td,
  #m-wishlist-table > tbody > tr,
  #m-wishlist-table > tbody > tr > td {
    display: block;
    width: 100%; }
  #wishlist-table th.customer-wishlist-item-price,
  #m-wishlist-table th.customer-wishlist-item-price {
    display: none; }
  #wishlist-table th.customer-wishlist-item-info,
  #m-wishlist-table th.customer-wishlist-item-info {
    margin: 0px; }
  #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-price,
  #m-wishlist-table td.customer-wishlist-item-info,
  #m-wishlist-table td.customer-wishlist-item-price {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide; }
  #wishlist-table td.customer-wishlist-item-info .wishlist-product-info,
  #m-wishlist-table td.customer-wishlist-item-info .wishlist-product-info {
    min-height: 50px; }
  #wishlist-table td.customer-wishlist-item-price,
  #m-wishlist-table td.customer-wishlist-item-price {
    text-align: left;
    padding: 0 10px 10px 10px; }
    #wishlist-table td.customer-wishlist-item-price .cart-cell,
    #m-wishlist-table td.customer-wishlist-item-price .cart-cell {
      text-align: left; }
    #wishlist-table td.customer-wishlist-item-price .price-box,
    #m-wishlist-table td.customer-wishlist-item-price .price-box {
      margin-top: 0; }
    #wishlist-table td.customer-wishlist-item-price .wishlist-textarea,
    #m-wishlist-table td.customer-wishlist-item-price .wishlist-textarea {
      display: inline-block;
      margin-top: 10px; }
    #wishlist-table td.customer-wishlist-item-price .price-excluding-tax,
    #m-wishlist-table td.customer-wishlist-item-price .price-excluding-tax {
      display: inline;
      margin-right: 10px; }
    #wishlist-table td.customer-wishlist-item-price .price-including-tax,
    #m-wishlist-table td.customer-wishlist-item-price .price-including-tax {
      display: inline; } }
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px; }
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px; }
.block-wishlist .price-box {
  float: left;
  margin: 0; }
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px; }
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED; }

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: inline-block; }
  @media only screen and (max-width: 780px) {
    .header-minicart {
      display: block; } }
  .header-minicart .minicart-message {
    display: block;
    padding: 10px; }
  .header-minicart .empty {
    padding: 10px;
    text-align: center; }
  .header-minicart .minicart-wrapper {
    clear: both;
    position: relative; }
    .header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
      content: '';
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      display: none; }
    .header-minicart .minicart-wrapper:before {
      background-color: white;
      opacity: 0.8;
      z-index: 2; }
    .header-minicart .minicart-wrapper:after {
      background-image: url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/opc-ajax-loader.gif");
      background-repeat: no-repeat;
      background-position: center;
      z-index: 3; }
    .header-minicart .minicart-wrapper.loading {
      position: relative; }
      .header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
        display: block; }
  .header-minicart .block-cart {
    display: none; }
  .header-minicart .block-subtitle {
    color: #586576;
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.4;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0px; }
    .header-minicart .block-subtitle .close {
      width: 40px;
      float: right;
      display: block;
      color: #556c94;
      text-decoration: none;
      font-weight: normal;
      font-size: 30px;
      position: absolute;
      top: -8px;
      right: -3px; }
  .header-minicart .mini-products-list {
    padding: 0px; }
    .header-minicart .mini-products-list li {
      padding: 0px;
      border-bottom: solid 1px #CCCCCC;
      position: relative;
      background-color: #fff; }
      .header-minicart .mini-products-list li > a {
        display: block;
        height: auto;
        width: 50px;
        position: absolute;
        top: 50%;
        margin-top: -25px; }
        .header-minicart .mini-products-list li > a img {
          border: none; }
        .header-minicart .mini-products-list li > a:active, .header-minicart .mini-products-list li > a:hover {
          border: none; }
      .header-minicart .mini-products-list li .product-details {
        background: #EDEDED;
        width: 238px;
        float: right;
        padding: 10px;
        border-left: solid 1px #CCCCCC; }
  .header-minicart .product-details .product-name {
    padding-top: 0px; }
    .header-minicart .product-details .product-name a {
      color: #3e5881; }
  .header-minicart .info-wrapper th {
    padding-right: 10px; }
  .header-minicart .info-wrapper td {
    color: #6c839f;
    clear: right; }
  .header-minicart .info-wrapper .qty-wrapper td {
    height: 33px;
    line-height: 33px; }
  .header-minicart .info-wrapper .qty {
    padding-left: 4px;
    padding-right: 4px;
    margin-right: 2px;
    width: 3.2em;
    text-align: center;
    height: 30px; }
  .header-minicart .info-wrapper .quantity-button {
    z-index: 1000;
    line-height: 15px;
    padding: 5px 10px;
    opacity: 0;
    vertical-align: top;
    height: 32px;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -moz-transition-duration: 100ms;
    -o-transition-duration: 100ms;
    -webkit-transition-duration: 100ms;
    transition-duration: 100ms; }
    .header-minicart .info-wrapper .quantity-button[disabled] {
      cursor: default; }
    .header-minicart .info-wrapper .quantity-button.visible {
      opacity: 1; }
  .header-minicart .subtotal {
    background-color: #DDDDDD;
    text-align: center;
    line-height: 2em; }
    .header-minicart .subtotal .label {
      color: white;
      text-transform: uppercase; }
    .header-minicart .subtotal .price {
      color: #6c839f; }
  .header-minicart .minicart-actions {
    margin-top: 0px;
    overflow: hidden;
    position: relative;
    text-align: center; }
    .header-minicart .minicart-actions .checkout-button {
      min-width: 145px; }
    .header-minicart .minicart-actions .cart-link {
      height: 33px;
      line-height: 39px;
      text-transform: uppercase;
      font-size: 13px; }
    .header-minicart .minicart-actions .paypal-logo .paypal-or {
      line-height: 1.6; }
  .header-minicart #minicart-error-message {
    text-align: center;
    color: red;
    display: none; }
  .header-minicart #minicart-success-message {
    text-align: center;
    color: green;
    display: none; }
  .header-minicart .jcarousel-control-prev,
  .header-minicart .jcarousel-control-next {
    display: none; }

.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block; }

@media only screen and (min-width: 781px) {
  .checkout-types.minicart {
    float: none;
    text-align: center; } }
@media only screen and (max-width: 480px) {
  .header-minicart a.skip-cart {
    z-index: 1; } }
@media only screen and (max-width: 780px) {
  .header-minicart .subtotal .label {
    color: #556c94; }
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED; }
  .header-minicart .quantity-button {
    float: none; }
  .header-minicart .header-minicart .block-cart {
    padding: 15px; }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px; }
  .header-minicart .minicart-actions {
    padding-bottom: 33px; }
    .header-minicart .minicart-actions .cart-link {
      bottom: 0;
      right: 10px;
      position: absolute; }
    .header-minicart .minicart-actions .checkout-types.minicart li {
      display: inline-block; }
      .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
        display: inline; }
      .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
        display: inline-block;
        vertical-align: top; }
      .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
        width: auto;
        float: none;
        display: inline;
        margin: 0 10px 5px 10px;
        line-height: 40px; } }
@media only screen and (max-width: 740px) {
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0; }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6; } }
@media only screen and (max-width: 590px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%; } }
/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  display: none !important;
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200; }
  .search-autocomplete ul {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #FFFFFF;
    border: 1px solid #d4d6e2;
    left: 0;
    padding-left: 0;
    position: absolute;
    top: 0;
    width: 100%; }
    .search-autocomplete ul li {
      border-bottom: 1px solid #fafafc;
      color: #3e5881;
      cursor: pointer;
      font-size: 12px;
      padding: 4px 6px;
      text-align: left; }
      .search-autocomplete ul li:hover {
        color: #c1151a; }
      .search-autocomplete ul li.selected {
        background-color: #3e5881;
        color: white; }
      .search-autocomplete ul li .amount {
        float: right;
        font-weight: bold; }
      .search-autocomplete ul li:last-child {
        border-bottom: none; }
  .search-autocomplete:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #3e5881;
    border-top: none;
    left: 50%;
    top: -7px; }

/* ============================================ *
 * Search - Advanced
 * ============================================ */
.advanced-search {
  background: #fafafc;
  border: 1px solid #EDEDED;
  padding: 30px; }
  .advanced-search select.multiselect option {
    border-bottom: 1px solid #EDEDED;
    padding: 2px 5px; }

@media only screen and (max-width: 480px) {
  .advanced-search {
    padding: 15px; } }
/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review {
  position: relative; }
  .product-review h2, .product-review h3, .product-review p {
    color: #0867a9;
    font-size: 18px;
    margin-bottom: 0px;
    text-transform: none; }
    .product-review h2 a, .product-review h3 a, .product-review p a {
      color: #0867a9; }
      .product-review h2 a:hover, .product-review h3 a:hover, .product-review p a:hover {
        color: #c1151a;
        text-decoration: none; }
    .product-review h2.label, .product-review h3.label, .product-review p.label {
      display: inline;
      color: #5e6d81;
      font-size: 14px;
      line-height: 1.5; }
  .product-review .product-img-box {
    float: none;
    position: absolute;
    width: 130px; }
  .product-review .product-details {
    padding-left: 145px;
    min-height: 115px;
    margin-bottom: 20px; }
  .product-review .ratings {
    display: inline-block; }
    .product-review .ratings .rating-box {
      float: left; }
    .product-review .ratings .rating-links {
      float: left;
      height: 20px;
      margin-left: 10px;
      color: #5e6d81;
      font-size: 14px;
      line-height: 1.5; }
    .product-review .ratings:after {
      content: '';
      display: table;
      clear: both; }
  .product-review dl {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    margin-top: 10px;
    line-height: 1.7; }
    .product-review dl dt .review-meta {
      color: #0867a9;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-size: 14px;
      font-style: italic; }
    .product-review dl dd {
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      font-style: italic;
      font-size: 14px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #cccccc; }
      .product-review dl dd:last-child {
        border-bottom: none;
        margin-bottom: 0px;
        padding-bottom: 0px; }
      .product-review dl dd .produkt-recenzja-tresc {
        display: block; }
      .product-review dl dd .ratings-table {
        font-family: "Sarala", Tahoma, Arial, sans-serif;
        font-size: 12px;
        width: auto; }
        .product-review dl dd .ratings-table tr {
          border: none; }
          .product-review dl dd .ratings-table tr td {
            margin: 0px;
            padding: 0px; }
          .product-review dl dd .ratings-table tr th {
            width: 100px;
            font-size: 14px;
            color: #0867a9;
            font-style: italic;
            margin: 0px;
            padding: 0 10px 0 0; }

@media only screen and (min-width: 781px) {
  .product-review .ratings-table tr {
    float: none; } }
@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px; } }
@media only screen and (max-width: 320px) {
  .product-review .ratings-table tr {
    float: none; } }
/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none; }
.cms-page-view .page-title h1,
.cms-page-view .page-head h1,
.cms-no-route .page-title h1,
.cms-no-route .page-head h1 {
  margin-bottom: 35px; }
.cms-page-view .std .tytul,
.cms-no-route .std .tytul {
  margin-top: 35px; }
.cms-page-view .std .tytul.no-margin,
.cms-no-route .std .tytul.no-margin {
  margin-top: 0px; }
.cms-page-view .std p.no-margin,
.cms-page-view .std ol.no-margin,
.cms-page-view .std ul.no-margin,
.cms-no-route .std p.no-margin,
.cms-no-route .std ol.no-margin,
.cms-no-route .std ul.no-margin {
  margin-bottom: 0px; }
.cms-page-view .std .c-person.no-margin,
.cms-no-route .std .c-person.no-margin {
  margin: 0px; }
.cms-page-view .std p.italic,
.cms-page-view .std span.italic,
.cms-no-route .std p.italic,
.cms-no-route .std span.italic {
  font-style: italic;
  font-weight: bold; }
.cms-page-view .std a,
.cms-no-route .std a {
  color: #0867a9;
  text-decoration: underline; }
  .cms-page-view .std a:hover,
  .cms-no-route .std a:hover {
    color: #c1151a; }
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%; }
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #0867a9; }
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #0867a9; }
.cms-page-view .std h3,
.cms-no-route .std h3 {
  color: #0867a9;
  text-transform: none;
  font-size: 18px;
  margin-top: 35px;
  margin-bottom: 15px; }
  .cms-page-view .std h3.no-margin,
  .cms-no-route .std h3.no-margin {
    margin-top: 0px; }
.cms-page-view .std h4,
.cms-no-route .std h4 {
  color: #0867a9;
  font-weight: bold; }
.cms-page-view .std ul,
.cms-no-route .std ul {
  margin: 0 0 1.5em; }
.cms-page-view .std ol li,
.cms-no-route .std ol li {
  color: #0867a9;
  font-weight: bold; }
  .cms-page-view .std ol li span,
  .cms-no-route .std ol li span {
    color: #556c94;
    font-weight: normal; }
  .cms-page-view .std ol li > ul,
  .cms-no-route .std ol li > ul {
    margin: 0; }
.cms-page-view .std li,
.cms-no-route .std li {
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 14px;
  line-height: 24px; }
.cms-page-view .std .data-table,
.cms-no-route .std .data-table {
  border-left: 1px solid #d4d6e2;
  border-right: 1px solid #d4d6e2;
  margin: 0px auto 40px;
  max-width: 700px; }
  .cms-page-view .std .data-table thead,
  .cms-no-route .std .data-table thead {
    border-top: 1px solid #d4d6e2; }
  .cms-page-view .std .data-table td, .cms-page-view .std .data-table th,
  .cms-no-route .std .data-table td,
  .cms-no-route .std .data-table th {
    width: auto;
    vertical-align: middle; }
    .cms-page-view .std .data-table td.a-center p, .cms-page-view .std .data-table th.a-center p,
    .cms-no-route .std .data-table td.a-center p,
    .cms-no-route .std .data-table th.a-center p {
      text-align: center; }
    .cms-page-view .std .data-table td.a-left p, .cms-page-view .std .data-table th.a-left p,
    .cms-no-route .std .data-table td.a-left p,
    .cms-no-route .std .data-table th.a-left p {
      text-align: left; }
    .cms-page-view .std .data-table td.a-right p, .cms-page-view .std .data-table th.a-right p,
    .cms-no-route .std .data-table td.a-right p,
    .cms-no-route .std .data-table th.a-right p {
      text-align: right; }
    .cms-page-view .std .data-table td p, .cms-page-view .std .data-table th p,
    .cms-no-route .std .data-table td p,
    .cms-no-route .std .data-table th p {
      margin: 0px; }
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both; }

.cms-no-route .std img {
  width: 100%; }

.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px; }
  .cms-page-view .std .messages ul,
  .cms-home .std .messages ul,
  .cms-no-route .std .messages ul {
    margin-bottom: 0; }
  .cms-page-view .std .messages li,
  .cms-home .std .messages li,
  .cms-no-route .std .messages li {
    list-style: none;
    margin-left: 0;
    font-style: normal;
    font-family: "Sarala", Tahoma, Arial, sans-serif; }

#accordion .toggle-tabs {
  display: none; }
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #556c94;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #d4d6e2;
  position: relative;
  color: #fff;
  background-color: #617795;
  display: block; }
  #accordion > dl > dt:hover {
    color: #617795;
    background-color: #f7f7fc; }
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #d4d6e2; }
  #accordion > dl > dd .tab-content > ul {
    list-style: disc outside url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/kropka.png"); }
    #accordion > dl > dd .tab-content > ul li {
      margin-left: 2em; }
  #accordion > dl > dd p {
    margin-bottom: 10px; }
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px; }
#accordion li {
  position: relative;
  overflow: hidden; }
  #accordion li .plusimage h2 {
    margin-right: 10px; }

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0; }
  .page-sitemap .links a {
    position: relative; }
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px; }
  .page-sitemap .sitemap li {
    margin: 3px 0; }

.contacts-index-index h1 {
  border: none; }

#contactForm {
  padding-left: 40px; }
  #contactForm h2 {
    display: none; }
  #contactForm:after {
    content: '';
    display: table;
    clear: both; }
  #contactForm .fieldset .legend + .required {
    margin: 0; }

@media only screen and (max-width: 780px) {
  #contactForm {
    padding-left: 0; } }
/* Page Error */
.cms-no-route .page-title h1 {
  text-transform: lowercase;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 10px; }
.cms-no-route h2 {
  text-transform: none;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0px; }
.cms-no-route .std .error-page {
  position: relative; }
  .cms-no-route .std .error-page:after {
    content: '';
    display: table;
    clear: both; }
.cms-no-route .std .error-content {
  padding-right: 50%; }
  .cms-no-route .std .error-content > ul:last-child {
    margin-bottom: 0px; }
.cms-no-route .std .h3 {
  margin-top: 0px; }
.cms-no-route .std .error-img {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
  max-width: 570px;
  margin-bottom: 0px; }

@media only screen and (max-width: 780px) {
  .cms-no-route .page-title h1 {
    font-size: 45px; }
  .cms-no-route .std .error-content.error-2 {
    padding-right: 0px; }
  .cms-no-route .std .error-img {
    max-width: 300px;
    top: 0;
    bottom: auto; } }
@media only screen and (max-width: 590px) {
  .cms-no-route .page-title h1 {
    font-size: 30px; }
  .cms-no-route .std h2 {
    text-align: center; }
  .cms-no-route .std .error-content.error-1 {
    padding-right: 0px; }
  .cms-no-route .std .error-img {
    position: static;
    margin: 10px auto 0;
    width: auto;
    max-width: 300px; } }
.cms-page-view .form .form-list {
  list-style: none; }
  .cms-page-view .form .form-list li {
    margin-left: 0;
    max-width: 450px; }
.cms-page-view .form button {
  min-width: 150px; }

.catalogues:after {
  content: '';
  display: table;
  clear: both; }
.catalogues .catalogue {
  float: left;
  width: 20%;
  text-align: center;
  margin: 20px 0; }
  .catalogues .catalogue.no-margin {
    margin-bottom: 0px; }
  .catalogues .catalogue h4 {
    padding: 0 15px; }
  .catalogues .catalogue a {
    display: block;
    text-decoration: none; }
    .catalogues .catalogue a img {
      display: inline; }
    .catalogues .catalogue a.catalogue-img {
      overflow: hidden;
      position: relative;
      transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
      -webkit-transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
      -moz-transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1);
      -o-transition: all 3000ms cubic-bezier(0.19, 1, 0.22, 1); }
      .catalogues .catalogue a.catalogue-img:after {
        background: rgba(255, 255, 255, 0);
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(53%, rgba(246, 246, 246, 0.53)), color-stop(100%, white));
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, white 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 0.53) 53%, #ffffff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
        content: "";
        height: 150%;
        left: -100%;
        opacity: .2;
        position: absolute;
        top: -70px;
        transform: rotate(35deg);
        -webkit-transform: rotate(35deg);
        -moz-transform: rotate(35deg);
        -o-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        transition: all 700ms ease-out;
        -webkit-transition: all 700ms ease-out;
        -moz-transition: all 700ms ease-out;
        -o-transition: all 700ms ease-out;
        width: 100px;
        z-index: 10; }
  .catalogues .catalogue:hover a {
    color: #c1151a; }
  .catalogues .catalogue:hover a.catalogue-img:after {
    left: 100%; }

@media only screen and (max-width: 780px) {
  .catalogues .catalogue {
    width: 25%; } }
@media only screen and (max-width: 590px) {
  .catalogues .catalogue {
    width: 33.333%; } }
@media only screen and (max-width: 480px) {
  .catalogues .catalogue {
    width: 50%; }

  .cms-czesci-zamienne .catalogues .catalogue {
    float: none;
    margin: 0 auto; } }
.cms-czesci-zamienne .buttons-set {
  text-align: left;
  margin: 0px;
  padding: 0px; }
  .cms-czesci-zamienne .buttons-set .button {
    float: none;
    min-width: 200px; }

.cms-page-view .c-person,
.cms-wyceny .std .c-person,
.cms-finansowanie .std .c-person,
.cms-czesci-zamienne .std .c-person,
.cms-reklamacje-i-zwroty .std .c-person {
  text-align: left; }

.cms-page-view .std h4 {
  color: #0867a9;
  font-size: 15px;
  text-transform: none;
  font-weight: normal; }

.cms-page-view .std h5 {
  color: #556c94;
  font-size: 14px;
  text-transform: none;
  font-weight: bold;
  text-decoration: underline; }

.c-person,
.cms-kontakt .c-person {
  text-align: center;
  margin: 0 0 30px 0;
  padding: 0 20px;
  height: auto; }
  .c-person h3,
  .cms-kontakt .c-person h3 {
    margin: 10px 0 0 0;
    line-height: 1.5; }
  .c-person .c-tytul-info,
  .cms-kontakt .c-person .c-tytul-info {
    margin: 0;
    font-style: italic;
    font-size: 13px;
    color: #c0c2d2;
    line-height: 1.5;
    text-align: center; }
  .c-person h4,
  .cms-kontakt .c-person h4 {
    text-transform: none;
    color: #0867a9;
    font-size: 14px;
    margin: 10px 0 5px 0;
    font-weight: normal;
    line-height: 1.5; }
  .c-person .c-person-content,
  .cms-kontakt .c-person .c-person-content {
    display: inline-block;
    position: relative; }
    .c-person .c-person-content p,
    .cms-kontakt .c-person .c-person-content p {
      margin: 0 0 0 24px;
      font-size: 13px;
      color: #556c94;
      line-height: 1.5;
      font-style: normal; }
    .c-person .c-person-content .icon,
    .cms-kontakt .c-person .c-person-content .icon {
      width: 15px;
      height: 15px;
      position: absolute;
      top: 50%;
      left: 0;
      margin: -7px 0 0 0; }
      .c-person .c-person-content .icon.tel,
      .cms-kontakt .c-person .c-person-content .icon.tel {
        background-position: -70px -1035px; }
      .c-person .c-person-content .icon.email,
      .cms-kontakt .c-person .c-person-content .icon.email {
        background-position: -105px -1035px; }
      .c-person .c-person-content .icon.address,
      .cms-kontakt .c-person .c-person-content .icon.address {
        background-position: -70px -1070px; }

.cms-page-view .std .content:after {
  content: '';
  display: table;
  clear: both; }
.cms-page-view .std .content .left {
  padding-right: 15px; }
.cms-page-view .std .content .right {
  padding-left: 15px; }

.cms-finansowanie .std .left,
.cms-finansowanie .std .right {
  width: 50%; }

@media only screen and (max-width: 780px) {
  .cms-finansowanie .std .left,
  .cms-finansowanie .std .right {
    width: 100%;
    float: none;
    padding: 0px; } }
.cms-kontakt .contact .c-infolinia {
  background-color: #f7f7fc;
  border: 1px solid #d4d6e2;
  padding: 20px;
  margin-bottom: 20px; }
  .cms-kontakt .contact .c-infolinia:after {
    content: '';
    display: table;
    clear: both; }
  .cms-kontakt .contact .c-infolinia .c-box {
    width: 50%;
    float: left; }
    .cms-kontakt .contact .c-infolinia .c-box p {
      text-align: center;
      font-size: 16px;
      text-transform: uppercase;
      font-weight: bold;
      color: #556c94; }
      .cms-kontakt .contact .c-infolinia .c-box p span {
        text-transform: lowercase;
        font-size: 26px;
        color: #0867a9; }
      .cms-kontakt .contact .c-infolinia .c-box p a {
        text-decoration: none; }
.cms-kontakt .contact p {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-style: normal; }
.cms-kontakt .contact .left {
  width: 25%; }
  .cms-kontakt .contact .left h2 {
    color: #0867a9;
    text-transform: none;
    font-size: 18px;
    margin: 0 0 15px 0; }
.cms-kontakt .contact .right {
  width: 75%;
  border-left: 1px solid #c0c2d2; }
.cms-kontakt .contact .form {
  display: none; }
.cms-kontakt .contact .tytul h2 {
  margin: 0;
  color: #0867a9; }
.cms-kontakt .contact .c-info {
  position: relative;
  margin-bottom: 15px; }
  .cms-kontakt .contact .c-info p {
    margin: 0 0 0 35px;
    font-size: 13px;
    line-height: 1.5;
    font-style: normal; }
  .cms-kontakt .contact .c-info .icon {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 0;
    margin: -11px 0 0 0; }
  .cms-kontakt .contact .c-info.address .icon {
    background-position: -105px -790px; }
  .cms-kontakt .contact .c-info.tel .icon {
    background-position: -105px -825px; }
  .cms-kontakt .contact .c-info.email .icon {
    background-position: -105px -860px; }
  .cms-kontakt .contact .c-info.info .icon {
    background-position: -105px -895px; }
  .cms-kontakt .contact .c-info.hours .icon {
    background-position: -105px -930px; }
.cms-kontakt .contact .c-contacts {
  line-height: 1.5;
  font-style: normal; }
  .cms-kontakt .contact .c-contacts:after {
    content: '';
    display: table;
    clear: both; }
  .cms-kontakt .contact .c-contacts .c-person {
    width: 20%;
    float: left; }
.cms-kontakt .contact .c-person .c-icon-box {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  max-width: 90px;
  max-height: 90px; }
.cms-kontakt .contact .c-person .c-icon {
  text-align: center;
  overflow: hidden; }
  .cms-kontakt .contact .c-person .c-icon .c-person-icon {
    margin: 0;
    padding: 0; }
    .cms-kontakt .contact .c-person .c-icon .c-person-icon img {
      width: 100%;
      height: 100%; }
.cms-kontakt .contact .content {
  margin-top: 30px;
  padding: 30px;
  background-color: #f7f7fc;
  border: 1px solid #d4d6e2;
  position: relative; }
  .cms-kontakt .contact .content .c-address {
    text-align: left;
    position: absolute;
    width: 260px;
    top: 100px;
    left: 35px; }
    .cms-kontakt .contact .content .c-address h2 {
      text-transform: none; }
  .cms-kontakt .contact .content .c-map {
    margin-left: 260px;
    padding-left: 30px;
    border-left: 1px solid #d4d6e2; }
  .cms-kontakt .contact .content #map-canvas {
    display: none;
    height: 400px;
    width: 400px; }

@media only screen and (max-width: 979px) {
  .cms-kontakt .contact .c-infolinia .c-box p span {
    display: block; }
  .cms-kontakt .contact .c-contacts .c-person {
    width: 33.333%; }
  .cms-kontakt .contact .content .c-address {
    width: auto;
    position: relative;
    margin-left: 20%;
    top: 0;
    left: 0; }
    .cms-kontakt .contact .content .c-address:after {
      content: '';
      display: table;
      clear: both; }
    .cms-kontakt .contact .content .c-address h2 {
      margin-left: -20%;
      text-align: center; }
    .cms-kontakt .contact .content .c-address .c-info {
      width: 50%; }
      .cms-kontakt .contact .content .c-address .c-info.address, .cms-kontakt .contact .content .c-address .c-info.tel, .cms-kontakt .contact .content .c-address .c-info.email {
        float: left; }
      .cms-kontakt .contact .content .c-address .c-info.info, .cms-kontakt .contact .content .c-address .c-info.hours {
        float: right; }
  .cms-kontakt .contact .content .c-map {
    margin-left: 0px;
    padding-left: 0px;
    padding-top: 30px;
    margin-top: 30px;
    border-left: none;
    border-top: 1px solid #d4d6e2; }
  .cms-kontakt .contact .content #map-canvas {
    display: none;
    height: 400px;
    width: 400px; } }
@media only screen and (max-width: 780px) {
  .cms-kontakt .page-title h1 {
    margin-bottom: 0px; }
  .cms-kontakt .contact .c-infolinia .c-box p {
    font-size: 14px; }
    .cms-kontakt .contact .c-infolinia .c-box p span {
      font-size: 22px; }
  .cms-kontakt .contact .c-contacts .c-person {
    width: 50%; }
    .cms-kontakt .contact .c-contacts .c-person .c-icon-box {
      width: 50px;
      height: 50px; }
    .cms-kontakt .contact .c-contacts .c-person .c-tytul h3 {
      margin: 0px; }
  .cms-kontakt .contact .content {
    margin-top: 0px; }
    .cms-kontakt .contact .content .c-address {
      margin-left: 15%; }
      .cms-kontakt .contact .content .c-address h2 {
        margin-left: -15%; } }
@media only screen and (max-width: 590px) {
  .cms-kontakt .contact .c-infolinia .c-box {
    width: 100%;
    float: none; }
    .cms-kontakt .contact .c-infolinia .c-box p {
      font-size: 13px; }
      .cms-kontakt .contact .c-infolinia .c-box p span {
        display: inline;
        font-size: 18px; }
  .cms-kontakt .contact .c-contacts .c-person {
    /*                    position: relative;
                        width: 100%;
                        float: none;
                        text-align: left;*/ }
  .cms-kontakt .contact .content {
    overflow: hidden; }
    .cms-kontakt .contact .content .c-address {
      position: relative;
      left: 50%;
      margin-left: -80px;
      width: auto; }
      .cms-kontakt .contact .content .c-address h2 {
        margin-left: 0px;
        text-align: left; }
      .cms-kontakt .contact .content .c-address .c-info.address, .cms-kontakt .contact .content .c-address .c-info.tel, .cms-kontakt .contact .content .c-address .c-info.email, .cms-kontakt .contact .content .c-address .c-info.info, .cms-kontakt .contact .content .c-address .c-info.hours {
        float: none;
        width: auto; } }
@media only screen and (max-width: 480px) {
  .cms-kontakt .contact .c-contacts .c-person {
    position: relative;
    width: 100%;
    float: none;
    text-align: left; }
    .cms-kontakt .contact .c-contacts .c-person .c-icon-box {
      margin: 0;
      position: absolute;
      top: -15px;
      left: 10px; }
    .cms-kontakt .contact .c-contacts .c-person .c-tytul h3 {
      margin-left: 35px; }
    .cms-kontakt .contact .c-contacts .c-person .c-tytul-info {
      width: 250px; } }
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #c1151a;
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase; }

.map-info {
  white-space: nowrap; }

.catalog-product-view .map-info {
  white-space: normal; }
  .catalog-product-view .map-info > span {
    float: right;
    margin-bottom: 5px; }
  .catalog-product-view .map-info .price-box.map-info > a {
    float: right;
    width: 100%; }

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie {
  padding: 0px 20px 0px 20px; }
  .notice-cookie .notice-inner {
    padding: 20px 0 20px 110px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    line-height: 11px;
    min-height: 70px;
    background-image: url("https://www.gastrro.pl/skin/frontend/gastrro/default/images/rodo.png");
    background-position: left;
    background-repeat: no-repeat;
    position: relative; }
    .notice-cookie .notice-inner .notice-text {
      max-width: 100%;
      text-align: left; }
      .notice-cookie .notice-inner .notice-text > div:after {
        content: '';
        display: table;
        clear: both; }
  .notice-cookie p {
    margin-bottom: 0;
    padding-bottom: 14.5px;
    line-height: 1.3; }
    .notice-cookie p a {
      color: #E6E6E6;
      text-decoration: underline; }
      .notice-cookie p a:hover {
        color: #fff;
        cursor: pointer;
        text-decoration: underline; }
  .notice-cookie .cookie-info {
    padding-bottom: 5px; }
  .notice-cookie .cookie-akcept {
    display: block;
    padding-bottom: 0px;
    margin-top: -5px;
    position: absolute;
    bottom: 35px;
    right: 0px; }
    .notice-cookie .cookie-akcept button {
      padding: 3px 7px 3px 30px;
      position: relative; }
    .notice-cookie .cookie-akcept .cookie-ikona {
      background-position: 0px -685px;
      width: 18px;
      height: 15px;
      position: absolute;
      top: 6px;
      left: 7px; }
    .notice-cookie .cookie-akcept:hover .cookie-ikona {
      background-position: -35px -685px; }

@media only screen and (max-width: 640px) {
  .notice-cookie {
    padding: 10px; }
    .notice-cookie .notice-inner {
      background-image: none;
      padding: 0px; }
      .notice-cookie .notice-inner .notice-text {
        text-align: center; }
      .notice-cookie .notice-inner .cookie-akcept {
        position: static;
        margin-top: 10px; } }
/* ============================================ *
 * Tags
 * ============================================ */
#addTagForm .form-add {
  margin-top: 10px;
  max-width: 470px;
  overflow: hidden; }
  #addTagForm .form-add:after {
    content: '';
    display: table;
    clear: both; }
  #addTagForm .form-add .input-box {
    padding: 0 150px 0 0;
    margin-top: 2px;
    position: relative; }
    #addTagForm .form-add .input-box input {
      width: 100%; }
    #addTagForm .form-add .input-box .buttons-set {
      position: absolute;
      right: 0;
      top: 0;
      padding: 0px;
      margin: 0px;
      height: 30px;
      border: none; }
      #addTagForm .form-add .input-box .buttons-set button {
        width: 140px;
        height: 30px;
        margin: 0px; }

@media only screen and (max-width: 480px) {
  #addTagForm .form-add .input-box {
    padding: 0; }
    #addTagForm .form-add .input-box input {
      width: 100%; }
    #addTagForm .form-add .input-box .buttons-set {
      position: static;
      margin-top: 5px; }
      #addTagForm .form-add .input-box .buttons-set button {
        width: 100%; } }
.product-tags {
  background-color: #fafafc;
  border: 1px solid #d4d6e2;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%; }

.product-tags li {
  float: left;
  margin-right: 15px; }

.product-tags li.last {
  margin-right: 0px; }

.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px; }

.tags-list > li {
  float: left;
  margin-right: 10px; }

.block-tags .actions > a {
  font-size: 12px; }

.my-tag-edit .button.btn-remove {
  padding: 0; }
  .my-tag-edit .button.btn-remove:after {
    color: white; }

@media only screen and (max-width: 780px) {
  .tags-list > li,
  .tags-list {
    float: none; } }
/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px; }

.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px; }

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%; }

.registered-users .captcha-image {
  margin: 0; }

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px; }

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear; }

.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%; }

.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px; }

.captcha-img {
  border: 20px solid #bbb; }

.captcha-input-container {
  margin-bottom: 10px; }

.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both; }
  .control.newsletter-box:after, .captcha-input-container:after, .captcha-img-container:after {
    content: '';
    content: '';
    display: table;
    clear: both; }

/* ============================================ *
 * Checkout Billing Fix to place the Captcha properly
 * ============================================ */
/*#co-billing-form ul.form-list > .control {
    float: left;
    margin: 0 0 5px;
    width: 100%;
}*/
/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 480px) {
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%; }
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%; } }
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal; }
  #recurring_profile_list_view th span {
    white-space: inherit; }
@media only screen and (max-width: 480px) {
  #recurring_profile_list_view {
    font-size: 12px; }
    #recurring_profile_list_view a {
      font-size: inherit; }
    #recurring_profile_list_view th,
    #recurring_profile_list_view td {
      padding: 2px; } }

.recurring-profiles-title {
  float: left; }
  .recurring-profiles-title h1 {
    margin-bottom: 7px; }

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px; }
  @media only screen and (max-width: 480px) {
    body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
      text-align: center;
      float: none; } }
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
    position: static; }

.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both; }

#recurring_start_date_trig {
  display: inline; }

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 30px; }
  .billing-agreements .info-box:after {
    content: '';
    display: table;
    clear: both; }
  .billing-agreements .info-box .form-list {
    max-width: 400px;
    width: 100%; }
  .billing-agreements .info-box .box-title {
    margin-top: 20px;
    margin-bottom: 7px; }
  .billing-agreements .info-box .button {
    float: right;
    margin-top: 7px; }
    @media only screen and (max-width: 480px) {
      .billing-agreements .info-box .button {
        width: 100%;
        float: none; } }
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px; }

.billing-agreement-view-header-wrapper .heading {
  max-width: 80%; }
  @media only screen and (max-width: 480px) {
    .billing-agreement-view-header-wrapper .heading {
      max-width: 100%; } }

.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px; }

@media only screen and (max-width: 959px) {
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none; } }
/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%; }

.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px; }

/* ============================================ *
 * Widgets
 * ============================================ */
/* -------------------------------------------- *
 * Add to cart by SKU
 */
.sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
  width: 100%; }
  @media only screen and (min-width: 781px) {
    .sidebar .widget-addbysku .sku-table .input-text:not(.qty) {
      max-width: 100px; } }

.widget {
  clear: both; }

.widget .pager {
  float: none;
  width: 100%; }

@media only screen and (min-width: 1199px) {
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */ }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
      clear: none; }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
      clear: none; }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
      margin-right: 2.22222%; }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
      margin-right: 2.22222%; }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
      width: 23.33333%;
      margin-right: 2.22222%; }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
      clear: left; }
    .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
    .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
    .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
      margin-right: 0; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
      clear: none; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
      clear: none; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
      margin-right: 2.22222%; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
      margin-right: 2.22222%; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
      width: 18.22222%;
      margin-right: 2.22222%; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
      clear: left; }
    .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
    .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
    .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
      margin-right: 0; } }
@media only screen and (min-width: 780px) {
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */ }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
      clear: none; }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
      clear: none; }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
      margin-right: 2.22222%; }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
      margin-right: 2.22222%; }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
      width: 23.33333%;
      margin-right: 2.22222%; }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
      clear: left; }
    .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
      margin-right: 0; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
      clear: none; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
      clear: none; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
      margin-right: 2.22222%; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
      margin-right: 2.22222%; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
      width: 18.22222%;
      margin-right: 2.22222%; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
      clear: left; }
    .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
      margin-right: 0; } }
/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px; }
  body[class*="checkout-multishipping-"] .checkout-progress > li {
    float: left;
    width: 20%;
    text-align: center;
    padding: 8px 1% 6px;
    background: #fafafc;
    text-transform: uppercase;
    border-bottom: 1px solid #d4d6e2;
    border-right: 1px solid #d4d6e2;
    margin-bottom: 10px;
    font-family: "Sarala", Tahoma, Arial, sans-serif; }
    body[class*="checkout-multishipping-"] .checkout-progress > li.active {
      background-color: #DDDDDD; }
    body[class*="checkout-multishipping-"] .checkout-progress > li.last {
      border-right: 0px; }
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px; }
  body[class*="checkout-multishipping-"] .page-title h1 {
    border: 0 none;
    float: left;
    margin-top: 2px;
    margin-right: 2%; }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: right; }
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px; }
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%; }
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%; }
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%; }
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px; }
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold; }
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right; }
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right; }

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px; }

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px; }
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px; }
  .checkout-multishipping-shipping .gift-messages-form h4 {
    margin-top: 15px;
    margin-bottom: 5px; }
  .checkout-multishipping-shipping .gift-messages-form .form-list {
    margin-top: 10px;
    margin-bottom: 25px; }
  .checkout-multishipping-shipping .gift-messages-form .item {
    margin-top: 15px; }

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #fafafc;
  border-bottom: 1px solid #d4d6e2;
  padding: 10px;
  font-size: 14px; }
.checkout-multishipping-shipping .col-1 > h4, .checkout-multishipping-shipping .col-2 > h4,
.checkout-multishipping-billing .col-1 > h4,
.checkout-multishipping-billing .col-2 > h4,
.checkout-multishipping-overview .col-1 > h4,
.checkout-multishipping-overview .col-2 > h4 {
  font-weight: normal;
  width: 100%;
  background: #fafafc;
  border-bottom: 1px solid #d4d6e2;
  padding: 10px;
  font-size: 14px; }
.checkout-multishipping-shipping .col-1 .box-content, .checkout-multishipping-shipping .col-2 .box-content,
.checkout-multishipping-billing .col-1 .box-content,
.checkout-multishipping-billing .col-2 .box-content,
.checkout-multishipping-overview .col-1 .box-content,
.checkout-multishipping-overview .col-2 .box-content {
  margin-bottom: 25px;
  padding-left: 10px;
  margin-top: 10px; }

.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%; }

#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none; }

#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both; }

@media only screen and (max-width: 959px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px; }

  #review-order-form .col-1,
  #review-order-form .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0; } }
@media only screen and (max-width: 780px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px; }
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px; }
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px; }
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%; }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px; }
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right; }
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px; }
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0; } }
@media only screen and (max-width: 590px) {
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px; } }
@media only screen and (max-width: 480px) {
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block; } }
.sitemapTree-0 li > ul {
  padding-left: 0; }

.sitemapSection {
  padding-bottom: 35px; }
  .sitemapSection h2 {
    padding-bottom: 15px; }
  .sitemapSection h3 {
    text-transform: none;
    color: inherit; }
  .sitemapSection img {
    margin: 0 auto 10px; }
  .sitemapSection ul.manufacturers-logos {
    list-style: none;
    display: block;
    width: 100%; }
    .sitemapSection ul.manufacturers-logos li {
      width: 25%;
      padding: 0px;
      float: left;
      margin: 0px 0px 10px 0px;
      border-bottom: 1px solid #d4d6e2;
      display: table; }
      .sitemapSection ul.manufacturers-logos li a {
        height: 150px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        margin: 0 auto;
        text-decoration: none; }
        .sitemapSection ul.manufacturers-logos li a h3 {
          font-size: 14px; }
    .sitemapSection ul.manufacturers-logos:after {
      content: '';
      display: table;
      clear: both; }

@media (max-width: 780px) {
  .sitemapSection ul.manufacturers-logos li {
    width: 33.33%; } }
@media (max-width: 590px) {
  .sitemapSection ul.manufacturers-logos li {
    width: 50%; } }
.sitemapSection .am-sitemap-wrap a.disabledLink {
  color: #333333;
  cursor: default;
  text-decoration: none; }

.sitemapSection .am-sitemap-wrap a .text-highlight {
  color: #F94D1A; }

.am-sitemap-cell {
  padding: 0 5px 5px 0;
  column-count: 3; }

@media only screen and (max-width: 1199px) {
  .am-sitemap-cell {
    column-count: 2; } }
@media only screen and (max-width: 959px) {
  .am-sitemap-cell {
    column-count: 1; } }
.am-clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.am-clearfix {
  display: inline-block;
  width: 100%; }

html[xmlns] .am-clearfix {
  display: block; }

* html .am-clearfix {
  height: 1%; }

.htmlsitemap-search-input {
  display: block;
  width: 100%; }

.htmlsitemap-search-wrapper label {
  display: block;
  padding-bottom: 5px;
  font-weight: bold; }

.htmlsitemap-search-wrapper {
  margin: 0 auto;
  width: 50%;
  display: block; }

.sitemapSection ul {
  padding-left: 1.5em; }

.sitemapSection ul li {
  margin-left: 2em; }

.am-sitemap-cell li {
  list-style-type: none; }

/* Tytul */
.tytul {
  width: 100%;
  background-color: #f7f7fc;
  border-bottom: 1px solid #0867a9;
  padding: 10px 20px;
  margin-bottom: 20px;
  overflow: hidden; }
  .tytul h2 {
    color: #0867a9;
    font-size: 18px;
    text-transform: none;
    margin: 0;
    line-height: 1.2;
    font-weight: normal;
    font-style: normal;
    float: left; }
    .tytul h2 a {
      color: #0867a9;
      font-size: 18px;
      text-decoration: none; }
      .tytul h2 a:hover {
        color: #c1151a;
        text-decoration: none; }
  .tytul a {
    float: right; }
  .tytul:after {
    content: '';
    display: table;
    clear: both; }

h3.podtytul {
  font-weight: normal;
  color: #0867a9;
  font-size: 15px;
  text-transform: none;
  display: inline; }

a.odnosnik {
  color: #0867a9;
  text-decoration: underline;
  font-style: normal;
  text-transform: lowercase;
  font-size: 13px; }
  a.odnosnik:hover {
    color: #c1151a;
    text-decoration: underline; }

.page-title .back-link {
  float: right;
  margin-top: 5px; }
.page-title h1 {
  float: left; }
.page-title:after {
  content: '';
  display: table;
  clear: both; }
.page-title .buttons-set {
  float: right;
  clear: none;
  margin: 0px;
  padding: 0px; }

.success-msg a {
  color: #0867a9;
  text-decoration: underline; }
  .success-msg a:hover {
    color: #c1151a;
    text-decoration: underline; }

#chat-application {
  z-index: 2147483646 !important; }

/* Facebook Slider */
#face-tab {
  cursor: pointer;
  height: 136px;
  width: 50px;
  float: left;
  background: url(/skin/frontend/gastrro/default/images/facebook-slider.png) no-repeat center center;
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.1);
  z-index: 2147483645 !important;
  position: fixed;
  right: 0px;
  bottom: 330px; }

#face-code {
  padding: 0px;
  background: #fff;
  float: left;
  width: 400px;
  height: 427px;
  position: fixed;
  right: -400px;
  bottom: 330px;
  z-index: 2147483646 !important;
  -moz-border-radius: 0 0 0 8px;
  -webkit-border-radius: 0 0 0 8px;
  border-radius: 0 0 0 8px;
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.1); }
  #face-code ._2p_a {
    background-color: transparent; }

@media only screen and (max-width: 1380px) {
  #face-tab, #face-code {
    display: none; } }
/* Pusty koszyk */
/* Podziękowanie za opłacenie zamówienia */
.checkout-cart-index .cart-empty h2,
.thanks-dotpay h2 {
  text-transform: none;
  color: #0867a9;
  font-weight: normal;
  line-height: 1.4;
  margin: 40px 0px 20px; }
.checkout-cart-index .cart-empty > p,
.thanks-dotpay > p {
  margin: 0 0 1.5em; }
.checkout-cart-index .cart-empty .note-msg,
.thanks-dotpay .note-msg {
  color: #c1151a;
  font-size: 18px; }
  .checkout-cart-index .cart-empty .note-msg span,
  .thanks-dotpay .note-msg span {
    color: #0867a9; }
.checkout-cart-index .cart-empty a,
.thanks-dotpay a {
  color: #0867a9;
  text-decoration: underline; }
  .checkout-cart-index .cart-empty a:hover,
  .thanks-dotpay a:hover {
    color: #c1151a;
    text-decoration: underline; }
.checkout-cart-index .cart-empty .c-person,
.thanks-dotpay .c-person {
  text-align: left; }
.checkout-cart-index .cart-empty img,
.thanks-dotpay img {
  float: right;
  margin-top: -100px; }

@media only screen and (max-width: 979px) {
  .checkout-cart-index .cart-empty img,
  .thanks-dotpay img {
    float: none;
    margin: auto; } }
@media only screen and (max-width: 780px) {
  .checkout-cart-index .cart-empty img,
  .thanks-dotpay img {
    float: right;
    width: 300px; } }
@media only screen and (max-width: 590px) {
  .checkout-cart-index .cart-empty img,
  .thanks-dotpay img {
    float: none; } }
@media only screen and (max-width: 480px) {
  .checkout-cart-index .cart-empty .note-msg,
  .thanks-dotpay .note-msg {
    text-align: center; } }
@media only screen and (max-width: 480px) {
  .page-title {
    text-align: center;
    margin-bottom: 15px; }
    .page-title p.back-link {
      float: none; }
    .page-title h1 {
      float: none;
      margin-bottom: 0px;
      padding-bottom: 0px; }
    .page-title .buttons-set {
      margin-top: 10px;
      float: none;
      width: 100%; }

  .tytul {
    text-align: center; }
    .tytul h2 {
      float: none; }
    .tytul a {
      float: none; } }
.product-collateral .product-technology,
.postWrapper .product-technology {
  padding: 20px;
  width: 100%;
  position: relative;
  min-height: 100px; }
  .product-collateral .product-technology:last-of-type,
  .postWrapper .product-technology:last-of-type {
    margin-bottom: 30px; }
  .product-collateral .product-technology img,
  .postWrapper .product-technology img {
    display: block;
    border: 0;
    width: 60px;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -41px; }
  .product-collateral .product-technology p,
  .postWrapper .product-technology p {
    color: #0867a9;
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    margin-left: 85px !important;
    margin-bottom: 0px; }

.product-collateral .product-technology {
  background-color: #f7f7fc;
  border-bottom: 1px solid #d4d6e2; }
  .product-collateral .product-technology:first-of-type {
    border-top: 1px solid #d4d6e2; }
.product-collateral .product-technology-big {
  padding: 20px;
  width: 100%;
  min-height: 100px;
  background-color: #f7f7fc;
  border-bottom: 1px solid #d4d6e2;
  text-align: center; }
  .product-collateral .product-technology-big:first-of-type {
    border-top: 1px solid #d4d6e2; }
  .product-collateral .product-technology-big:last-of-type {
    margin-bottom: 30px; }
  .product-collateral .product-technology-big img {
    display: inline;
    border: 0;
    width: auto;
    max-width: 100%;
    margin-bottom: 10px; }
  .product-collateral .product-technology-big p {
    color: #0867a9;
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    margin: 0px; }

/* Gratisy */
.gratis {
  width: 100%;
  background-color: #f7f7fc;
  margin-bottom: 30px;
  position: relative; }
  .gratis p {
    padding-left: 20px;
    padding-right: 20px; }
  .gratis .g-photo {
    width: 63px;
    height: 66px;
    position: absolute;
    top: 15px;
    right: 10px; }
  .gratis .g-header {
    background-color: #c1151a;
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
    padding: 3px 20px;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px; }
  .gratis .g-title {
    color: #0867a9;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 80px;
    margin-bottom: 5px;
    font-size: 18px;
    text-align: left; }
    .gratis .g-title a {
      text-decoration: none; }
  .gratis .g-text {
    color: #fff;
    font-weight: normal;
    padding: 10px 20px;
    background-color: #0867a9;
    margin: 10px 0 0 0; }
    .gratis .g-text strong {
      color: #fff; }

#table-size {
  border: 1px solid #d4d6e2;
  margin: 0 auto;
  table-layout: fixed; }
  #table-size caption {
    text-align: center;
    margin: 20px 0 10px;
    font-weight: bold;
    color: #0867a9; }
  #table-size th,
  #table-size td {
    width: auto; }

.product-info-blog {
  width: 220px;
  margin: 10px;
  padding: 10px;
  border: solid 1px #DDD;
  float: left; }

.product-name-blog {
  text-align: center;
  height: 36px; }

.product-name-blog a {
  font-size: 13px;
  font-weight: normal;
  margin: 0;
  line-height: 20px; }

.product-name-blog span {
  font-size: 13px;
  color: #CCC; }

.product-price-blog {
  font-size: 16px;
  color: #62719e;
  font-weight: bold;
  margin: 10px 0 0 0;
  text-align: center; }

.product-price-blog span {
  font-size: 12px;
  color: #DDD; }

.postContent {
  color: #556c94;
  line-height: 1.4; }
  .postContent:after {
    content: '';
    display: table;
    clear: both; }

.post-data {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d4d6e2; }
  .post-data:after {
    content: '';
    display: table;
    clear: both; }
  .post-data span {
    display: block;
    float: left; }
  .post-data .icon {
    width: 17px;
    height: 17px;
    background-position: -105px -965px;
    margin-right: 10px; }
  .post-data .text {
    color: #556c94;
    font-size: 12px; }

/* ----- Widget Latest ----- */
.widget-latest .postWrapper {
  width: 100%;
  position: relative;
  float: none;
  margin: 0px 0px 30px 0px;
  border-bottom: 1px solid #d4d6e2;
  text-align: center; }
  .widget-latest .postWrapper:last-child {
    border: none; }
  .widget-latest .postWrapper .postTitle {
    padding: 0; }
  .widget-latest .postWrapper .tags {
    display: none; }
  .widget-latest .postWrapper .postContent.std {
    display: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #d4d6e2; }
    .widget-latest .postWrapper .postContent.std p {
      margin: 0px; }
  .widget-latest .postWrapper:last-child .postContent.std {
    border-bottom: none; }
  .widget-latest .postWrapper:hover {
    box-shadow: none; }
  .widget-latest .postWrapper .postImage {
    width: 80%;
    min-width: 180px; }
.widget-latest .xxx {
  background-color: #fff;
  height: 8px;
  border-radius: 8px 0 0 0; }

@media only screen and (max-width: 959px) {
  .widget-latest .postWrapper .postImage {
    width: 100%;
    min-width: 100%; } }
@media only screen and (max-width: 780px) {
  .widget-latest > h2 {
    margin-bottom: 0.5em;
    padding: 0px; }

  .widget-latest .postWrapper:nth-child(4) {
    display: none; }

  .new-posts {
    float: none;
    box-shadow: none;
    background-color: #fff;
    overflow: hidden; }
    .new-posts .postWrapper {
      width: 30.8642%;
      float: left;
      margin-right: 3.7037%;
      border: none; }
      .new-posts .postWrapper .postContent.std {
        border: none; }
      .new-posts .postWrapper:nth-child(3n) {
        margin-right: 0px; } }
@media only screen and (max-width: 590px) {
  .new-posts .postWrapper,
  .new-posts .postWrapper:nth-child(3) {
    width: 47.72727%;
    margin-right: 4.54545%; }
    .new-posts .postWrapper .postContent,
    .new-posts .postWrapper:nth-child(3) .postContent {
      height: auto; }
    .new-posts .postWrapper .tags,
    .new-posts .postWrapper:nth-child(3) .tags {
      position: static; }
    .new-posts .postWrapper:nth-child(2n),
    .new-posts .postWrapper:nth-child(3):nth-child(2n) {
      margin-right: 0px; }

  .widget-latest .postWrapper:nth-child(1),
  .widget-latest .postWrapper:nth-child(2) {
    border-bottom: 1px solid #d4d6e2; }
  .widget-latest .postWrapper:nth-child(4) {
    display: block; } }
/*@include bp(max-width, $bp-xsmall){
    
    .new-posts {
        
        .postWrapper {
            width: 100%;
            margin-right: 0px;
            float: none;
            
            .postImage {
                width:250px;
                min-width: 250px;
            }
            
            &:hover {
                box-shadow: none;
            }
        }
        
        
    }
    .widget-latest{
        .postWrapper:nth-child(3){
            display: block;
            border: none;
            width: 100%;
            margin-right: 0px;
        }
        
        &> h2{
            text-align: center;
        }
    }
}
*/
/* ----- Blog Post View ----- */
.blog-post-view .postWrapper {
  width: 100%;
  margin: 0px;
  height: auto;
  float: none; }
.blog-post-view .postTitle {
  margin-bottom: 10px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #d4d6e2; }
  .blog-post-view .postTitle h2 {
    font-size: 20px; }
.blog-post-view .postContent {
  height: auto;
  clear: both; }
  .blog-post-view .postContent a {
    color: #0867a9;
    text-decoration: underline; }
    .blog-post-view .postContent a:hover {
      color: #c1151a; }
  .blog-post-view .postContent p {
    margin: 0 0 15px 0;
    text-align: justify; }
    .blog-post-view .postContent p.image {
      text-align: center; }
      .blog-post-view .postContent p.image img {
        display: inline-block;
        max-width: 100%; }
  .blog-post-view .postContent h3 {
    text-align: center;
    font-size: 20px;
    color: #0867a9;
    font-weight: bold;
    text-transform: none;
    margin-top: 55px;
    margin-bottom: 15px;
    clear: both; }
    .blog-post-view .postContent h3.no-margin {
      margin-top: 0px; }
  .blog-post-view .postContent h4 {
    color: #0867a9;
    font-weight: bold;
    text-transform: none;
    font-size: 16px;
    margin-top: 55px;
    margin-bottom: 15px; }
    .blog-post-view .postContent h4.no-margin {
      margin-top: 0px; }
  .blog-post-view .postContent .data-table {
    border-left: 1px solid #d4d6e2;
    border-right: 1px solid #d4d6e2;
    margin: 0px auto 40px; }
    .blog-post-view .postContent .data-table thead {
      border-top: 1px solid #d4d6e2; }
    .blog-post-view .postContent .data-table td, .blog-post-view .postContent .data-table th {
      width: auto;
      vertical-align: middle; }
      .blog-post-view .postContent .data-table td p, .blog-post-view .postContent .data-table th p {
        margin: 0px; }
    .blog-post-view .postContent .data-table.border-td td, .blog-post-view .postContent .data-table.border-td th {
      border-right: 1px solid #d4d6e2; }
      .blog-post-view .postContent .data-table.border-td td:last-of-type, .blog-post-view .postContent .data-table.border-td th:last-of-type {
        border-right: none; }
    .blog-post-view .postContent .data-table td.header-td {
      background: #fafafc;
      color: #0867a9; }
    .blog-post-view .postContent .data-table.table-small {
      display: none; }
  .blog-post-view .postContent .important {
    background-color: #f7f7fc;
    border-top: 1px solid #d4d6e2;
    border-bottom: 1px solid #d4d6e2;
    margin: 35px 40px 30px;
    padding: 20px;
    position: relative; }
    .blog-post-view .postContent .important .imp-title {
      position: absolute;
      top: -14px;
      display: block;
      left: 20px;
      font-size: 20px;
      color: #0867a9;
      font-weight: bold;
      font-style: normal; }
    .blog-post-view .postContent .important .imp-txt {
      margin: 0px;
      font-style: italic;
      color: #0867a9;
      font-size: 15px; }
.blog-post-view .postDetails {
  margin: 20px 0 30px; }
  .blog-post-view .postDetails table tr, .blog-post-view .postDetails table td {
    border: none;
    padding: 5px 0;
    margin: 0;
    vertical-align: middle;
    text-align: left; }
  .blog-post-view .postDetails table .tags,
  .blog-post-view .postDetails table .categories {
    padding-left: 10px; }

.postContent {
  height: auto; }
  .postContent p.postImage {
    float: right;
    margin: 0 0 0 20px;
    max-width: 400px; }
  .postContent p.postImage-horizontal img {
    margin: 35px 0px;
    width: 100%; }
  .postContent ul {
    margin-bottom: 1.5em; }
    .postContent ul li {
      margin-left: 2em; }
  .postContent ol {
    list-style: decimal outside;
    margin-bottom: 1.5em; }
    .postContent ol li {
      margin-left: 2em; }
  .postContent .post-data {
    position: absolute;
    left: 0px;
    bottom: 25px; }

@media only screen and (max-width: 1000px) {
  .blog-post-view .postContent .postImage {
    width: 40%; } }
@media only screen and (max-width: 979px) {
  .blog-post-view .postContent .data-table .table-small-td {
    display: none; }
  .blog-post-view .postContent .data-table.table-small {
    display: table; } }
@media only screen and (max-width: 780px) {
  .blog-post-view .postContent .important {
    margin: 35px 0px 30px; }
    .blog-post-view .postContent .important .imp-title {
      font-size: 18px; }
    .blog-post-view .postContent .important .imp-txt {
      font-size: 13px; } }
@media only screen and (max-width: 590px) {
  .blog-post-view .postDetails {
    margin: 20px 0; }
  .blog-post-view .postContent .postImage {
    float: none;
    width: auto;
    max-width: 300px;
    margin: 0 auto 20px; }
  .blog-post-view .postContent h3 {
    margin-top: 25px; } }
@media only screen and (max-width: 480px) {
  .blog-post-view .postContent .postImage {
    width: 100%;
    max-width: none; }
  .blog-post-view .postTitle h2 {
    text-align: center; }

  .block-blog .menu-categories h5 {
    text-align: center; } }
table.podsumowanie {
  margin: 0 auto; }

.podsumowanie th {
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  border-bottom: solid 2px #d4d6e2;
  width: 50%;
  padding: 10px; }

.podsumowanie td {
  font-weight: normal;
  text-align: left;
  border-bottom: solid 1px #d4d6e2;
  padding: 10px; }

/* ----- Blog Index List ----- */
.blog-lista-postow:after {
  content: '';
  display: table;
  clear: both; }

.blog-lista-postow h2,
.blog-cat-view h2 {
  text-align: center; }
.blog-lista-postow .postWrapper,
.blog-cat-view .postWrapper {
  display: block;
  margin: 0 2.66666% 20px 0;
  padding-bottom: 20px;
  width: 23%;
  float: left;
  position: relative;
  min-height: 330px; }
  .blog-lista-postow .postWrapper:nth-child(4n+4),
  .blog-cat-view .postWrapper:nth-child(4n+4) {
    margin-right: 0; }
  .blog-lista-postow .postWrapper .tags,
  .blog-cat-view .postWrapper .tags {
    display: none; }

.postWrapper {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  min-height: 330px; }
  .postWrapper > a {
    display: block; }
    .postWrapper > a .postImage {
      overflow: hidden; }
      .postWrapper > a .postImage img {
        transform: rotate(0deg) scale(1);
        transition: all 0.5s ease-in-out; }
    .postWrapper > a:hover {
      text-decoration: none; }
      .postWrapper > a:hover .postTitle h2 {
        color: #c1151a; }
      .postWrapper > a:hover .postImage img {
        transform: rotate(-5deg) scale(1.1); }
      .postWrapper > a:hover .post-data .text {
        color: #c1151a; }
  .postWrapper .post-data {
    padding: 0;
    margin: 0 auto 10px;
    border: none;
    width: 95px; }

.postImage {
  /*    padding-bottom: 9px;
      background: url(/skin/frontend/gastrro/default/images/post-cien.png) left bottom no-repeat;*/
  position: relative;
  margin: 10px auto; }
  .postImage img {
    /*        padding: 6px;*/
    width: 100%;
    background-color: #fff;
    border: 1px solid #f5f6f8; }

@media only screen and (max-width: 959px) {
  .blog-index-list .postWrapper,
  .blog-index-list .postWrapper:nth-child(4n+4), .blog-cat-view .postWrapper,
  .blog-cat-view .postWrapper:nth-child(4n+4) {
    width: 30.8642%;
    float: left;
    margin-right: 3.7037%; }
  .blog-index-list .postWrapper:nth-child(3n+3), .blog-cat-view .postWrapper:nth-child(3n+3) {
    margin-right: 0; }
  .blog-index-list .postContent, .blog-cat-view .postContent {
    height: auto; } }
@media only screen and (max-width: 590px) {
  .blog-index-list .postWrapper,
  .blog-index-list .postWrapper:nth-child(3n+3),
  .blog-index-list .postWrapper:nth-child(4n+4), .blog-cat-view .postWrapper,
  .blog-cat-view .postWrapper:nth-child(3n+3),
  .blog-cat-view .postWrapper:nth-child(4n+4) {
    width: 47.72727%;
    margin-right: 4.54545%; }
    .blog-index-list .postWrapper:nth-child(2n+2),
    .blog-index-list .postWrapper:nth-child(3n+3):nth-child(2n+2),
    .blog-index-list .postWrapper:nth-child(4n+4):nth-child(2n+2), .blog-cat-view .postWrapper:nth-child(2n+2),
    .blog-cat-view .postWrapper:nth-child(3n+3):nth-child(2n+2),
    .blog-cat-view .postWrapper:nth-child(4n+4):nth-child(2n+2) {
      margin-right: 0px; } }
/*@include bp(max-width, $bp-xsmall){
    
    .blog-index-list, .blog-cat-view{
        
        .postWrapper,
        .postWrapper:nth-child(2n+2),
        .postWrapper:nth-child(3n+3),
        .postWrapper:nth-child(4n+4){
            width: 100%;
            margin-right: 0;
            margin-right: 0px;
            float: none;
            
            .postImage {
                width:250px;
                min-width: 250px;

            }
        }
        .postWrapper{
            border-bottom: 1px solid $c-border;
            
            &:last-child{
                border: none;
            }
        }
    }
}*/
/*
@include bp(max-width, $bp-medium) {
    
    .blog-index-list, .blog-cat-view{
        
        .toolbar .sorter {
            width: auto;
        }
    
        .postWrapper,
        .postWrapper:nth-child(3n+4),
        .postWrapper:nth-child(4n+5){
            width: 48%;
            margin: 0 4% 25px 0;
        }

        .postWrapper:nth-child(2n+3){
            margin: 0 0 25px 0;
        }
    }
}


@include bp(max-width, $bp-small) {
    
    .blog-post-view .postImage,
    .blog-cat-view .postImage{
        width: 100%;
    }
    
    .blog-index-list, .blog-cat-view{
        
        .postWrapper,
        .postWrapper:nth-child(3n+4),
        .postWrapper:nth-child(4n+5),
        .postWrapper:nth-child(2n+3){
            width: 100%;
            margin: 0 0 25px 0;
            height: auto;
            
            .postContent{
                height: auto;
            }
            
            .tags{
                position: static;
            }
        }
    }
}

*/
.postTitle {
  padding: 0px 10px 0px 10px; }
  .postTitle h2 {
    font-family: "Sarala", Tahoma, Arial, sans-serif;
    color: #0867a9;
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    text-transform: none; }

.aw-blog-read-more {
  display: block;
  text-align: right;
  margin: 0 20px; }

.postBookmarks {
  padding-bottom: 10px; }
  .postBookmarks h4 {
    font-size: 12px;
    font-weight: bold; }
  .postBookmarks a.bm {
    display: inline-block; }
  .postBookmarks img {
    display: inline; }

.commentWrapper {
  padding-bottom: 15px; }

.commentContent {
  padding-bottom: 0px; }

.commentDetails {
  margin-bottom: 5px;
  padding: 0px; }
  .commentDetails h4.username {
    display: inline; }

.postError {
  font-size: 16px; }

.tags,
.categories {
  position: relative; }
  .tags ul li,
  .categories ul li {
    font-weight: normal;
    display: inline;
    padding-right: 6px; }
    .tags ul li:after,
    .categories ul li:after {
      content: ","; }
    .tags ul li:last-child:after,
    .categories ul li:last-child:after {
      display: none; }
    .tags ul li a,
    .categories ul li a {
      font-size: 12px;
      color: #556c94; }
      .tags ul li a:hover,
      .categories ul li a:hover {
        color: #c1151a;
        text-decoration: underline; }
  .tags h4,
  .categories h4 {
    position: absolute;
    left: 0;
    font-size: 12px;
    font-weight: bold;
    color: #0867a9; }
  .tags .post-data,
  .categories .post-data {
    position: absolute;
    top: 3px;
    right: 0; }

.tags {
  border-top: 1px solid #d4d6e2;
  padding-top: 10px;
  margin-top: 30px; }
  .tags h4 {
    top: 13px; }
  .tags ul {
    margin-left: 40px; }

.categories h4 {
  top: 3px; }
.categories ul {
  margin-left: 80px;
  margin-right: 130px; }

.menu-tags,
.menu-categories,
.menu-recent {
  margin: 5px 9px; }

.menu-tags h5,
.menu-categories h5,
.menu-recent h5 {
  font-family: "Sarala", Tahoma, Arial, sans-serif;
  color: #0867a9;
  font-size: 18px;
  font-weight: 500;
  text-transform: none; }

.block-blog .menu-tags UL LI {
  display: inline;
  padding: 2px; }
  .block-blog .menu-tags UL LI a {
    font-size: 14px; }
.block-blog .menu-categories {
  margin: 0;
  padding: 5px 9px; }
  .block-blog .menu-categories UL LI a {
    font-size: 14px; }
.block-blog .menu-recent UL LI a {
  font-size: 14px; }
.block-blog .menu-tags UL LI a:hover,
.block-blog .menu-categories UL LI a:hover,
.block-blog .menu-recent UL LI a:hover {
  text-decoration: none; }
.block-blog .block-title strong {
  background-image: url(https://www.gastrro.pl/skin/frontend/gastrro/default/images/icon_blog.png);
  background-repeat: no-repeat;
  padding-left: 21px;
  text-align: left; }
.block-blog .head h4 {
  padding-left: 20px; }

.tagcloud {
  /* text-align:center; */ }

.tag-count-1 {
  font-size: 1em !important; }

.tag-count-2 {
  font-size: 1.2em !important; }

.tag-count-3 {
  font-size: 1.4em !important; }

.tag-count-4 {
  font-size: 1.6em !important; }

.tag-count-5 {
  font-size: 1.8em !important; }

.tag-count-6 {
  font-size: 2em !important; }

.tag-count-7 {
  font-size: 2em !important; }

.tag-count-8 {
  font-size: 2em !important; }

.tag-count-9 {
  font-size: 2em !important; }

.tag-count-10 {
  font-size: 2em !important; }

.input-box.aw-blog-comment-area {
  width: 100%; }

.widget-latest li {
  font-size: 12px;
  padding: 5px 10px; }

A.awblog_current_comment {
  text-decoration: none !important;
  font-weight: bold !important; }

/*!
 * Bootstrap v3.3.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
@font-face {
 /* font-family: 'Glyphicons Halflings';

  src: url('https://www.gastrro.pl/skin/frontend/gastrro/default/fonts/glyphicons-halflings-regular.eot');
  src: url('https://www.gastrro.pl/skin/frontend/gastrro/default/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('https://www.gastrro.pl/skin/frontend/gastrro/default/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('https://www.gastrro.pl/skin/frontend/gastrro/default/fonts/glyphicons-halflings-regular.woff') format('woff'), url('https://www.gastrro.pl/skin/frontend/gastrro/default/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('https://www.gastrro.pl/skin/frontend/gastrro/default/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;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "\2a"; }

.small {
  font-size: 70%;
  top: 4px; }

.glyphicon-align-justify {
  font-family: Tahoma,Arial,sans-serif;
  display: block;
  width: 100%;
  height: 45px;
  color: #fefefe;
  line-height: 45px;
  text-transform: uppercase; }

.ms-topmenu .anchor_mbmenu .glyphicon-align-justify:before {
  content: "Pokaż Kategorie"; }

.ms-topmenu.active .anchor_mbmenu .glyphicon-align-justify:before {
  content: "Ukryj Kategorie"; }

.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-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"; }

.ms-megamenu * {
  box-sizing: border-box;
  transition: background-color 250ms ease-out;
  -webkit-transition: background-color  250ms ease-out;
  -moz-transition: background-color  250ms ease-out;
  -ms-transition: background-color  250ms ease-out;
  -o-transition: background-color  250ms ease-out; }

.ms-megamenu button * {
  box-sizing: content-box; }

.ms-megamenu .row {
  margin-right: -10px;
  margin-left: -10px; }

.ms-megamenu .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 768px) {
  .ms-megamenu .container {
    width: 750px; } }
@media (min-width: 992px) {
  .ms-megamenu .container {
    width: 970px; } }
@media (min-width: 1200px) {
  .ms-megamenu .container {
    width: 1170px; } }
.ms-megamenu .col-xs-24, .ms-megamenu .col-xs-14, .ms-megamenu .col-xs-125, .ms-megamenu .col-xs-111, .ms-megamenu .col-xs-100, .col-xs-909, .ms-megamenu .col-xs-1, .ms-megamenu .col-xs-2, .ms-megamenu .col-xs-3, .ms-megamenu .col-xs-4, .ms-megamenu .col-xs-5, .ms-megamenu .col-xs-6, .ms-megamenu .col-xs-7, .ms-megamenu .col-xs-8, .ms-megamenu .col-xs-9, .ms-megamenu .col-xs-10, .ms-megamenu .col-xs-11, .ms-megamenu .col-xs-12 {
  float: left;
  position: relative;
  min-height: 40px;
  padding-right: 10px;
  padding-left: 10px; }

.ms-megamenu .col-xs-24, .ms-megamenu .col-xs-14, .ms-megamenu .col-xs-125, .ms-megamenu .col-xs-111, .ms-megamenu .col-xs-100, .ms-megamenu .col-xs-909, .ms-megamenu .col-xs-1, .ms-megamenu .col-sm-1, .ms-megamenu .col-md-1, .ms-megamenu .col-lg-1, .ms-megamenu .col-xs-2, .ms-megamenu .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-right: 15px;
  padding-left: 15px; }

@media only screen and (max-width: 780px) {
  .ms-megamenu .col-xs-24, .ms-megamenu .col-xs-14, .ms-megamenu .col-xs-125, .ms-megamenu .col-xs-111, .ms-megamenu .col-xs-100, .col-xs-909, .ms-megamenu .col-xs-1, .ms-megamenu .col-xs-2, .ms-megamenu .col-xs-3, .ms-megamenu .col-xs-4, .ms-megamenu .col-xs-5, .ms-megamenu .col-xs-6, .ms-megamenu .col-xs-7, .ms-megamenu .col-xs-8, .ms-megamenu .col-xs-9, .ms-megamenu .col-xs-10, .ms-megamenu .col-xs-11, .ms-megamenu .col-xs-12 {
    padding: 0; } }
.col-xs-12 {
  width: 100%; }

.col-xs-11 {
  width: 91.66666667%; }

.col-xs-10 {
  width: 83.3333333%; }

.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%; }

.ms-megamenu .col-xs-24 {
  width: 20%; }

.ms-megamenu .col-xs-14 {
  width: 14%; }

.ms-megamenu .col-xs-125 {
  width: 12.5%; }

.ms-megamenu .col-xs-111 {
  width: 11.11111111%; }

.ms-megamenu .col-xs-100 {
  width: 10%; }

.ms-megamenu .col-xs-909 {
  width: 9.090909090%; }

.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: 768px) {
  .col-sm-1, .col-sm-14, .col-sm-2, .col-sm-24, .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%;*/
    width: 100%; }

  .col-sm-9 {
    /*width: 75%;*/
    width: 100%; }

  .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-24 {
    width: 20%; }

  .col-sm-2 {
    width: 16.66666667%; }

  .col-sm-14 {
    width: 14%; }

  .col-sm-125 {
    width: 12.5%; }

  .col-sm-111 {
    width: 11.11111111%; }

  .col-sm-100 {
    width: 10%; }

  .col-sm-909 {
    width: 9.090909090%; }

  .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: 992px) {
  .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: 1200px) {
  .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; } }
@media (max-width: 460px) {
  .col-tn-1, .col-tn-2, .col-tn-3, .col-tn-4, .col-tn-5, .col-tn-6, .col-tn-7, .col-tn-8, .col-tn-9, .col-tn-10, .col-tn-11, .col-tn-12 {
    float: left; }

  .col-tn-12 {
    width: 100%; }

  .col-tn-11 {
    width: 91.66666667%; }

  .col-tn-10 {
    width: 83.33333333%; }

  .col-tn-9 {
    width: 75%; }

  .col-tn-8 {
    width: 66.66666667%; }

  .col-tn-7 {
    width: 58.33333333%; }

  .col-tn-6 {
    width: 50%; }

  .col-tn-5 {
    width: 41.66666667%; }

  .col-tn-4 {
    width: 33.33333333%; }

  .col-tn-3 {
    width: 25%; }

  .col-tn-2 {
    width: 16.66666667%; }

  .col-tn-1 {
    width: 8.33333333%; }

  .col-tn-offset-12 {
    margin-left: 100%; }

  .col-tn-offset-11 {
    margin-left: 91.66666667%; }

  .col-tn-offset-10 {
    margin-left: 83.33333333%; }

  .col-tn-offset-9 {
    margin-left: 75%; }

  .col-tn-offset-8 {
    margin-left: 66.66666667%; }

  .col-tn-offset-7 {
    margin-left: 58.33333333%; }

  .col-tn-offset-6 {
    margin-left: 50%; }

  .col-tn-offset-5 {
    margin-left: 41.66666667%; }

  .col-tn-offset-4 {
    margin-left: 33.33333333%; }

  .col-tn-offset-3 {
    margin-left: 25%; }

  .col-tn-offset-2 {
    margin-left: 16.66666667%; }

  .col-tn-offset-1 {
    margin-left: 8.33333333%; } }
@media (max-width: 460px) {
  .hidden-tn {
    display: none !important; } }
@media (max-width: 767px) and (min-width: 461px) {
  .hidden-xs {
    display: none !important; } }
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }
.ms-megamenu input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.ms-megamenu input[type="radio"],
.ms-megamenu input[type="checkbox"] {
  margin: 3px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

.ms-megamenu input[type="file"] {
  display: block; }

.ms-megamenu input[type="range"] {
  display: block;
  width: 100%; }

.ms-megamenu select[multiple],
.ms-megamenu select[size] {
  height: auto; }

.ms-megamenu input[type="file"]:focus,
.ms-megamenu input[type="radio"]:focus,
.ms-megamenu input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

.ms-megamenu output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555; }

.ms-megamenu .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }

.ms-megamenu .form-control:focus {
  border-color: #66afe9;
  outline: none;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }

.ms-megamenu .form-control::-moz-placeholder {
  color: #999;
  opacity: 1; }

.ms-megamenu .form-control:-ms-input-placeholder {
  color: #999; }

.ms-megamenu .form-control::-webkit-input-placeholder {
  color: #999; }

.ms-megamenu .form-control[disabled],
.ms-megamenu .form-control[readonly],
.ms-megamenu textarea.form-control {
  height: 173px; }

input[type="search"] {
  -webkit-appearance: none; }

.ms-megamenu input[type="date"],
.ms-megamenu input[type="time"],
.ms-megamenu input[type="datetime-local"],
.ms-megamenu input[type="month"] {
  line-height: 34px;
  line-height: 1.42857143 \0; }

.ms-megamenu input[type="date"].input-sm,
.ms-megamenu input[type="time"].input-sm,
.ms-megamenu input[type="datetime-local"].input-sm,
.ms-megamenu input[type="month"].input-sm {
  line-height: 30px;
  line-height: 1.5 \0; }

.ms-megamenu input[type="date"].input-lg,
.ms-megamenu input[type="time"].input-lg,
.ms-megamenu input[type="datetime-local"].input-lg,
.ms-megamenu input[type="month"].input-lg {
  line-height: 46px;
  line-height: 1.33 \0; }

_:-ms-fullscreen,
:root input[type="date"],
_:-ms-fullscreen,
:root input[type="time"],
_:-ms-fullscreen,
:root input[type="datetime-local"],
_:-ms-fullscreen,
:root input[type="month"] {
  line-height: 1.42857143; }

_:-ms-fullscreen.input-sm,
:root input[type="date"].input-sm,
_:-ms-fullscreen.input-sm,
:root input[type="time"].input-sm,
_:-ms-fullscreen.input-sm,
:root input[type="datetime-local"].input-sm,
_:-ms-fullscreen.input-sm,
:root input[type="month"].input-sm {
  line-height: 1.5; }

_:-ms-fullscreen.input-lg,
:root input[type="date"].input-lg,
_:-ms-fullscreen.input-lg,
:root input[type="time"].input-lg,
_:-ms-fullscreen.input-lg,
:root input[type="datetime-local"].input-lg,
_:-ms-fullscreen.input-lg,
:root input[type="month"].input-lg {
  line-height: 1.33; }

.ms-megamenu .form-group {
  /*    float:left;*/
  width: 100%; }

.ms-megamenu .radio,
.ms-megamenu .checkbox {
  position: relative;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px; }

.ms-megamenu .radio label,
.ms-megamenu .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer; }

.ms-megamenu .radio input[type="radio"],
.ms-megamenu .radio-inline input[type="radio"],
.ms-megamenu .checkbox input[type="checkbox"],
.ms-megamenu .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -19px; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.ms-megamenu .radio-inline,
.ms-megamenu .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

.ms-megamenu .form-group label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700; }

.ms-megamenu .hide {
  display: none; }

.ms-megamenu .disabled {
  opacity: 0.3;
  filter: alpha(opacity=30);
  cursor: default; }

.ms-megamenu .text-left {
  text-align: left; }

.ms-megamenu .text-right {
  text-align: right; }

.ms-megamenu .text-center {
  text-align: center; }

.ms-megamenu .text-justify {
  text-align: justify; }

.ms-megamenu .text-nowrap {
  white-space: nowrap; }

.ms-megamenu .text-lowercase {
  text-transform: lowercase; }

.ms-megamenu .text-uppercase {
  text-transform: uppercase; }

.ms-megamenu .text-capitalize {
  text-transform: capitalize; }

.ms-megamenu .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

.ms-megamenu .btn:hover,
.ms-megamenu .btn:focus,
.ms-megamenu .btn.focus {
  color: #333;
  text-decoration: none; }

.ms-megamenu .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc; }

.ms-megamenu .btn-default:hover,
.ms-megamenu .btn-default:focus,
.ms-megamenu .btn-default.focus,
.ms-megamenu .btn-default:active,
.ms-megamenu .btn-default.active,
.ms-megamenu .open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad; }

.ms-megamenu .btn-default:active,
.ms-megamenu .btn-default.active,
.ms-megamenu .open > .dropdown-toggle.btn-default {
  background-image: none; }

.ms-megamenu .btn-default.disabled,
.ms-megamenu .btn-default[disabled],
.ms-megamenu fieldset[disabled] .btn-default,
.ms-megamenu .btn-default.disabled:hover,
.ms-megamenu .btn-default[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-default:hover,
.ms-megamenu .btn-default.disabled:focus,
.ms-megamenu .btn-default[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-default:focus,
.ms-megamenu .btn-default.disabled.focus,
.ms-megamenu .btn-default[disabled].focus,
.ms-megamenu fieldset[disabled] .btn-default.focus,
.ms-megamenu .btn-default.disabled:active,
.ms-megamenu .btn-default[disabled]:active,
.ms-megamenu fieldset[disabled] .btn-default:active,
.ms-megamenu .btn-default.disabled.active,
.ms-megamenu .btn-default[disabled].active,
.ms-megamenu fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc; }

.ms-megamenu .btn-default .badge {
  color: #fff;
  background-color: #333; }

.ms-megamenu .btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4; }

.ms-megamenu .btn-primary:hover,
.ms-megamenu .btn-primary:focus,
.ms-megamenu .btn-primary.focus,
.ms-megamenu .btn-primary:active,
.ms-megamenu .btn-primary.active,
.ms-megamenu .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74; }

.ms-megamenu .btn-primary:active,
.ms-megamenu .btn-primary.active,
.ms-megamenu .open > .dropdown-toggle.btn-primary {
  background-image: none; }

.ms-megamenu .btn-primary.disabled,
.ms-megamenu .btn-primary[disabled],
.ms-megamenu fieldset[disabled] .btn-primary,
.ms-megamenu .btn-primary.disabled:hover,
.ms-megamenu .btn-primary[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-primary:hover,
.ms-megamenu .btn-primary.disabled:focus,
.ms-megamenu .btn-primary[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-primary:focus,
.ms-megamenu .btn-primary.disabled.focus,
.ms-megamenu .btn-primary[disabled].focus,
.ms-megamenu fieldset[disabled] .btn-primary.focus,
.ms-megamenu .btn-primary.disabled:active,
.ms-megamenu .btn-primary[disabled]:active,
.ms-megamenu fieldset[disabled] .btn-primary:active,
.ms-megamenu .btn-primary.disabled.active,
.ms-megamenu .btn-primary[disabled].active,
.ms-megamenu fieldset[disabled] .btn-primary.active {
  background-color: #337ab7;
  border-color: #2e6da4; }

.ms-megamenu .btn-primary .badge {
  color: #337ab7;
  background-color: #fff; }

.ms-megamenu .btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }

.ms-megamenu .btn-success:hover,
.ms-megamenu .btn-success:focus,
.ms-megamenu .btn-success.focus,
.ms-megamenu .btn-success:active,
.ms-megamenu .btn-success.active,
.ms-megamenu .open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439; }

.ms-megamenu .btn-success:active,
.ms-megamenu .btn-success.active,
.ms-megamenu .open > .dropdown-toggle.btn-success {
  background-image: none; }

.ms-megamenu .btn-success.disabled,
.ms-megamenu .btn-success[disabled],
.ms-megamenu fieldset[disabled] .btn-success,
.ms-megamenu .btn-success.disabled:hover,
.ms-megamenu .btn-success[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-success:hover,
.ms-megamenu .btn-success.disabled:focus,
.ms-megamenu .btn-success[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-success:focus,
.ms-megamenu .btn-success.disabled.focus,
.ms-megamenu .btn-success[disabled].focus,
.ms-megamenu fieldset[disabled] .btn-success.focus,
.ms-megamenu .btn-success.disabled:active,
.ms-megamenu .btn-success[disabled]:active,
.ms-megamenu fieldset[disabled] .btn-success:active,
.ms-megamenu .btn-success.disabled.active,
.ms-megamenu .btn-success[disabled].active,
.ms-megamenu fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c; }

.ms-megamenu .btn-success .badge {
  color: #5cb85c;
  background-color: #fff; }

.ms-megamenu .btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }

.ms-megamenu .btn-info:hover,
.ms-megamenu .btn-info:focus,
.ms-megamenu .btn-info.focus,
.ms-megamenu .btn-info:active,
.ms-megamenu .btn-info.active,
.ms-megamenu .open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc; }

.ms-megamenu .btn-info:active,
.ms-megamenu .btn-info.active,
.ms-megamenu .open > .dropdown-toggle.btn-info {
  background-image: none; }

.ms-megamenu .btn-info.disabled,
.ms-megamenu .btn-info[disabled],
.ms-megamenu fieldset[disabled] .btn-info,
.ms-megamenu .btn-info.disabled:hover,
.ms-megamenu .btn-info[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-info:hover,
.ms-megamenu .btn-info.disabled:focus,
.ms-megamenu .btn-info[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-info:focus,
.ms-megamenu .btn-info.disabled.focus,
.ms-megamenu .btn-info[disabled].focus,
.ms-megamenu fieldset[disabled] .btn-info.focus,
.ms-megamenu .btn-info.disabled:active,
.ms-megamenu .btn-info[disabled]:active,
.ms-megamenu fieldset[disabled] .btn-info:active,
.ms-megamenu .btn-info.disabled.active,
.ms-megamenu .btn-info[disabled].active,
.ms-megamenu fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da; }

.ms-megamenu .btn-info .badge {
  color: #5bc0de;
  background-color: #fff; }

.ms-megamenu .btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }

.ms-megamenu .btn-warning:hover,
.ms-megamenu .btn-warning:focus,
.ms-megamenu .btn-warning.focus,
.ms-megamenu .btn-warning.active,
.ms-megamenu .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512; }

.ms-megamenu .btn-warning:active,
.ms-megamenu .btn-warning.active,
.ms-megamenu .open > .dropdown-toggle.btn-warning {
  background-image: none; }

.ms-megamenu .btn-warning.disabled,
.ms-megamenu .btn-warning[disabled],
.ms-megamenu fieldset[disabled] .btn-warning,
.ms-megamenu .btn-warning.disabled:hover,
.ms-megamenu .btn-warning[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-warning:hover,
.ms-megamenu .btn-warning.disabled:focus,
.ms-megamenu .btn-warning[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-warning:focus,
.ms-megamenu .btn-warning.disabled.focus,
.ms-megamenu .btn-warning[disabled].focus,
.ms-megamenu fieldset[disabled] .btn-warning.focus,
.ms-megamenu .btn-warning.disabled:active,
.ms-megamenu .btn-warning[disabled]:active,
.ms-megamenu fieldset[disabled] .btn-warning:active,
.ms-megamenu .btn-warning.disabled.active,
.ms-megamenu .btn-warning[disabled].active,
.ms-megamenu fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236; }

.ms-megamenu .btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff; }

.ms-megamenu .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }

.ms-megamenu .btn-danger:hover,
.ms-megamenu .btn-danger:focus,
.ms-megamenu .btn-danger.focus,
.ms-megamenu .btn-danger:active,
.ms-megamenu .btn-danger.active,
.ms-megamenu .open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925; }

.ms-megamenu .btn-danger:active,
.ms-megamenu .btn-danger.active,
.ms-megamenu .open > .dropdown-toggle.btn-danger {
  background-image: none; }

.ms-megamenu .btn-danger.disabled,
.ms-megamenu .btn-danger[disabled],
.ms-megamenu fieldset[disabled] .btn-danger,
.ms-megamenu .btn-danger.disabled:hover,
.ms-megamenu .btn-danger[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-danger:hover,
.ms-megamenu .btn-danger.disabled:focus,
.ms-megamenu .btn-danger[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-danger:focus,
.ms-megamenu .btn-danger.disabled.focus,
.ms-megamenu .btn-danger[disabled].focus,
.ms-megamenu fieldset[disabled] .btn-danger.focus,
.ms-megamenu .btn-danger.disabled:active,
.ms-megamenu .btn-danger[disabled]:active,
.ms-megamenu fieldset[disabled] .btn-danger:active,
.ms-megamenu .btn-danger.disabled.active,
.ms-megamenu .btn-danger[disabled].active,
.ms-megamenu fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a; }

.ms-megamenu .btn-danger .badge {
  color: #d9534f;
  background-color: #fff; }

.ms-megamenu .btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0; }

.ms-megamenu .btn-link,
.ms-megamenu .btn-link:active,
.ms-megamenu .btn-link.active,
.ms-megamenu .btn-link[disabled],
.ms-megamenu fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.ms-megamenu .btn-link,
.ms-megamenu .btn-link:hover,
.ms-megamenu .btn-link:focus,
.ms-megamenu .btn-link:active {
  border-color: transparent; }

.ms-megamenu .btn-link:hover,
.ms-megamenu .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent; }

.ms-megamenu .btn-link[disabled]:hover,
.ms-megamenu fieldset[disabled] .btn-link:hover,
.ms-megamenu .btn-link[disabled]:focus,
.ms-megamenu fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none; }

.ms-megamenu .btn-lg,
.ms-megamenu .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px; }

.ms-megamenu .btn-sm,
.ms-megamenu .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.ms-megamenu .btn-xs,
.ms-megamenu .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.ms-megamenu .btn-block {
  display: block;
  width: 100%; }

.ms-megamenu .btn-block + .btn-block {
  margin-top: 5px; }

/*---- Fix for magento 1.9---*/
#header-nav {
  display: block; }

.skip-nav {
  display: none; }

.ms-content {
  height: 100%; }

.ms-megamenu .row {
  margin: 0 !important;
  /*    marginesy*/ }

/* ============================================ *
 * Top Menu
 * ============================================ */
#header-nav {
  border: none; }

.ms-megamenu {
  box-sizing: border-box;
  text-align: left;
  display: block;
  height: auto; }
  .ms-megamenu .ms-topmenu {
    text-align: left;
    float: left;
    width: 100%;
    z-index: 199;
    margin: 0; }
  .ms-megamenu .ms-topmenu.no-responsive .mb-submenu,
  .ms-megamenu .anchor_mbmenu {
    display: none !important; }

/* ----- Linki Glowne Top Menu ----- */
.ms-topmenu .ms-level0 {
  width: 10%;
  height: 135px;
  float: left; }
  .ms-topmenu .ms-level0 .ms-label {
    display: table;
    float: left;
    width: 100%;
    height: 100%;
    padding-top: 85px;
    text-transform: none;
    text-align: center;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    outline: none !important;
    -moz-transition: background ease-in-out 150ms;
    -webkit-transition: background ease-in-out 150ms;
    -o-transition: background ease-in-out 150ms;
    transition: background ease-in-out 150ms;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent; }
    .ms-topmenu .ms-level0 .ms-label span.menu-icons {
      position: absolute;
      top: 15px;
      width: 100%;
      height: 74px;
      opacity: 0.8;
      background-repeat: no-repeat;
      background-position: center top;
      -moz-transition: opacity ease-in-out 150ms;
      -webkit-transition: opacity ease-in-out 150ms;
      -o-transition: opacity ease-in-out 150ms;
      transition: opacity ease-in-out 150ms; }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_11 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-11.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_1 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-01.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_2 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-02.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_3 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-03.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_4 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-04.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_6 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-06.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_7 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-07.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_8 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-08.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_9 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-09.png); }
      .ms-topmenu .ms-level0 .ms-label span.menu-icons.nav-img_10 {
        background-image: url(/skin/frontend/gastrro/default/images/menu-10.png); }
    .ms-topmenu .ms-level0 .ms-label h2,
    .ms-topmenu .ms-level0 .ms-label .menu-title {
      height: auto;
      display: table-cell;
      vertical-align: middle;
      padding: 0 5px;
      margin: 0px;
      font-size: 12px;
      font-weight: normal;
      line-height: 14px; }
      .ms-topmenu .ms-level0 .ms-label h2 a,
      .ms-topmenu .ms-level0 .ms-label .menu-title a {
        font-size: 12px;
        color: #6c839f;
        font-weight: normal;
        line-height: 14px;
        text-decoration: none !important;
        text-transform: uppercase; }
    .ms-topmenu .ms-level0 .ms-label .menu-title {
      color: #62719e;
      font-family: "Sarala", Tahoma, Arial, sans-serif;
      text-transform: uppercase;
      font-style: normal; }
    .ms-topmenu .ms-level0 .ms-label:before {
      content: "";
      width: 100%;
      height: 1px;
      background-color: transparent;
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      z-index: 100000; }
  .ms-topmenu .ms-level0:last-child .ms-label {
    background-image: none; }
  .ms-topmenu .ms-level0:hover .ms-label, .ms-topmenu .ms-level0:active .ms-label, .ms-topmenu .ms-level0:focus .ms-label {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent; }
  .ms-topmenu .ms-level0.active .ms-label {
    border-left: 1px solid #d4d6e2;
    border-right: 1px solid #d4d6e2; }
    .ms-topmenu .ms-level0.active .ms-label:before {
      background-color: #fff; }
  .ms-topmenu .ms-level0.active .ms-label, .ms-topmenu .ms-level0:hover .ms-label, .ms-topmenu .ms-level0:active .ms-label, .ms-topmenu .ms-level0:focus .ms-label {
    color: #3e5881;
    background-image: none;
    background-color: #fff; }
    .ms-topmenu .ms-level0.active .ms-label a, .ms-topmenu .ms-level0:hover .ms-label a, .ms-topmenu .ms-level0:active .ms-label a, .ms-topmenu .ms-level0:focus .ms-label a {
      color: #0867a9; }
    .ms-topmenu .ms-level0.active .ms-label span.menu-icons, .ms-topmenu .ms-level0:hover .ms-label span.menu-icons, .ms-topmenu .ms-level0:active .ms-label span.menu-icons, .ms-topmenu .ms-level0:focus .ms-label span.menu-icons {
      opacity: 1; }
  .ms-topmenu .ms-level0.nav-6 {
    /* h2{
         padding: 0 3px;
     }*/ }

/* ----- Zawartość Top Menu ----- */
.ms-topmenu .ms-submenu {
  position: absolute;
  top: 52px;
  height: 392px;
  z-index: 1000;
  padding: 0px;
  overflow: auto;
  /*        padding:0 15px 15px 15px;  marginesy*/
  max-width: 100%;
  min-width: 160px;
  background-color: #fff;
  border: 1px solid #d4d6e2;
  color: #636363;
  display: none;
  box-shadow: 0px 5px 9px -3px rgba(0, 0, 0, 0.2); }
  .ms-topmenu .ms-submenu ms-content .col-category {
    padding: 0 10px; }

#submenu-10,
#submenu-11 {
  height: auto; }

#submenu-11 .ms-category {
  position: relative; }
  #submenu-11 .ms-category:after {
    content: '';
    display: table;
    clear: both; }
  #submenu-11 .ms-category .col-category {
    position: static;
    padding: 0px; }
#submenu-11 .submenu-tytul h2,
#submenu-11 .submenu-tytul .menu-title-level1 {
  margin: 0px; }
  #submenu-11 .submenu-tytul h2 a,
  #submenu-11 .submenu-tytul .menu-title-level1 a {
    min-height: 78px; }
  #submenu-11 .submenu-tytul h2 a span,
  #submenu-11 .submenu-tytul .menu-title-level1 a span {
    font-weight: bold; }
    #submenu-11 .submenu-tytul h2 a span.podtytul,
    #submenu-11 .submenu-tytul .menu-title-level1 a span.podtytul {
      font-weight: normal; }

/* ----- Naglowek i footer w Zawartosci Top Menu ----- */
.ms-header, .mb-header {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd; }

.ms-footer, .mb-footer {
  float: left;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  margin-top: 15px; }

/* ----- Linki w Zawartosci Top Menu ----- */
#nav-1 .col-level {
  width: 200px; }

#nav-3 .col-level {
  width: 150px; }

#nav-9 .col-level {
  width: 200px; }

@media only screen and (max-width: 780px) {
  #nav-2 .col-level,
  #nav-1 .col-level,
  #nav-3 .col-level,
  #nav-9 .col-level {
    width: 100%; } }
#nav-1 .dynamic-content {
  padding-left: 210px; }

#nav-3 .dynamic-content {
  padding-left: 160px; }

#nav-9 .dynamic-content {
  padding-left: 210px; }

.ms-topmenu .ms-submenu .col-category .dynamic-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 240px; }
.ms-topmenu .ms-submenu .col-category .col-level {
  position: relative;
  padding: 0px;
  width: 230px;
  float: left;
  height: 390px;
  background-color: #f7f7fc; }
  .ms-topmenu .ms-submenu .col-category .col-level .pasek {
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    right: 0;
    background-color: #d4d6e2;
    z-index: 1; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul h2,
.ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 {
  min-height: 40px;
  margin-top: 10px;
  line-height: 1.5; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul .podtytul {
  text-transform: none;
  color: #556c94; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul .promocja a {
  display: block;
  text-align: center; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group,
.ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a,
.ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group,
.ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group,
.ms-topmenu .ms-submenu .col-category .form-group.parent > a {
  position: relative;
  border-left: 0px solid #0867a9;
  border-bottom: 1px solid #d4d6e2;
  display: block;
  width: 100%;
  background-color: #f7f7fc;
  padding: 10px 10px 10px 40px;
  font-size: 13px;
  text-transform: uppercase;
  color: #617795;
  -moz-transition: all ease-in-out .25s;
  -webkit-transition: all ease-in-out .25s;
  -o-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s; }
  .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons,
  .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons,
  .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons,
  .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons,
  .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    margin-left: 10px;
    left: 0;
    background: url(/skin/frontend/gastrro/default/images/ikony-do-menu.png) no-repeat;
    transition: transform 200ms linear; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_8,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_8, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_8,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_8,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_8,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_8 {
      background-position: 0px 0px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_4,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_4, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_4,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_4,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_4,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_4 {
      background-position: 0px -30px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_5,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_5, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_5,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_5,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_5,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_5 {
      background-position: 0px -60px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_6,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_6, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_6,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_6,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_6,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_6 {
      background-position: 0px -90px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_7,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_7, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_7,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_7,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_7,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_7 {
      background-position: 0px -120px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_9,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_9, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_9,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_9,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_9,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_9 {
      background-position: 0px -150px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_10,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_10, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_10,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_10,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_10,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_10 {
      background-position: 0px -180px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_277,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_277, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_277,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_277,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_277,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_277 {
      background-position: 0px -210px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_11,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_11, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_11,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_11,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_11,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_11 {
      background-position: 0px -240px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_13,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_13, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_13,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_13,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_13,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_13 {
      background-position: 0px -270px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_166,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_166, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_166,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_166,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_166,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_166 {
      background-position: 0px -300px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_175,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_175, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_175,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_175,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_175,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_175 {
      background-position: 0px -330px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_184,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_184, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_184,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_184,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_184,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_184 {
      background-position: 0px -360px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_200,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_200, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_200,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_200,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_200,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_200 {
      background-position: 0px -390px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_236,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_236, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_236,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_236,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_236,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_236 {
      background-position: 0px -420px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_522,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_522, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_522,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_522,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_522,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_522 {
      background-position: 0px -450px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_244,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_244, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_244,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_244,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_244,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_244 {
      background-position: 0px -480px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_284,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_284, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_284,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_284,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_284,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_284 {
      background-position: 0px -510px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_324,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_324, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_324,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_324,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_324,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_324 {
      background-position: 0px -540px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_292,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_292, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_292,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_292,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_292,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_292 {
      background-position: 0px -570px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_558,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_558, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_558,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_558,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_558,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_558 {
      background-position: 0px -600px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_559,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_559, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_559,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_559,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_559,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_559 {
      background-position: 0px -630px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_304,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_304, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_304,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_304,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_304,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_304 {
      background-position: -60px 0px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_305,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_305, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_305,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_305,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_305,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_305 {
      background-position: -60px -30px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_326,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_326, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_326,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_326,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_326,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_326 {
      background-position: -60px -60px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_333,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_333, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_333,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_333,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_333,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_333 {
      background-position: -60px -90px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_342,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_342, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_342,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_342,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_342,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_342 {
      background-position: -60px -120px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_346,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_346, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_346,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_346,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_346,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_346 {
      background-position: -60px -150px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_353,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_353, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_353,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_353,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_353,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_353 {
      background-position: -60px -180px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_361,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_361, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_361,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_361,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_361,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_361 {
      background-position: -60px -210px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_367,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_367, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_367,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_367,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_367,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_367 {
      background-position: -60px -240px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_722,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_722, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_722,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_722,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_722,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_722 {
      background-position: -60px -270px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_1044,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_1044, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_1044,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_1044,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_1044,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_1044 {
      background-position: -60px -300px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_1045,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_1045, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_1045,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_1045,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_1045,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_1045 {
      background-position: -60px -450px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_553,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_553, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_553,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_553,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_553,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_553 {
      background-position: -60px -480px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_1043,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_1043, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_1043,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_1043,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_1043,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_1043 {
      background-position: -60px -630px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_600,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_600, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_600,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_600,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_600,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_600 {
      background-position: -120px 0px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_514,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_514, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_514,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_514,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_514,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_514 {
      background-position: -120px -30px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_509,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_509, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_509,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_509,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_509,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_509 {
      background-position: -120px -60px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_511,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_511, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_511,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_511,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_511,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_511 {
      background-position: -120px -90px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_208,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_208, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_208,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_208,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_208,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_208 {
      background-position: -120px -540px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_1005,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_1005, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_1005,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_1005,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_1005,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_1005 {
      background-position: -120px -570px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_599,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_599, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_599,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_599,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_599,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_599 {
      background-position: -120px -600px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_440,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_440, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_440,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_440,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_440,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_440 {
      background-position: -120px -630px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_374,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_374, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_374,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_374,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_374,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_374 {
      background-position: -180px -540px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_619,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_619, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_619,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_619,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_619,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_619 {
      background-position: -180px -570px; }
    .ms-topmenu .ms-submenu .col-category .submenu-tytul h2 a.form-group span.menu-icons.img_697,
    .ms-topmenu .ms-submenu .col-category .submenu-tytul .menu-title-level1 a.form-group span.menu-icons.img_697, .ms-topmenu .ms-submenu .col-category .submenu-tytul > a span.menu-icons.img_697,
    .ms-topmenu .ms-submenu .col-category .form-group.parent h2 a.form-group span.menu-icons.img_697,
    .ms-topmenu .ms-submenu .col-category .form-group.parent .menu-title-level1 a.form-group span.menu-icons.img_697,
    .ms-topmenu .ms-submenu .col-category .form-group.parent > a span.menu-icons.img_697 {
      background-position: -180px -600px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_8, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_8, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_8, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_8,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_8 {
  background-position: -30px 0px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_4, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_4, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_4, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_4,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_4 {
  background-position: -30px -30px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_5, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_5, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_5, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_5,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_5 {
  background-position: -30px -60px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_6, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_6, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_6, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_6,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_6 {
  background-position: -30px -90px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_7, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_7, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_7, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_7,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_7 {
  background-position: -30px -120px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_9, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_9, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_9, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_9,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_9 {
  background-position: -30px -150px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_10, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_10, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_10, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_10,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_10 {
  background-position: -30px -180px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_277, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_277, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_277, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_277,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_277 {
  background-position: -30px -210px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_11, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_11, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_11, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_11,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_11 {
  background-position: -30px -240px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_13, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_13, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_13, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_13,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_13 {
  background-position: -30px -270px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_166, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_166, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_166, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_166,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_166 {
  background-position: -30px -300px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_175, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_175, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_175, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_175,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_175 {
  background-position: -30px -330px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_184, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_184, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_184, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_184,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_184 {
  background-position: -30px -360px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_200, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_200, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_200, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_200,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_200 {
  background-position: -30px -390px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_236, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_236, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_236, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_236,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_236 {
  background-position: -30px -420px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_522, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_522, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_522, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_522,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_522 {
  background-position: -30px -450px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_244, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_244, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_244, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_244,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_244 {
  background-position: -30px -480px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_284, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_284, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_284, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_284,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_284 {
  background-position: -30px -510px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_324, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_324, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_324, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_324,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_324 {
  background-position: -30px -540px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_292, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_292, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_292, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_292,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_292 {
  background-position: -30px -570px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_558, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_558, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_558, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_558,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_558 {
  background-position: -30px -600px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_559, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_559, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_559, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_559,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_559 {
  background-position: -30px -630px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_304, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_304, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_304, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_304,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_304 {
  background-position: -90px 0px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_305, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_305, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_305, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_305,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_305 {
  background-position: -90px -30px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_326, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_326, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_326, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_326,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_326 {
  background-position: -90px -60px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_333, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_333, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_333, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_333,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_333 {
  background-position: -90px -90px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_342, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_342, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_342, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_342,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_342 {
  background-position: -90px -120px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_346, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_346, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_346, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_346,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_346 {
  background-position: -90px -150px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_353, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_353, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_353, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_353,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_353 {
  background-position: -90px -180px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_361, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_361, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_361, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_361,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_361 {
  background-position: -90px -210px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_367, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_367, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_367, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_367,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_367 {
  background-position: -90px -240px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_722, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_722, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_722, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_722,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_722 {
  background-position: -90px -270px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_1044, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_1044, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_1044, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_1044,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_1044 {
  background-position: -90px -300px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_1045, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_1045, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_1045, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_1045,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_1045 {
  background-position: -90px -450px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_553, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_553, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_553, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_553,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_553 {
  background-position: -90px -480px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_1043, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_1043, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_1043, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_1043,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_1043 {
  background-position: -90px -630px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_600, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_600, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_600, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_600,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_600 {
  background-position: -150px 0px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_514, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_514, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_514, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_514,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_514 {
  background-position: -150px -30px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_509, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_509, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_509, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_509,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_509 {
  background-position: -150px -60px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_511, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_511, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_511, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_511,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_511 {
  background-position: -150px -90px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_208, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_208, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_208, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_208,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_208 {
  background-position: -150px -540px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_1005, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_1005, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_1005, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_1005,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_1005 {
  background-position: -150px -570px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_599, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_599, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_599, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_599,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_599 {
  background-position: -150px -600px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_440, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_440, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_440, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_440,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_440 {
  background-position: -150px -630px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_374, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_374, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_374, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_374,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_374 {
  background-position: -210px -540px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_619, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_619, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_619, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_619,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_619 {
  background-position: -210px -570px; }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group span.menu-icons.img_697, .ms-topmenu .ms-submenu .col-category .submenu-tytul:hover > a span.menu-icons.img_697, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active h2 a.form-group span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .submenu-tytul.active .menu-title-level1 a.form-group span.menu-icons.img_697, .ms-topmenu .ms-submenu .col-category .submenu-tytul.active > a span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover h2 a.form-group span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover .menu-title-level1 a.form-group span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .form-group.parent:hover > a span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active h2 a.form-group span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active .menu-title-level1 a.form-group span.menu-icons.img_697,
.ms-topmenu .ms-submenu .col-category .form-group.parent.active > a span.menu-icons.img_697 {
  background-position: -210px -600px; }
.ms-topmenu .ms-submenu .col-category .form-group.parent {
  margin: 0;
  padding: 0;
  z-index: 2; }
  .ms-topmenu .ms-submenu .col-category .form-group.parent a {
    float: left;
    border-right: 1px solid #d4d6e2; }
  .ms-topmenu .ms-submenu .col-category .form-group.parent.active a {
    color: #0867a9;
    text-decoration: none;
    border-left: 10px solid #0867a9;
    border-right: 1px solid transparent;
    background-color: #fff; }
    .ms-topmenu .ms-submenu .col-category .form-group.parent.active a .small {
      opacity: 0;
      filter: alpha(opacity=0); }
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover h2 a.form-group,
.ms-topmenu .ms-submenu .col-category .submenu-tytul:hover .menu-title-level1 a.form-group {
  color: #0867a9;
  text-decoration: none;
  border-left: 10px solid #0867a9;
  padding: 10px 10px 10px 40px; }
.ms-topmenu .ms-submenu .col-category h3.submenu-podkategorie {
  text-transform: none;
  margin-bottom: 0;
  /*                    a.level2{
                          transition:all 200ms linear;
                          font-weight: 400;
                          background: url(/skin/frontend/gastrro/default/images/strzalka.png) left 10px center no-repeat;
  
                          &:hover {
                              background: url(/skin/frontend/gastrro/default/images/strzalka-active.png) left 12px center no-repeat;
                              
                          }
                      }*/ }
.ms-topmenu .ms-submenu .col-category .submenu-podkategorie a.form-group,
.ms-topmenu .ms-submenu .col-category .submenu-podkategorie.form-group a {
  border-bottom: 1px dotted #d4d6e2;
  float: none;
  display: block;
  outline: none;
  line-height: 15px;
  font-size: 12px;
  text-decoration: none;
  color: #556c94;
  padding: 5px 5px 5px 10px;
  transition: padding 0.25s linear;
  -moz-transition: padding 0.25s linear;
  -webkit-transition: padding 0.25s linear; }
  .ms-topmenu .ms-submenu .col-category .submenu-podkategorie a.form-group:hover,
  .ms-topmenu .ms-submenu .col-category .submenu-podkategorie.form-group a:hover {
    color: #c1151a;
    padding-left: 15px; }

/* ----- Zdjecia ----- */
.ms-megamenu img {
  display: inline;
  vertical-align: middle;
  max-width: 100%; }
.ms-megamenu .col-category-image img {
  width: 80%;
  height: 80%;
  min-width: 83px;
  min-height: 83px; }

/* ----- Polecane Produkty ----- */
.ms-featured {
  height: 100%;
  position: relative; }
  .ms-featured > .form-group {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0; }
  .ms-featured .ms-boxtitle {
    text-align: center;
    color: #0867a9;
    width: 100%;
    text-transform: none;
    line-height: 30px;
    height: 30px;
    margin: 0; }
  .ms-featured .row {
    height: 100%; }
    .ms-featured .row:after {
      content: '';
      display: table;
      clear: both; }
    .ms-featured .row .f-product {
      border-bottom: 1px dotted #d4d6e2;
      height: 33.33333%; }
      .ms-featured .row .f-product.col-sm-12:nth-child(3) {
        border-bottom: none; }
      .ms-featured .row .f-product.col-sm-6:nth-child(5), .ms-featured .row .f-product.col-sm-6:nth-child(6) {
        border-bottom: none; }
      .ms-featured .row .f-product .product-image {
        font-size: 12px;
        color: #556c94;
        display: table-row;
        vertical-align: middle; }
        .ms-featured .row .f-product .product-image:after {
          content: '';
          display: table;
          clear: both; }
        .ms-featured .row .f-product .product-image .img {
          display: table-cell;
          vertical-align: middle;
          width: 85px; }
        .ms-featured .row .f-product .product-image img {
          width: 100%;
          max-width: 85px;
          height: auto;
          padding: 5px;
          background-color: #fff;
          border: 1px solid #EDEDED;
          display: block; }
        .ms-featured .row .f-product .product-image .price-box,
        .ms-featured .row .f-product .product-image .label,
        .ms-featured .row .f-product .product-image .price-label,
        .ms-featured .row .f-product .product-image .price-including-tax,
        .ms-featured .row .f-product .product-image .p-stara-cena {
          display: none; }
        .ms-featured .row .f-product .product-image .price-excluding-tax .p-katalog-cena,
        .ms-featured .row .f-product .product-image .price-excluding-tax .p-nowa-cena {
          color: #0867a9;
          font-size: 16px;
          font-weight: bold;
          margin-top: 10px; }
        .ms-featured .row .f-product .product-image .txt {
          height: 116px;
          text-align: left;
          display: table-cell;
          vertical-align: middle;
          padding-left: 10px; }
          .ms-featured .row .f-product .product-image .txt strong {
            font-weight: normal; }
        .ms-featured .row .f-product .product-image:hover {
          color: #c1151a;
          text-decoration: none; }
          .ms-featured .row .f-product .product-image:hover img {
            border: 1px solid #d4d6e2; }
          .ms-featured .row .f-product .product-image:hover .price-excluding-tax .p-katalog-cena,
          .ms-featured .row .f-product .product-image:hover .price-excluding-tax .p-nowa-cena {
            color: #c1151a; }

#nav-9 .ms-maincontent {
  width: 100% !important; }
#nav-9 .ms-featured {
  width: 35% !important;
  bottom: 0px;
  right: 0px;
  position: absolute; }
  #nav-9 .ms-featured .col-sm-12 {
    width: 100%;
    height: 100%; }
    #nav-9 .ms-featured .col-sm-12 .submenu-photo.zastawa a {
      height: 70%;
      width: 80%; }
    #nav-9 .ms-featured .col-sm-12 .submenu-photo.zastawa .submenu-bg {
      background: url(/media/megamenu/bg-menu/bg-zastawa.jpg) bottom no-repeat;
      background-size: 100%; }
    #nav-9 .ms-featured .col-sm-12 .submenu-photo a {
      position: absolute;
      bottom: 0;
      right: 0;
      display: block; }
      #nav-9 .ms-featured .col-sm-12 .submenu-photo a span {
        font-size: 12px;
        display: block;
        color: #c0c2d2;
        position: absolute;
        bottom: 5px;
        right: 15px;
        text-shadow: 1px 1px 1px black;
        font-style: italic; }
      #nav-9 .ms-featured .col-sm-12 .submenu-photo a:hover span {
        color: #ffffff; }
    #nav-9 .ms-featured .col-sm-12 .submenu-photo .submenu-bg {
      bottom: 0;
      right: 0;
      position: absolute;
      height: 100%;
      z-index: -1;
      width: 100%; }

@media only screen and (max-width: 1199px) {
  #nav-9 .ms-featured .col-sm-12 .submenu-photo.zastawa a {
    height: 60%;
    width: 75%; } }
@media only screen and (max-width: 979px) {
  #nav-9 .ms-featured .col-sm-12 .submenu-photo.zastawa a {
    height: 50%;
    width: 70%; }
    #nav-9 .ms-featured .col-sm-12 .submenu-photo.zastawa a span {
      font-size: 10px; } }
@media only screen and (max-width: 1060px) {
  .ms-featured .row .f-product .product-image .img {
    width: 65px; } }
@media only screen and (max-width: 959px) {
  .ms-featured {
    display: none; }

  #nav-9 .ms-featured {
    display: block; }

  .ms-maincontent {
    width: 100% !important; } }
/* ----- Dynamiczna Zawartosc Top Menu ----- */
.ms-category-dynamic .col-dynamic {
  display: none;
  padding-top: 15px;
  height: 380px;
  column-count: 2;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-fill: auto;
  -webkit-column-fill: auto;
  -moz-column-fill: auto; }
  .ms-category-dynamic .col-dynamic#dynamic-5, .ms-category-dynamic .col-dynamic#dynamic-599, .ms-category-dynamic .col-dynamic#dynamic-619, .ms-category-dynamic .col-dynamic#dynamic-1005, .ms-category-dynamic .col-dynamic#dynamic-697, .ms-category-dynamic .col-dynamic#dynamic-440, .ms-category-dynamic .col-dynamic#dynamic-374, .ms-category-dynamic .col-dynamic#dynamic-418 {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3; }
  .ms-category-dynamic .col-dynamic#dynamic-304, .ms-category-dynamic .col-dynamic#dynamic-305, .ms-category-dynamic .col-dynamic#dynamic-326, .ms-category-dynamic .col-dynamic#dynamic-333, .ms-category-dynamic .col-dynamic#dynamic-342, .ms-category-dynamic .col-dynamic#dynamic-346, .ms-category-dynamic .col-dynamic#dynamic-353, .ms-category-dynamic .col-dynamic#dynamic-361, .ms-category-dynamic .col-dynamic#dynamic-367 {
    column-count: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1; }
  .ms-category-dynamic .col-dynamic#dynamic-208 {
    column-count: 4;
    -webkit-column-count: 4;
    -moz-column-count: 4; }
  .ms-category-dynamic .col-dynamic .col-xs-12 > div.form-group {
    float: left;
    width: 20%;
    margin-bottom: 10px; }
    .ms-category-dynamic .col-dynamic .col-xs-12 > div.form-group a {
      margin: 0 10px 0 10px;
      display: block;
      width: auto;
      height: auto; }
      .ms-category-dynamic .col-dynamic .col-xs-12 > div.form-group a span {
        display: block;
        width: 100%;
        float: none; }
      .ms-category-dynamic .col-dynamic .col-xs-12 > div.form-group a span.col-category-name {
        height: 55px;
        vertical-align: middle;
        padding-top: 5px;
        line-height: 14px; }
.ms-category-dynamic .col-dynamic.active {
  display: block; }
.ms-category-dynamic .col-category-image img {
  outline: 0; }
.ms-category-dynamic .col-xs-6.dynamic-content {
  width: 75%; }
.ms-category-dynamic .col-category {
  /*        padding: 0 5px; marginesy */
  padding: 0px; }
.ms-category-dynamic .dynamic-viewall {
  text-align: center;
  text-transform: uppercase;
  color: #175271 !important;
  font-weight: 600;
  font-size: 13px;
  -ms-transform: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out; }
  .ms-category-dynamic .dynamic-viewall small {
    padding-left: 6px; }
  .ms-category-dynamic .dynamic-viewall:hover {
    text-decoration: none;
    color: #860F0F !important;
    border-color: #860F0F; }

@media only screen and (max-width: 1199px) {
  .ms-category-dynamic .col-dynamic#dynamic-208 {
    column-count: 3;
    -webkit-column-count: 3;
    -moz-column-count: 3; } }
/* ----- Produkt -----*/
.ms-productgrid .item .product-image,
.ms-megamenu .f-product .product-image,
.ms-megamenu .f-category .product-image {
  border: none; }

.ms-megamenu .f-product .product-image img {
  max-width: 100%; }

.mb-content .item,
.mb-content .col-productlist,
.mb-content .col-category,
.mb-featured .f-product,
.mb-featured .f-category {
  padding-top: 10px; }

/* ============================================ *
 * Mobilna wersja Top Menu
 * ============================================ */
/* ----- Zawartosc w Menu mobilnym ----- */
.ms-megamenu .mb-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  z-index: -1;
  background: #fff;
  display: none;
  float: left;
  width: 100%;
  color: #636363; }
.ms-megamenu .mb-submenu.blind {
  position: static; }
.ms-megamenu .mb-submain,
.ms-megamenu .ms-topmenu .nav-1 .mb-submain {
  border: 0; }

/* ----- Podkategorie w Wersji Mobilnej ----- */
.mb-submenu .ms-category-level .col-category .col-sub {
  display: none;
  -moz-transition: all ease-in-out 100ms;
  -webkit-transition: all ease-in-out 100ms;
  -o-transition: all ease-in-out 100ms;
  transition: all ease-in-out 100ms;
  background-image: none;
  background-color: #f5f6f8;
  border-bottom: 1px solid #cccccc;
  border-radius: 0; }
.mb-submenu .ms-category-level .col-category .active > .col-sub {
  display: block; }
.mb-submenu .mb-submain.col-xs-12 .mb-content.form-group,
.mb-submenu .mb-submain.col-xs-12 .mb-maincontent,
.mb-submenu .mb-submain.col-xs-12 .col-category.col-xs-12,
.mb-submenu .mb-submain.col-xs-12 p.ms-megamenu.form-group {
  padding: 0;
  margin: 0; }

/* ----- Dodatkowe niepotrzebne naglowki w Menu mobilnym ----- */
.ms-megamenu .mb-submenu.blind .mb-return,
.ms-megamenu .lmb-submenu.blind .mb-return {
  display: none;
  border: 0;
  z-index: 200; }
.ms-megamenu .mb-submenu .mb-return span,
.ms-megamenu .lmb-submenu .mb-return span {
  float: left; }

/* ----- Znaki "+" w Menu mobilnym ----- */
.ms-megamenu .mb-label {
  padding: 15px 15px 12px 15px;
  border-top: 0;
  color: #2f2f2f;
  text-decoration: none;
  outline: none;
  display: none !important;
  position: absolute;
  right: 1px;
  top: 0;
  background: none;
  background-image: none; }
.ms-megamenu .parent .small {
  float: right;
  top: 4px; }

/* ----- Linki w Zawartosci Wersji Mobilnej ----- */
.ms-megamenu .mb-submenu .ms-category-level .col-category .col-xs-12.col-level a.form-group {
  font-weight: normal;
  display: inline;
  width: auto;
  color: #3b5998;
  padding: 0;
  border: none;
  line-height: 18px; }
.ms-megamenu .mb-submenu .mb-submain.col-xs-12 .col-xs-12.col-sub .row .col-xs-12,
.ms-megamenu .mb-submenu .mb-submain.col-xs-4 {
  padding: 10px 15px 0 35px;
  width: 100%; }

/* ----- Pasek wersji mobilnej ??? ----- */
.hidden-lg.hidden-md.hidden-sm.col-xs-12.form-group {
  background-color: #000;
  height: 30px;
  display: none; }

/* ----- Zmniejszenie marginesu wewnetrznego dla Glownych Linkow Top Menu 


@media (max-width: 1080px){

    .ms-megamenu{
        
        .ms-topmenu {
        
            .ms-label{
                padding: 10px 5px;
            }
        }
    }
}
----- */
/* ----- Larger - Zmniejszenie wielkosci Linkow Glownych Top Menu ----- */
@media only screen and (max-width: 1000px) {
  .ms-megamenu .ms-topmenu .ms-level0 {
    width: 9%;
    height: 120px; }
    .ms-megamenu .ms-topmenu .ms-level0.nav-1, .ms-megamenu .ms-topmenu .ms-level0.nav-2, .ms-megamenu .ms-topmenu .ms-level0.nav-10 {
      width: 11%; }
    .ms-megamenu .ms-topmenu .ms-level0.nav-6 {
      width: 12%; }
    .ms-megamenu .ms-topmenu .ms-level0.nav-7 {
      width: 10%; }
    .ms-megamenu .ms-topmenu .ms-level0 .ms-label {
      padding-top: 70px; }
      .ms-megamenu .ms-topmenu .ms-level0 .ms-label h2 a,
      .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-title a {
        font-size: 11px;
        line-height: 12px; }
      .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons {
        height: 59px;
        top: 10px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_11 {
          background-size: 34px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_1 {
          background-size: 51px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_2 {
          background-size: 43px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_3 {
          background-size: 56px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_4 {
          background-size: 44px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_6 {
          background-size: 54px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_7 {
          background-size: 42px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_8 {
          background-size: 51px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_9 {
          background-size: 49px 59px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons.nav-img_10 {
          background-size: 57px 59px; }

  .div-temp {
    height: 0px; } }
/* ----- Medium - Zawartość Glownych Zakladek Top Menu ----- */
@media (min-width: 781px) {
  .ms-megamenu .ms-topmenu .mb-submenu {
    display: none !important; } }
/* ----- Medium - Mobilna wersja Top Menu ----- */
#m_submenu-11 .promocja,
#m_submenu-11 h2 .podtytul,
#m_submenu-11 .menu-title-level1 .podtytul {
  display: none; }
#m_submenu-11 .col-category {
  width: 100%;
  padding-top: 0px; }
#m_submenu-11 h2,
#m_submenu-11 .menu-title-level1 {
  font-size: 15px;
  padding-left: 25px;
  border-bottom: 1px solid #d4d6e2;
  text-align: left;
  line-height: 40px;
  background-image: none;
  display: block;
  width: 100%;
  margin: 0px; }
  #m_submenu-11 h2 a span,
  #m_submenu-11 .menu-title-level1 a span {
    color: #0867a9;
    font-weight: 600;
    text-transform: none; }
  #m_submenu-11 h2 a:hover span,
  #m_submenu-11 .menu-title-level1 a:hover span {
    color: #c1151a; }

@media (max-width: 780px) {
  .ms-megamenu .ms-topmenu {
    background-color: transparent;
    display: block; }
    .ms-megamenu .ms-topmenu .ms-level0 {
      height: auto;
      float: left;
      width: 100%;
      display: none;
      position: relative; }
      .ms-megamenu .ms-topmenu .ms-level0 .ms-label {
        text-transform: none;
        background-image: none;
        padding: 12px 15px 0 !important;
        border-bottom: 1px solid #6d7c8f;
        border-top: 0;
        text-decoration: none;
        outline: none;
        width: 100%;
        float: left;
        cursor: default;
        height: 45px; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-icons {
          display: none; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label h2,
        .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-title {
          padding: 0px;
          display: block; }
          .ms-megamenu .ms-topmenu .ms-level0 .ms-label h2 a,
          .ms-megamenu .ms-topmenu .ms-level0 .ms-label .menu-title a {
            font-size: 15px;
            color: #fff;
            font-weight: 500;
            text-transform: uppercase;
            line-height: 20px; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-label {
        display: block !important; }
      .ms-megamenu .ms-topmenu .ms-level0 .ms-label,
      .ms-megamenu .ms-topmenu .ms-level0 .mb-label {
        font-size: 15px;
        color: #fff;
        background-color: #485d7f;
        transition: background 150ms ease-in-out 0s; }
      .ms-megamenu .ms-topmenu .ms-level0 .ms-submenu {
        display: none !important; }
        .ms-megamenu .ms-topmenu .ms-level0 .ms-submenu a {
          color: #586576; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .col-level.active .col-sub {
        display: block; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .mb-featured {
        display: none; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .form-group,
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .col-xs-12.col-level > a.form-group {
        font-size: 15px;
        padding-left: 25px;
        border-bottom: 1px solid #d4d6e2;
        text-align: left;
        line-height: 40px;
        background-image: none;
        display: block;
        width: 100%; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .form-group a,
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .col-xs-12.col-level > a.form-group {
        color: #0867a9;
        font-weight: 600; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .form-group a:hover,
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level a.form-group:hover,
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .col-xs-12.col-level > a.form-group:hover {
        text-decoration: underline;
        color: #C1151A; }
      .ms-megamenu .ms-topmenu .ms-level0 .mb-submenu .ms-category-level .form-group small {
        font-size: 15px;
        padding: 15px 15px 12px 15px;
        top: 0;
        right: 1px; }
    .ms-megamenu .ms-topmenu .ms-level0:nth-child(3),
    .ms-megamenu .ms-topmenu .ms-level0:nth-child(4),
    .ms-megamenu .ms-topmenu .ms-level0:nth-child(5),
    .ms-megamenu .ms-topmenu .ms-level0:nth-child(7),
    .ms-megamenu .ms-topmenu .ms-level0:nth-child(8),
    .ms-megamenu .ms-topmenu .ms-level0:nth-child(11) {
      width: 100%; }
    .ms-megamenu .ms-topmenu .ms-level0.active .ms-label,
    .ms-megamenu .ms-topmenu .ms-level0:hover .ms-label,
    .ms-megamenu .ms-topmenu .ms-level0:active .ms-label,
    .ms-megamenu .ms-topmenu .ms-level0:focus .ms-label,
    .ms-megamenu .ms-topmenu .ms-level0.mbactive .ms-label,
    .ms-megamenu .ms-topmenu .ms-level0.mbactive.active .ms-label {
      background-image: none;
      background-color: #6d7c8f;
      border-bottom: 1px solid #6d7c8f; }
    .ms-megamenu .ms-topmenu .ms-level0.active .mb-label,
    .ms-megamenu .ms-topmenu .ms-level0:hover .mb-label,
    .ms-megamenu .ms-topmenu .ms-level0:active .mb-label,
    .ms-megamenu .ms-topmenu .ms-level0:focus .mb-label,
    .ms-megamenu .ms-topmenu .ms-level0.mbactive .mb-label,
    .ms-megamenu .ms-topmenu .ms-level0.mbactive.active .mb-label {
      background-color: #6d7c8f; }
    .ms-megamenu .ms-topmenu .mbactive .mb-submenu.slide {
      z-index: 201;
      display: inline; }
    .ms-megamenu .ms-topmenu .anchor_mbmenu {
      display: block !important;
      background-color: #2c394e;
      height: 45px;
      text-align: center; }
      .ms-megamenu .ms-topmenu .anchor_mbmenu .anchor_mbmenu_text {
        outline: 0;
        text-decoration: none;
        color: #FFFFFF;
        font-size: 15px; }
  .ms-megamenu .ms-topmenu.active .ms-level0 {
    display: block; }
  .ms-megamenu .ms-boxtitle {
    color: #636363; } }
/* ============================================ *
 * Left Menu
 * ============================================ *

.ms-leftmenu .msl-label{
    font-size:15px;
    text-transform:none;
    color:#2F2F2F;
    background: #FFFFFF;
}

.ms-leftmenu .msl-label .ms-iconmega{
    height:15px;
    top:3.75px;
}

.ms-leftmenu .msl-level0.active .msl-label,
.ms-leftmenu .msl-level0:hover .msl-label,
.ms-leftmenu .msl-level0:active .msl-label,
.ms-leftmenu .msl-level0:focus .msl-label{
    color:#2F2F2F;
    background-color:#DEDEDE;
}

.ms-leftmenu .msl-submenu,.ms-leftmenu .col-sub{
    background-color:#FFFFFF;
    color:#636363;
}

.ms-leftmenu .msl-submenu a{
    color:#636363;
}

.ms-leftmenu .ms-boxtitle{
    color:#636363;
}

.ms-leftmenu .col-category .sub-level3{
}





 * ============================================ *
 * Mobile version Left Menu
 * ============================================ *

  
@media (min-width: 780px){
    
    .ms-leftmenu .lmb-submenu{
        display: none !important;
    }
}

@media (max-width: 779px){
    
    .ms-megamenu .ms-leftmenu{
        background-color:transparent; 
    }
    
    .ms-megamenu .anchor_mbmenu,.ms-megamenu .mb-label{
        display: block !important;
    }
    
    .ms-leftmenu  .msl-level0{
        float:left;
        width: 100%;
        display: none;
        position: relative;
    }
    
    .ms-leftmenu.active .msl-level0{
        display: block;
    }
    
    .ms-leftmenu  .msl-label{
        padding: 12px 15px 8px !important;
        background: #FFFFFF;
        border: 1px solid #ddd;
        border-top: 0;
        color: #2f2f2f;
        text-decoration: none;
        outline: none;
        width: 100%;
        float:left;
        min-height:43px;
    }
    
   .ms-leftmenu .msl-submenu{
       display: none !important;
   }
   
   .ms-leftmenu .mbactive .lmb-submenu{
        z-index: 201;
        display: inline;
    }

    .msl-level0 .msl-label,
    .ms-megamenu .mb-label{
        font-size:15px;
        text-transform:none;
        color:#2F2F2F;
    }

    .ms-leftmenu .msl-level0.active .msl-label,
    .ms-leftmenu .msl-level0:hover .msl-label,
    .ms-leftmenu .msl-level0:active .msl-label,
    .ms-leftmenu .msl-level0:focus .msl-label,
    .ms-leftmenu .msl-level0:hover .mb-label,
    .ms-leftmenu .msl-level0:active .mb-label,
    .ms-leftmenu .msl-level0:focus .mb-label,
    .ms-megamenu .mbactive .ms-label,
    .ms-megamenu .mbactive .mb-return,
    .ms-megamenu .mbactive .mb-label{
        background-color:#EBEDED;
        color:#2F2F2F;
    }
    
    .ms-megamenu .anchor_mbmenu,
    .ms-megamenu .anchor_lmbmenu{
        background-color:#2c394e;
    }
    
    .ms-megamenu .anchor_mbmenu .anchor_mbmenu_text,
    .ms-megamenu .anchor_lmbmenu_text{
        color:#FFFFFF;
    }

    .ms-megamenu .lmb-submenu{
        background-color:#FFFFFF;
        color:#636363;
    }
    
    .ms-megamenu .ms-boxtitle{
        color:#636363;
    }

    .ms-megamenu .lmb-submenu a{
        color:#636363;
    }
    
    .mb-content.form-group {
        margin: 0;
    }
}

*/
/*
.ms-level0.item_relative{
    position: relative;
}

.ms-category-level .col-sub{
    display: none;
    position: absolute;
    left: 150px;
    width: 16em;
    background-color: #fff;
    z-index: 201;
    padding: 12px;
    min-width: 12em;
    -webkit-box-shadow: 0px 1px 10px rgb(153, 153, 153);
    box-shadow: 0px 2px 12px rgb(153, 153, 153);
}

.level2  small{
    font-size: 50%;
    top: -2px;
}

.level2.active .level2{
    text-indent: 5px;
    -moz-transition: all ease-in-out 100ms;
    -webkit-transition: all ease-in-out 100ms;
    -o-transition: all ease-in-out 100ms;
    transition: all ease-in-out 100ms;
}

.mb-version .col-category .sub-level3{
    width: 100%;
    float: left;
    z-index: 201;
    padding:0 10px;
}

.mb-submenu .parent .col-sub,
.lmb-submenu .parent .col-sub{
    padding:0 0 0 10px;
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
}

.mb-submenu .parent .form-group a{
    float:left;
}

small.glyphicon.icon-th-large{
    font-size: 50%;
    margin-left: -6px;
    padding-right: 5px;
    top: -2px;
}

.megamenu-mobile .mb-topmenu{
    display:none;
    position: relative;
    float:left;
    width:100%;
}

*/
/*---------------------Mobile version-------------------------*/
/* ----- Left Menu ---------*


.item_relative{
    position: relative;
}

.ms-leftmenu{
    position: relative;
    z-index: 200;
    text-align: left;
    float:left;
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.ms-leftmenu .msl-level0{
    float:left;
    width:100%;
}

.ms-leftmenu .msl-submenu{
    display: none;
    position: absolute;
    top: 0px;
    left:239px;
    z-index: 200;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 160px;
}

.ms-leftmenu .msl-label{
    padding: 12px 25px 8px;
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-top: 0;
    color: #2f2f2f;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    line-height: 1.5;
    float:left;
    width:100%;
}

.ms-leftmenu .msl-label.first{
    border-top: 1px solid #ddd;
}

.ms-leftmenu .msl-label.flag{
    background: #EBEDED;
}

.ms-leftmenu .msl-label span.small{
    float: right;
    margin-right: -15px;
}


/*---------------------Mobile version for Left menu -------------------------*


.lmegamenu-mobile{
    display: none;
}

.ms-megamenu .anchor_lmbmenu{
    background: rgb(7, 70, 102);
    padding: 8px 0;
}

.ms-megamenu .anchor_lmbmenu .anchor_lmbmenu_text{
    outline: 0;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
}

.lmegamenu-mobile .lmb-leftmenu{
    display:none;
    position: relative;
    text-align:left;
    float:left;
    width:100%;
}

.ms-megamenu .lmb-submenu{
    position: absolute;
    left: 100%;
    top:0;
    z-index: -1;
    background: #fff;
    display:none;
    float:left;
    width: 100%;
}

.ms-megamenu .lmb-submenu.blind{
    position: static;
}

.ms-megamenu .lmb-label{
    padding:12px 25px 8px;
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-top: 0;
    color: #2f2f2f;
    text-decoration: none;
    outline: none;
}

.ms-megamenu .lmb-label.flag{
    background: #EBEDED;
}

.ms-megamenu .lmb-label.lmb-return{
    border: 0;
}

.ms-megamenu .lmb-label span{
    float:left;
}

.ms-megamenu .lmb-click span{
    float: right;
    margin-right: -15px;
}


@media (max-width: 768px){

}

*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }
@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); }
  100% {
    -webkit-transform: none;
    transform: none; } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }
@keyframes zoomOut {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  100% {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel .owl-refresh .owl-item {
  display: none; }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto; }

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img {
  transform-style: preserve-3d;
  height: inherit;
  max-width: 100%;
  width: auto; }

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://www.gastrro.pl/skin/frontend/gastrro/default/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1; }

#banner-slider1.owl-theme .owl-controls .owl-nav div {
  color: #617795;
  background-color: transparent;
  font-size: 40px; }

#banner-slider1.owl-theme .owl-controls .owl-nav div:hover {
  color: #0867a9; }

#banner-slider1.owl-theme .owl-controls .owl-dot span {
  background: #67809f;
  border: 1px solid #f7f7fc; }

#banner-slider1.owl-theme .owl-controls .owl-dot.active span,
#banner-slider1.owl-theme .owl-controls .owl-dot:hover span {
  background: #fff;
  border: 1px solid #67809f; }

#banner-slider1 {
  border-bottom: 1px solid #d4d6e2; }

.image-gallery-outer {
  height: 352px;
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff url(/skin/frontend/gastrro/default/images/slider-bg.jpg) top 0 left repeat-x; }

.slide-content {
  height: 100%; }

.slide-desc h2, .slide-desc h3, .slide-desc h4, .slide-desc h5, .slide-desc h6 {
  text-transform: none;
  font-weight: bold; }
.slide-desc .blue {
  color: #0867a9; }
.slide-desc .bold {
  font-weight: bold; }
.slide-desc .m-15 {
  margin-bottom: 15px; }
.slide-desc .m-20 {
  margin-bottom: 20px; }
.slide-desc .m-25 {
  margin-bottom: 25px; }

.slide-desc-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 100%;
  text-align: center;
  padding: 2% 0 2% 65px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 40%; }
  .slide-desc-box.t-left {
    text-align: left; }
  .slide-desc-box.t-right {
    text-align: right; }
  .slide-desc-box.t-center {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100%; }
    .slide-desc-box.t-center .slide-content {
      height: 100%; }
    .slide-desc-box.t-center .slide-desc {
      height: 100%; }
      .slide-desc-box.t-center .slide-desc:after {
        content: '';
        display: table;
        clear: both; }
      .slide-desc-box.t-center .slide-desc .f-left {
        float: left;
        height: 100%; }
      .slide-desc-box.t-center .slide-desc .f-right {
        float: right;
        height: 100%; }
      .slide-desc-box.t-center .slide-desc .f-left a,
      .slide-desc-box.t-center .slide-desc .f-right a {
        display: block;
        height: 100%;
        width: auto;
        max-width: 100%; }
  .slide-desc-box .slide-title {
    display: none;
    font-size: 36px;
    font-weight: bold;
    text-transform: none; }
  .slide-desc-box h3 {
    color: #c1151a;
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0; }
    .slide-desc-box h3 span {
      font-size: 24px; }
  .slide-desc-box h4 {
    color: #0867a9;
    font-size: 24px;
    margin: 0 0 10px 0;
    padding: 0; }
  .slide-desc-box h5 {
    color: #0867a9;
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 0; }
  .slide-desc-box p {
    color: #556c94;
    font-size: 18px;
    margin: 0 0 10px 0;
    padding: 0;
    font-weight: normal; }
    .slide-desc-box p.slider-button, .slide-desc-box p.slider-button-red {
      display: block;
      margin: 0 0 10px 0; }
      .slide-desc-box p.slider-button a, .slide-desc-box p.slider-button-red a {
        display: inline-block;
        line-height: 1.4;
        font-size: 18px;
        font-weight: normal;
        padding: 5px;
        width: auto;
        cursor: pointer;
        background-color: transparent;
        transition: all 500ms ease-out;
        -webkit-transition: all 500ms ease-out;
        -moz-transition: all 500ms ease-out;
        -o-transition: all 500ms ease-out; }
        .slide-desc-box p.slider-button a:hover, .slide-desc-box p.slider-button-red a:hover {
          color: #fff;
          text-decoration: none; }
    .slide-desc-box p.slider-button a {
      color: #0867a9;
      border: 2px solid #0867a9; }
      .slide-desc-box p.slider-button a:hover {
        background-color: #0867a9; }
    .slide-desc-box p.slider-button-red a {
      color: #c1151a;
      border: 2px solid #c1151a; }
      .slide-desc-box p.slider-button-red a:hover {
        background-color: #c1151a; }
  .slide-desc-box ul {
    list-style: disc outside url(/skin/frontend/gastrro/default/images/kropka-slider.png);
    margin: 0 0 10px 0; }
    .slide-desc-box ul li {
      padding: 0;
      margin: 0 0 0 15px;
      font-size: 15px;
      color: #556c94;
      line-height: 1.4; }
      .slide-desc-box ul li.others {
        display: none; }

.owl-theme .owl-controls {
  margin-top: 0px;
  text-align: center; }

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div {
  border: 0 none;
  height: 30px;
  position: absolute;
  width: 25px;
  top: 50%;
  position: absolute;
  font-size: 25px;
  font-family: "Comic Sans MS", cursive;
  color: #fff;
  line-height: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  background: transparent url(/skin/frontend/gastrro/default/images/slider-strzalki.png) no-repeat; }

.owl-theme .owl-controls .owl-nav .owl-prev {
  left: 20px;
  background-position: 0px 0px; }

.owl-theme .owl-controls .owl-nav .owl-next {
  right: 20px;
  background-position: -50px 0px; }

.owl-theme .owl-controls .owl-nav .owl-prev:hover {
  background-position: 0px -50px; }

.owl-theme .owl-controls .owl-nav .owl-next:hover {
  background-position: -50px -50px; }

@media only screen and (max-width: 1199px) {
  .slide-desc-box h3 {
    font-size: 30px; }
    .slide-desc-box h3 span {
      font-size: 20px; }
  .slide-desc-box h4 {
    font-size: 20px; }
  .slide-desc-box h5 {
    font-size: 15px; }
  .slide-desc-box p {
    font-size: 15px; }
    .slide-desc-box p.slider-button a {
      font-size: 15px; }
  .slide-desc-box ul li {
    font-size: 15px; } }
@media only screen and (max-width: 1050px) {
  .slide-desc-box h3 {
    font-size: 25px; }
    .slide-desc-box h3 span {
      font-size: 18px; }
  .slide-desc-box h4 {
    font-size: 18px; }
  .slide-desc-box h5 {
    font-size: 13px; }
  .slide-desc-box p {
    font-size: 13px; }
    .slide-desc-box p.slider-button a {
      font-size: 13px; }
  .slide-desc-box ul li {
    font-size: 13px;
    font-weight: normal; } }
@media only screen and (max-width: 959px) {
  .slide-desc-box {
    padding: 2% 0 2% 45px; }
    .slide-desc-box h3 {
      font-size: 21px; }
      .slide-desc-box h3 span {
        font-size: 16px; }
    .slide-desc-box h4 {
      font-size: 16px; }
    .slide-desc-box p {
      display: none; }
      .slide-desc-box p.slider-button {
        display: inline; }
        .slide-desc-box p.slider-button a {
          font-size: 13px;
          padding: 2px 5px; }
    .slide-desc-box ul {
      list-style: disc outside url(/skin/frontend/gastrro/default/images/kropka-slider2.png); }
      .slide-desc-box ul li:nth-child(n+4) {
        display: none; }
      .slide-desc-box ul li.others {
        display: list-item; }

  .owl-theme .owl-controls .owl-nav div {
    height: 23px;
    width: 19px; }
  .owl-theme .owl-controls .owl-nav .owl-prev {
    background-position: 0px -100px;
    left: 10px; }
    .owl-theme .owl-controls .owl-nav .owl-prev:hover {
      background-position: 0px -150px; }
  .owl-theme .owl-controls .owl-nav .owl-next {
    background-position: -50px -100px;
    right: 10px; }
    .owl-theme .owl-controls .owl-nav .owl-next:hover {
      background-position: -50px -150px; } }
@media only screen and (max-width: 780px) {
  .slide-desc-box {
    padding: 2% 0 2% 45px; }
    .slide-desc-box h3 {
      font-size: 21px; }
      .slide-desc-box h3 span {
        font-size: 16px;
        display: block; }
    .slide-desc-box h4 {
      font-size: 16px; }
    .slide-desc-box p {
      display: none; }
      .slide-desc-box p.slider-button {
        display: inline; }
        .slide-desc-box p.slider-button a {
          font-size: 13px;
          padding: 2px 5px; }
    .slide-desc-box ul {
      display: none; } }
@media only screen and (max-width: 620px) {
  .slide-desc-box {
    padding: 2% 0 2% 40px; }
    .slide-desc-box h3 {
      font-size: 18px; }
      .slide-desc-box h3 span {
        font-size: 13px; }
    .slide-desc-box h4 {
      font-size: 13px; }
    .slide-desc-box h5 {
      font-size: 12px;
      font-weight: normal; }
    .slide-desc-box p.slider-button a {
      font-size: 13px;
      padding: 2px 5px; } }
@media only screen and (max-width: 560px) {
  .slide-desc-box h3 {
    font-size: 12px;
    font-weight: normal; }
    .slide-desc-box h3 span {
      font-size: 12px;
      font-weight: normal; }
  .slide-desc-box h4 {
    font-size: 12px;
    font-weight: normal; }
  .slide-desc-box h5 {
    display: none; }
  .slide-desc-box p.slider-button a {
    font-size: 12px;
    padding: 1px 4px;
    font-weight: normal; } }
/* Styling Pagination*/
.owl-theme .owl-controls .owl-dots {
  position: absolute;
  bottom: 15px;
  display: inline-block;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }

.owl-theme .owl-controls .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 0 3px; }

.owl-theme .owl-controls .owl-dot span {
  display: block;
  background: none repeat scroll 0 0 transparent;
  border-radius: 15px;
  cursor: pointer;
  display: block;
  height: 15px;
  width: 15px;
  z-index: 9;
  margin: 0 0 0 0; }

.owl-theme .owl-controls .owl-dot.active span,
.owl-theme .owl-controls.clickable .owl-dot:hover span {
  background: none repeat scroll 0 0 #d5d5d5; }

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-dot span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px; }

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(https://www.gastrro.pl/skin/frontend/gastrro/default/css/AjaxLoader.gif) no-repeat center center; }

@media only screen and (max-width: 959px) {
  .owl-theme .owl-controls .owl-dots {
    bottom: 5px; }

  .owl-theme .owl-controls .owl-dot span {
    height: 12px;
    width: 12px; } }
@media only screen and (max-width: 780px) {
  .owl-theme .owl-controls .owl-dots {
    bottom: 0px; } }
/* Overlay */
/* ----- Wybierz swoj DARMOWY PREZENT ----- */
#ampromo-items-add {
  text-align: center;
  margin: 50px auto 40px; }

#ampromo-items-add a {
  display: block;
  text-decoration: none;
  max-width: 370px;
  height: 65px;
  margin: 0 auto; }
  #ampromo-items-add a > div {
    border: 1px solid #d4d6e2;
    background-color: #f7f7fc;
    padding: 4px 100px 0 20px;
    position: relative;
    height: 100%; }
    #ampromo-items-add a > div p {
      font-size: 15px;
      color: #556c94;
      font-weight: bold;
      margin: 0 auto; }
      #ampromo-items-add a > div p span {
        font-size: 20px;
        color: #0867a9;
        text-transform: uppercase; }
    #ampromo-items-add a > div .gift {
      position: absolute;
      top: -24px;
      right: 5px; }
  #ampromo-items-add a:hover > div {
    border: 1px solid #c1151a; }
    #ampromo-items-add a:hover > div p span {
      color: #c1151a; }

@media only screen and (max-width: 590px) {
  #ampromo-items-add a > div {
    padding: 6px 100px 0 10px; }
    #ampromo-items-add a > div p {
      font-size: 15px; }
      #ampromo-items-add a > div p span {
        font-size: 18px; } }
.amscheckout #ampromo-items-add {
  margin: 7px 10px; }

#ampromo-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 10000;
  text-align: center;
  direction: ltr;
  overflow: scroll; }

#ampromo-overlay .close {
  border: 1px solid #EDEDED;
  background-position: -70px -1175px;
  position: absolute;
  top: 7px;
  right: 7px;
  width: 24px;
  height: 22px;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-size: 0;
  display: block; }

#ampromo-overlay .close:hover {
  background-position: -105px -1175px; }

.ampromo-item .giftcard-send-form {
  padding: 0;
  margin: 0; }

/* Items */
#ampromo-items {
  border: 1px solid #ededed;
  background-color: white;
  position: relative;
  margin: 0 auto;
  padding: 24px;
  display: inline-block;
  box-sizing: border-box; }

#ampromo-items.amcarousel {
  display: block;
  width: 1200px; }
  #ampromo-items.amcarousel h4 {
    text-transform: none;
    color: #0867a9; }

#ampromo-items .ampromo-item {
  box-sizing: border-box;
  margin-bottom: 7px;
  padding: 20px;
  width: 250px;
  border: 1px solid #ededed;
  position: relative;
  margin-right: 12px; }

#ampromo-items .ampromo-item-options {
  margin-bottom: 12px;
  text-align: left; }

#ampromo-items .ampromo-item-image {
  display: block;
  margin: 0 auto;
  width: 160px;
  height: 160px; }

@media only screen and (max-width: 1250px) {
  #ampromo-items.amcarousel {
    width: 938px; } }
@media only screen and (max-width: 988px) {
  #ampromo-items.amcarousel {
    width: 676px; } }
@media only screen and (max-width: 726px) {
  #ampromo-items.amcarousel {
    width: 414px; } }
@media only screen and (max-width: 465px) {
  #ampromo-items.amcarousel {
    width: 100%; } }
/* Carousel */
.amcarousel #ampromo-carousel-wrapper {
  width: 1036px; }

#ampromo-carousel-wrapper {
  overflow: hidden;
  margin: 0 auto; }

.amcarousel #ampromo-carousel-content {
  width: 4500px;
  height: 1px; }

#ampromo-carousel-content .ampromo-slide {
  float: left; }

.amcarousel .ampromo-carousel-control {
  display: block; }

.ampromo-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  background: #f7f7fc url(/skin/frontend/gastrro/default/images/slider-strzalki.png) no-repeat;
  width: 40px;
  height: 40px;
  font-size: 0;
  display: none;
  border: 1px solid #EDEDED;
  z-index: 1; }

/*.ampromo-carousel-control.carousel-disabled.prev
{
    background-position: 0 0 !important;
}

.ampromo-carousel-control.amcarousel-disabled.next
{
    background-position: -46px 0 !important;
}*/
.ampromo-carousel-control.prev {
  left: 20px;
  background-position: 7px 5px; }

.ampromo-carousel-control.next {
  right: 20px;
  background-position: -43px 5px; }

.ampromo-carousel-control.prev:hover {
  background-position: 7px -45px;
  border-color: #d4d6e2; }

.ampromo-carousel-control.next:hover {
  background-position: -43px -45px;
  border-color: #d4d6e2; }

.ampromo-item .qty-holder {
  display: none; }

.ampromo-item-options select,
.ampromo-item-options input {
  max-width: 210px; }

.ampromo-notification {
  padding: 7px;
  text-align: center;
  margin-bottom: 12px;
  border: 1px solid #f16048;
  color: #df280a;
  background: #faebe7; }

.ampromo_items_form h4 {
  line-height: 58px;
  text-transform: none;
  font-weight: normal; }

.ampromo_items_form h4 a {
  display: inline-block;
  vertical-align: middle;
  line-height: 14px;
  color: #0867a9;
  font-size: 13px; }
  .ampromo_items_form h4 a:hover {
    text-decoration: none;
    color: #c1151a; }

.ampromo-label {
  float: right;
  position: absolute;
  z-index: 500; }

.ampromo-gift .product-image {
  float: left; }

.ampromo-gift li {
  margin: 10px 10px;
  float: left; }

.ampromo-tooltip {
  padding: 2px 5px;
  background: #FEC;
  border: 1px solid #FAA819;
  color: #1F5070;
  text-align: left;
  width: 300px;
  position: absolute;
  z-index: 10001; }

.ampromo-product-name {
  font-weight: bold; }

.ampromo-img img {
  /*width: 100%;*/ }

@media only screen and (max-width: 1250px) {
  .amcarousel #ampromo-carousel-wrapper {
    width: 774px; } }
@media only screen and (max-width: 988px) {
  .amcarousel #ampromo-carousel-wrapper {
    width: 512px; } }
@media only screen and (max-width: 726px) {
  .amcarousel #ampromo-carousel-wrapper {
    width: 250px; } }
.left {
  float: left !important; }

.right {
  float: right !important; }

.clear {
  clear: both !important; }

.hidden {
  display: none !important; }

#form-validate-email p {
  margin-bottom: 10px; }

input[type="text"],
input[type="password"] {
  border: 1px solid #c0c2d2;
  padding: 0 5px;
  box-sizing: border-box !important; }

.wide {
  width: 100%; }
  .wide .input-box {
    width: 100%;
    padding: 0; }
  .wide input[type="text"] {
    padding: 0;
    width: 100%;
    padding: 0 5px; }

.form-list select {
  width: 100%;
  max-width: none;
  height: 30px; }

.fields:after {
  content: '';
  display: table;
  clear: both; }
.fields .field {
  clear: none;
  float: right;
  width: 47%; }
  .fields .field:first-child, .fields .field:nth-child(2n+1) {
    float: left;
    clear: left; }

.opc-wrapper-opc * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.opc-wrapper-opc {
  margin: 0 auto; }
  .opc-wrapper-opc i {
    color: #0867a9; }
  .opc-wrapper-opc .opc-col-left {
    float: left;
    width: 50%;
    margin: 0;
    padding-right: 20px;
    box-sizing: border-box; }
    .opc-wrapper-opc .opc-col-left .control {
      text-align: left;
      margin-top: 0; }
    .opc-wrapper-opc .opc-col-left .notice {
      font-size: 13px;
      color: #617795;
      font-style: italic;
      margin-bottom: 5px; }
  .opc-wrapper-opc .opc-col-right {
    float: left;
    width: 50%;
    margin: 0;
    padding-left: 20px;
    box-sizing: border-box; }
  .opc-wrapper-opc p {
    font-size: 13px; }
  .opc-wrapper-opc .pslogin-buttons li {
    width: 100%; }
  .opc-wrapper-opc .pslogin-buttons .pslogin-button-auto {
    position: relative;
    display: block;
    padding-left: 31px;
    width: 100%; }
    .opc-wrapper-opc .pslogin-buttons .pslogin-button-auto .pslogin-button-icon {
      position: absolute;
      left: 0;
      top: 0; }
    .opc-wrapper-opc .pslogin-buttons .pslogin-button-auto .pslogin-button-text {
      width: 100%; }
  .opc-wrapper-opc .back-link {
    margin-top: 5px; }
    .opc-wrapper-opc .back-link a {
      color: #0867a9;
      text-decoration: underline;
      font-size: 13px; }
      .opc-wrapper-opc .back-link a:hover {
        color: #c1151a;
        text-decoration: underline; }
  .opc-wrapper-opc .opc-kolumny:after {
    content: '';
    display: table;
    clear: both; }
  .opc-wrapper-opc .checkout-agreements label a {
    color: #0867a9;
    text-decoration: underline; }
    .opc-wrapper-opc .checkout-agreements label a:hover {
      color: #c1151a;
      text-decoration: underline; }
  .opc-wrapper-opc .checkout-agreements label.required span:before {
    color: #dc0000;
    font-size: 12px;
    font-weight: 600;
    content: ' * '; }
  .opc-wrapper-opc .checkout-agreements label.required:after {
    content: none; }
  .opc-wrapper-opc input {
    box-shadow: none;
    background: none;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important; }
  .opc-wrapper-opc span.validation-passed,
  .opc-wrapper-opc div.validation-passed {
    background-image: none; }
  .opc-wrapper-opc label.required:after,
  .opc-wrapper-opc span.required:after {
    color: #dc0000;
    font-size: 12px;
    font-weight: 600; }
  .opc-wrapper-opc .validation-advice {
    color: #dc0000 !important;
    font-size: 11px;
    margin-top: 0; }
  .opc-wrapper-opc input::-webkit-input-placeholder {
    color: #9b9999; }
  .opc-wrapper-opc input:-moz-placeholder {
    color: #9b9999;
    opacity: 1; }
  .opc-wrapper-opc input::-moz-placeholder {
    color: #9b9999;
    opacity: 1; }
  .opc-wrapper-opc input:-ms-input-placeholder {
    color: #9b9999; }
  .opc-wrapper-opc input.input-text:focus,
  .opc-wrapper-opc select:focus,
  .opc-wrapper-opc textarea:focus {
    background-color: #fff; }
  .opc-wrapper-opc .text-login {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 400; }
    .opc-wrapper-opc .text-login a {
      color: #00909e;
      text-transform: uppercase;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer; }
  .opc-wrapper-opc .form-list .input-box {
    width: 100%; }
    .opc-wrapper-opc .form-list .input-box input[type="text"],
    .opc-wrapper-opc .form-list .input-box .input-box input[type="password"] {
      width: 100%;
      height: 30px; }
  .opc-wrapper-opc input.radio,
  .opc-wrapper-opc input.checkbox {
    margin-top: 11px !important;
    vertical-align: top; }
  .opc-wrapper-opc .discount-block,
  .opc-wrapper-opc .signature-block,
  .opc-wrapper-opc .comment-block,
  .opc-wrapper-opc .opc-review-actions {
    margin-bottom: 20px; }
  .opc-wrapper-opc .shipping-block,
  .opc-wrapper-opc .opc-menu {
    margin-bottom: 40px; }
  .opc-wrapper-opc #opc-address-form-shipping {
    margin-top: 20px; }
  .opc-wrapper-opc .comment-block textarea {
    width: 100%;
    height: 81px;
    resize: none;
    max-width: none; }
  .opc-wrapper-opc .opc-btn-checkout {
    font-size: 18px;
    background-color: #11B400;
    padding-right: 66px;
    position: relative;
    width: 100%;
    height: 44px; }
    .opc-wrapper-opc .opc-btn-checkout:hover, .opc-wrapper-opc .opc-btn-checkout:focus, .opc-wrapper-opc .opc-btn-checkout:active {
      opacity: 0.8;
      background-color: #11B400; }
    .opc-wrapper-opc .opc-btn-checkout .zamowienie {
      display: inline-block;
      position: absolute;
      top: 8px;
      width: 41px;
      height: 24px;
      background-position: -70px -755px;
      margin-left: 10px; }
  .opc-wrapper-opc .opc-zamowienie {
    margin-bottom: 30px;
    position: relative; }
    .opc-wrapper-opc .opc-zamowienie .opc-ajax-loader {
      position: absolute;
      z-index: 1000;
      background-color: #c0c2d2;
      width: 100%;
      margin: 0 auto;
      height: 44px;
      text-align: center;
      padding-top: 12px;
      cursor: default; }
      .opc-wrapper-opc .opc-zamowienie .opc-ajax-loader span {
        color: #fff;
        margin-right: 5px; }
  .opc-wrapper-opc .opc-messages {
    margin-top: 10px; }
    .opc-wrapper-opc .opc-messages .opc-message-container {
      color: #c1151a; }
  .opc-wrapper-opc #opc-logowanie {
    margin-bottom: 30px; }
    .opc-wrapper-opc #opc-logowanie .opc-prawa {
      margin-left: 0px;
      float: right; }
    .opc-wrapper-opc #opc-logowanie .opc-lewa {
      float: left; }
    .opc-wrapper-opc #opc-logowanie .opc-lewa,
    .opc-wrapper-opc #opc-logowanie .opc-prawa {
      width: 47%;
      border: none;
      padding: 0; }
      .opc-wrapper-opc #opc-logowanie .opc-lewa .button,
      .opc-wrapper-opc #opc-logowanie .opc-prawa .button {
        width: 100%;
        padding: 20px 15px;
        transition: all 200ms linear;
        font-size: 18px;
        background-color: #0867a9;
        border: none; }
        .opc-wrapper-opc #opc-logowanie .opc-lewa .button:hover, .opc-wrapper-opc #opc-logowanie .opc-lewa .button:focus, .opc-wrapper-opc #opc-logowanie .opc-lewa .button:active,
        .opc-wrapper-opc #opc-logowanie .opc-prawa .button:hover,
        .opc-wrapper-opc #opc-logowanie .opc-prawa .button:focus,
        .opc-wrapper-opc #opc-logowanie .opc-prawa .button:active {
          opacity: 0.8;
          background-color: #0867a9; }
      .opc-wrapper-opc #opc-logowanie .opc-lewa p,
      .opc-wrapper-opc #opc-logowanie .opc-prawa p {
        margin-top: 5px;
        font-style: italic; }
    .opc-wrapper-opc #opc-logowanie.small .opc-lewa .button,
    .opc-wrapper-opc #opc-logowanie.small .opc-prawa .button {
      padding: 5px 15px;
      font-size: 13px;
      background-color: #f7f7fc;
      color: #617795; }
    .opc-wrapper-opc #opc-logowanie.small .opc-lewa.active .button,
    .opc-wrapper-opc #opc-logowanie.small .opc-prawa.active .button {
      background-color: #0867a9;
      color: #fff; }
    .opc-wrapper-opc #opc-logowanie.small .opc-lewa:hover .button, .opc-wrapper-opc #opc-logowanie.small .opc-lewa:focus .button, .opc-wrapper-opc #opc-logowanie.small .opc-lewa:active .button,
    .opc-wrapper-opc #opc-logowanie.small .opc-prawa:hover .button,
    .opc-wrapper-opc #opc-logowanie.small .opc-prawa:focus .button,
    .opc-wrapper-opc #opc-logowanie.small .opc-prawa:active .button {
      opacity: 0.8;
      background-color: #0867a9;
      color: #fff; }
    .opc-wrapper-opc #opc-logowanie.small .opc-lewa p,
    .opc-wrapper-opc #opc-logowanie.small .opc-prawa p {
      display: none; }
  .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot span {
    display: inline-block; }
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot span strong.koszyk-cena {
      font-size: 24px; }
  .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot .koszyk-wartosc {
    display: none; }
  .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot .koszyk-do-zaplaty {
    border-top: 1px solid #d4d6e2; }
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot .koszyk-do-zaplaty td {
      padding-top: 15px; }
    .opc-wrapper-opc table#opc-shopping-cart-totals-table tfoot .koszyk-do-zaplaty .do-zaplaty {
      display: inline; }

.md-content {
  position: relative;
  margin: 0 auto;
  overflow: hidden; }
  .md-content h3 {
    text-align: center;
    font-size: 2.4em;
    font-weight: 300;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px 3px 0 0;
    margin: 0;
    padding: 0.4em; }

.md-modal-footer {
  margin-top: 0;
  overflow: hidden; }
  .md-modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 0; }
  .md-modal-footer btn-group .btn + .btn {
    margin-left: -1px; }
  .md-modal-footer .btn-block + .btn-block {
    margin-left: 0; }
  .md-modal-footer a {
    display: block;
    width: 100%;
    height: auto;
    font-size: 12px;
    text-transform: none; }

@media only screen and (max-width: 979px) {
  .opc-wrapper-opc .opc-zamowienie .opc-btn-checkout {
    padding-right: 15px; }
    .opc-wrapper-opc .opc-zamowienie .opc-btn-checkout .zamowienie {
      display: none; } }
@media only screen and (max-width: 780px) {
  .opc-wrapper-opc .opc-col-left {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0px;
    padding-right: 0px; }
    .opc-wrapper-opc .opc-col-left .fields .field {
      float: right; }
      .opc-wrapper-opc .opc-col-left .fields .field:first-child {
        float: left; }
  .opc-wrapper-opc .opc-col-center {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0px;
    padding-right: 0px; }
  .opc-wrapper-opc .opc-col-right {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    margin-left: 0;
    padding-left: 0px;
    padding-right: 0px; }
  .opc-wrapper-opc .opc-zamowienie {
    overflow: hidden;
    max-width: 400px;
    float: right; }
    .opc-wrapper-opc .opc-zamowienie .opc-btn-checkout {
      padding-right: 66px; }
      .opc-wrapper-opc .opc-zamowienie .opc-btn-checkout .zamowienie {
        display: inline-block; }

  .opc-data-table {
    width: 100%; } }
@media only screen and (max-width: 590px) {
  .opc-wrapper-opc .opc-zamowienie {
    max-width: none;
    width: 100%;
    float: none; } }
@media only screen and (max-width: 480px) {
  .opc-wrapper-opc {
    /*        .opc-col-left{
                .fields{
                    .field{
                        width: 100%;
                        float: none;
                    }
                }
            }*/ }
    .opc-wrapper-opc .opc-zamowienie .opc-btn-checkout {
      padding-right: 15px;
      font-size: 15px; }
      .opc-wrapper-opc .opc-zamowienie .opc-btn-checkout .zamowienie {
        display: none; }

  #opc-shopping-cart-totals-table tfoot td {
    text-align: center; }
  #opc-shopping-cart-totals-table tfoot .koszyk-wartosc {
    display: block;
    text-align: center; } }
.spinner {
  margin: auto;
  text-align: center;
  display: inline-block; }

.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #fff;
  display: inline-block;
  margin-right: 4px;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
/*!
 * @category  Apptrian
 * @package   Apptrian_Subcategories
 * @author    Apptrian
 * @copyright Copyright (c) 2017 Apptrian (http://www.apptrian.com)
 * @license   http://www.apptrian.com/license Proprietary Software License EULA
 */
.apptrian-subcategories-grid, .apptrian-subcategories-list {
  clear: both;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: content-box;
  width: 100%;
  list-style-type: none;
  text-align: left; }

.apptrian-subcategories-heading {
  margin: 16px 0; }

/* bof Grid layout */
.apptrian-subcategories-grid li {
  display: inline-block;
  text-align: left;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: content-box;
  width: 25%;
  vertical-align: top; }
  .apptrian-subcategories-grid li:hover .apptrian-subcategories-category-image {
    border-color: #d4d6e2; }
  .apptrian-subcategories-grid li:hover .apptrian-subcategories-category-name a {
    color: #0867a9;
    text-decoration: none; }

.apptrian-subcategories-grid .apptrian-subcategories-category {
  display: block;
  margin: 16px; }

.apptrian-subcategories-grid .apptrian-subcategories-category-image {
  border: 1px solid #EDEDED;
  transition: border-color 0.25s linear 0s; }

.apptrian-subcategories-grid .apptrian-subcategories-category-image img {
  margin: 0;
  padding: 0;
  width: 100%; }

.apptrian-subcategories-grid .apptrian-subcategories-category-name {
  text-align: center;
  padding: 5px 0;
  margin-bottom: 5px;
  line-height: 15px; }

/* eof Grid layout */
/* bof List layout */
.apptrian-subcategories-list li {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: content-box;
  overflow: auto; }

.apptrian-subcategories-list .apptrian-subcategories-category {
  display: block;
  overflow: auto;
  margin: 16px; }

.apptrian-subcategories-list .apptrian-subcategories-category-image {
  float: left;
  width: 20%;
  /* These percentages must match 1/3 */ }

.apptrian-subcategories-list .apptrian-subcategories-category-image img {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%; }

.apptrian-subcategories-list .apptrian-subcategories-category-name {
  margin: 0 0 16px 20%;
  /* These percentages must match 2/3 */
  padding: 0 0 0 32px; }

.apptrian-subcategories-list .apptrian-subcategories-category-description {
  margin: 0 0 16px 20%;
  /* These percentages must match 3/3 */
  padding: 0 0 0 32px; }

/* eof List layout */
/* bof Media Queries */
/* FYI 
    - Setting width of li element to: 
        100%  = 1 per row
        50%   = 2 per row
        33.3% = 3 per row
        25%   = 4 per row
        20%   = 5 per row
        etc.
    - These depend on your site design and you can change them if you like.
 */
@media only screen and (max-width: 979px) {
  .apptrian-subcategories-grid li {
    width: 33.3%; } }
@media only screen and (max-width: 590px) {
  .apptrian-subcategories-grid li {
    width: 50%; } }
/* eof Media Queries */
/* ============================================ *
 * Calendar styles (restore styles from /js/calendar)
 * ============================================ */
div.calendar table {
  border-collapse: separate; }
  div.calendar table td.button {
    display: table-cell;
    background: inherit;
    color: inherit;
    text-transform: none; }

