@charset "UTF-8";
/*==COLORS==*/
/*==Fonty==*/
h1, h2, h3, h4 {
  font-family: "Mulish", sans-serif;
  color: #1D2D3D; }
  h1::selection, h2::selection, h3::selection, h4::selection {
    background: #375d82;
    color: #fff; }

p {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #36373d;
  line-height: 30px;
  font-size: 18px;
  padding: 0px 0px 20px 0px;
  margin: 0; }
  p::selection {
    background: #375d82;
    color: #fff; }
  p strong {
    color: #375d82; }

ul li {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #36373d;
  line-height: 30px;
  font-size: 18px;
  padding: 0; }

ol li {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #36373d;
  line-height: 30px;
  font-size: 18px;
  padding: 0; }

blockquote {
  font-style: italic; }

/*==MIXIN==*/
.btn-error {
  color: #fff;
  background: #dc3545;
  border-radius: 20px;
  padding: 10px 20px; }

.btn-success {
  color: #fff;
  background: #28a745;
  border-radius: 20px;
  padding: 10px 20px; }

.btn-warning {
  color: #fff;
  background: #ffc107;
  border-radius: 20px;
  padding: 10px 20px; }

.message-error {
  color: #dc3545; }

.message-success {
  color: #28a745; }

.message-warning {
  color: #ffc107; }

/*==form==*/
input, textarea, select {
  padding: 15px 15px;
  border: 1px solid #e2e2e2;
  margin: 2px 0px 8px 0px !important;
  width: 100%;
  border-radius: 8px; }

textarea {
  height: 200px; }

button {
  width: 100%;
  padding: 16px;
  border: none;
  background: #375d82;
  border-radius: 6px;
  color: #fff;
  transition: 0.3s; }
  button:hover {
    background-color: #d4ba97; }

/*==table==*/
table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #e2e2e2; }

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 0px solid #e2e2e2; }

.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0; }

.table > tbody + tbody {
  border-top: 2px solid #e2e2e2; }

.table .table {
  background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #e2e2e2; }

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #e2e2e2; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none; }

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

/*==GRID==*/
main {
  width: 100%; }

.container {
  width: 1470px;
  padding: 0px 30px;
  margin: 0 auto; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .container {
      width: 1230px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .container {
      width: 980px;
      padding: 0px 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .container {
      max-width: 764px;
      padding: 0px 20px; } }
  @media only screen and (max-width: 767.98px) {
    .container {
      width: 100%;
      padding: 0px 20px; } }

.row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0px 0px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .row {
      margin: 0px 0px;
      flex-wrap: wrap; } }
  @media only screen and (max-width: 767.98px) {
    .row {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap; } }

.col-* p {
  padding: 10px; }

.col-100 {
  width: 100%; }

.col-12 {
  width: 690px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-12 {
      width: 570px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-12 {
      width: 460px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-12 {
      width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    .col-12 {
      width: 100%;
      margin: 20px 0px; } }

.col-13 {
  width: 450px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-13 {
      width: 370px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-13 {
      width: 300px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-13 {
      width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    .col-13 {
      width: 100%;
      margin: 20px 0px; } }

.col-23 {
  width: 930px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-23 {
      width: 770px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-23 {
      width: 620px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-23 {
      width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    .col-23 {
      width: 100%;
      margin: 20px 0px; } }

.col-14 {
  width: 330px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-14 {
      width: 270px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-14 {
      width: 220px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-14 {
      width: 50%; } }
  @media only screen and (max-width: 767.98px) {
    .col-14 {
      width: 100%;
      margin: 20px 0px; } }

.col-34 {
  width: 1050px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-34 {
      width: 870px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-34 {
      width: 700px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-34 {
      width: 538px; } }
  @media only screen and (max-width: 767.98px) {
    .col-34 {
      width: 100%;
      margin: 20px 0px; } }

.col-16 {
  width: 210px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-16 {
      width: 170px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-16 {
      width: 140px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-16 {
      width: 100%; } }
  @media only screen and (max-width: 767.98px) {
    .col-16 {
      width: 100%;
      margin: 20px 0px; } }

.col-56 {
  width: 1170px; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .col-56 {
      width: 970px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-56 {
      width: 780px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-56 {
      width: 600px; } }
  @media only screen and (max-width: 767.98px) {
    .col-56 {
      width: 100%;
      margin: 20px 0px; } }

.col-112 {
  width: 70px; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-112 {
      width: 60px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-112 {
      width: 42px; } }
  @media only screen and (max-width: 767.98px) {
    .col-112 {
      width: 100%;
      margin: 20px 0px; } }

.col-1112 {
  width: 1070px; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-1112 {
      width: 860px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-1112 {
      width: 662px; } }
  @media only screen and (max-width: 767.98px) {
    .col-1112 {
      width: 100%;
      margin: 20px 0px; } }

/*Procentowe*/
.col-50pr {
  width: 50%; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-50pr {
      width: 50%; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-50pr {
      width: 50%; } }
  @media only screen and (max-width: 767.98px) {
    .col-50pr {
      width: 100%; } }

.col-40pr {
  width: 40%; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-40pr {
      width: 40%; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-40pr {
      width: 40%; } }
  @media only screen and (max-width: 767.98px) {
    .col-40pr {
      width: 100%; } }

.col-60pr {
  width: 60%; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .col-60pr {
      width: 60%; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .col-60pr {
      width: 60%; } }
  @media only screen and (max-width: 767.98px) {
    .col-60pr {
      width: 100%; } }

/*!
 * SlickNav Responsive Mobile Menu v1.0.7
 * (c) 2016 Josh Cope
 * licensed under MIT
 */
.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer; }

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em; }

.slicknav_menu {
  *zoom: 1; }

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
  z-index: 9999; }

.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 0 0 0.438em;
  font-size: 25px; }

.slicknav_menu .slicknav_icon:before {
  background: transparent;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute; }

.slicknav_menu .slicknav_no-text {
  margin: 0; }

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px; }

.slicknav_menu:before {
  content: " ";
  display: table; }

.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both; }

.slicknav_nav {
  clear: both; }

.slicknav_nav ul {
  display: block; }

.slicknav_nav li {
  display: block; }

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em; }

.slicknav_nav .slicknav_item {
  cursor: pointer; }

.slicknav_nav .slicknav_item a {
  display: inline; }

.slicknav_nav .slicknav_row {
  display: block; }

.slicknav_nav a {
  display: block; }

.slicknav_nav .slicknav_parent-link a {
  display: inline; }

.slicknav_brand {
  float: left; }

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: transparent;
  padding: 5px; }

.slicknav_menu * {
  box-sizing: border-box; }

.slicknav_menu .slicknav_menutxt {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px #000; }

.slicknav_menu .slicknav_icon-bar {
  background-color: #375d82; }

.slicknav_btn {
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #fff; }

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 1.4em;
  width: 100%;
  list-style: none;
  overflow: hidden;
  background-color: #375d82;
  top: 19px;
  position: relative;
  border-radius: 0px 0px 10px 10px; }

.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 0px; }

.slicknav_nav .slicknav_row {
  padding: 14px 10px;
  margin: 2px 5px; }

.slicknav_nav .slicknav_row:hover {
  background: #fff;
  color: #375d82; }

.slicknav_nav a {
  padding: 14px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: "Mulish", sans-serif;
  font-weight: 300; }

.slicknav_nav a:hover {
  background: #fff;
  color: #375d82; }

.slicknav_nav .slicknav_txtnode {
  margin-left: 15px; }

.slicknav_nav .slicknav_item a {
  padding: 0;
  margin: 0; }

.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0; }

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif (opinionated).
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

* {
  box-sizing: content-box; }

/**
 * Remove default margin (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent displaying `audio` without controls in Mobile Safari 4/5/6/7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address inconsistent styling of `abbr[title]`.
 * 1. Correct styling in Firefox 39 and Opera 12.
 * 2. Correct missing styling in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Address inconsistent styling of b and strong.
 * 1. Correct duplicate application of `bolder` in Safari 6.0.2.
 * 2. Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+.
 */
b,
strong {
  font-weight: inherit;
  /* 1 */ }

b,
strong {
  font-weight: bolder;
  /* 2 */ }

/**
 * Address styling not present in Android < 4.4.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

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

/**
 * Prevent `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
   ========================================================================== */
/**
 * Correct border-style given when inside `a` element in IE 8/9/10.
 */
img {
  border-style: none; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 15px; }

/**
 * Address inconsistent styling of `hr`.
 * 1. Correct `box-sizing` set to `border-box` in Firefox.
 * 2. Correct `overflow` set to `hidden` in IE 8/9/10/11 and Edge 12.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * 1. Correct inheritance and scaling of font-size for preformatted text.
 * 2. Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct font properties not being inherited.
 * 2. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

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

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

/**
 * Restore focus style in Firefox 4+ (unset by a rule above)
 */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * Address `appearance` set to `searchfield` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * 1. Correct `color` not being inherited from fieldset in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  color: inherit;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Restore font weight (unset by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

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

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

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

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

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

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

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

.wpcf7 {
  background-color: #fbfbfb;
  padding: 40px 60px;
  max-width: 1200px;
  margin: auto; }
  @media only screen and (max-width: 767.98px) {
    .wpcf7 {
      padding: 40px 20px; } }

.kontakt-form .wpcf7 {
  padding: 0px;
  background-color: transparent;
  color: #fff; }
  .kontakt-form .wpcf7 input, .kontakt-form .wpcf7 textarea, .kontakt-form .wpcf7 select {
    padding: 10px 15px; }

.kontakt-form .wpcf7 p {
  color: #fff;
  padding: 0px 0px 10px 0px; }

.koszyk {
  position: absolute;
  right: 85px; }

.koszyk a {
  text-decoration: none; }

.koszyk a img {
  max-width: 25px;
  height: auto; }

.koszyk a span {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  background-color: #375d82;
  position: relative;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline; }

@media only screen and (max-width: 991px) {
  .koszyk {
    position: relative;
    right: 0px;
    z-index: 99; } }
table.shop_table_responsive thead {
  display: none; }

table.shop_table_responsive tbody th {
  display: none; }

table.shop_table_responsive tr td {
  display: block;
  text-align: right;
  clear: both; }

table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  float: left; }

table.shop_table_responsive tr td.product-remove a {
  text-align: center; }

table.shop_table_responsive tr td.product-remove::before {
  display: none; }

table.shop_table_responsive tr td.actions::before, table.shop_table_responsive tr td.download-actions::before {
  display: none; }

table.shop_table_responsive tr td.download-actions .button {
  display: block;
  text-align: center; }

@media screen and (min-width: 48em) {
  table.shop_table_responsive thead {
    display: table-header-group; }

  table.shop_table_responsive tbody th {
    display: table-cell; }

  table.shop_table_responsive tr th, table.shop_table_responsive tr td {
    text-align: left; }

  table.shop_table_responsive tr td {
    display: table-cell; }

  table.shop_table_responsive tr td::before {
    display: none; } }
.shop_table.order_details, .shop_table.woocommerce-MyAccount-orders {
  background: #F8F8F8;
  padding: 15px 30px;
  border-collapse: inherit;
  text-align: left;
  border: 0;
  color: #000; }

.shop_table.order_details tr, .shop_table.woocommerce-MyAccount-orders tr {
  padding: 0; }

.shop_table.order_details th, .shop_table.order_details td, .shop_table.woocommerce-MyAccount-orders th, .shop_table.woocommerce-MyAccount-orders td {
  border: none;
  padding: 13px 0px; }

.shop_table.order_details tr + tr td, .shop_table.order_details tr + tr th, .shop_table.order_details thead + tbody td, .shop_table.order_details thead + tbody th, .shop_table.order_details tbody + tfoot td, .shop_table.order_details tbody + tfoot th, .shop_table.woocommerce-MyAccount-orders tr + tr td, .shop_table.woocommerce-MyAccount-orders tr + tr th, .shop_table.woocommerce-MyAccount-orders thead + tbody td, .shop_table.woocommerce-MyAccount-orders thead + tbody th, .shop_table.woocommerce-MyAccount-orders tbody + tfoot td, .shop_table.woocommerce-MyAccount-orders tbody + tfoot th {
  border-top: 1px solid #ececec; }

.shop_table.order_details tbody tr td, .shop_table.woocommerce-MyAccount-orders tbody tr td {
  padding: 8px 0px; }

.shop_table.order_details tbody tr + tr td, .shop_table.woocommerce-MyAccount-orders tbody tr + tr td {
  border-top: 0 !important; }

.shop_table.order_details tbody tr:first-child td, .shop_table.woocommerce-MyAccount-orders tbody tr:first-child td {
  padding-top: 15px; }

.shop_table.order_details tbody tr:last-child td, .shop_table.woocommerce-MyAccount-orders tbody tr:last-child td {
  padding-bottom: 15px; }

.shop_table.order_details tbody .woocommerce-orders-table__cell .button, .shop_table.woocommerce-MyAccount-orders tbody .woocommerce-orders-table__cell .button {
  width: 100%;
  text-align: center; }

.shop_table.order_details tfoot th, .shop_table.woocommerce-MyAccount-orders tfoot th {
  font-weight: 600; }

.shop_table.order_details tfoot .woocommerce-Price-amount, .shop_table.woocommerce-MyAccount-orders tfoot .woocommerce-Price-amount {
  font-size: 1.1em;
  font-weight: 600; }

.shop_table.order_details tfoot tr:last-child .woocommerce-Price-amount, .shop_table.woocommerce-MyAccount-orders tfoot tr:last-child .woocommerce-Price-amount {
  font-size: 1.4em; }

.shop_table.woocommerce-MyAccount-orders tbody tr + tr td, .shop_table.woocommerce-table--order-downloads tbody tr + tr td {
  border-top: 1px solid #ececec !important; }

.shop_table .wc-item-meta {
  padding-left: 15px;
  margin-top: 7px;
  margin-bottom: -7px; }

.shop_table .wc-item-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.85em; }

.shop_table .wc-item-meta li strong {
  margin-right: 6px; }

.shop_table .wc-item-meta li p {
  margin-bottom: 0; }

@media only screen and (max-width: 767px) {
  .shop_table_responsive.order_details .download-product:before, .shop_table_responsive.woocommerce-MyAccount-orders .download-product:before {
    font-weight: 600; }

  .shop_table_responsive.order_details tbody tr:first-child td, .shop_table_responsive.woocommerce-MyAccount-orders tbody tr:first-child td {
    border-top: 0 !important; }

  .shop_table_responsive.order_details tbody tr + tr td:first-child, .shop_table_responsive.woocommerce-MyAccount-orders tbody tr + tr td:first-child {
    padding-top: 30px;
    border-top: 0 !important; }

  .shop_table_responsive.order_details tbody .woocommerce-orders-table__cell .button, .shop_table_responsive.woocommerce-MyAccount-orders tbody .woocommerce-orders-table__cell .button {
    width: auto;
    text-align: inherit; } }
table.woocommerce-product-attributes {
  border: 0; }

table.woocommerce-product-attributes tr {
  border: 0; }

table.woocommerce-product-attributes tr:first-child th, table.woocommerce-product-attributes tr:first-child td {
  border-top: 0; }

table.woocommerce-product-attributes tr:last-child th, table.woocommerce-product-attributes tr:last-child td {
  border-bottom: 0; }

table.woocommerce-product-attributes th, table.woocommerce-product-attributes td {
  text-align: left;
  border-left: 0;
  border-right: 0;
  font-weight: 400; }

table.woocommerce-product-attributes a {
  text-decoration: none; }

table.woocommerce-product-attributes p {
  margin-bottom: 0; }

.shop-table-layout2 .shop_table {
  border: 0; }

.shop-table-layout2 .shop_table thead, .shop-table-layout2 .shop_table .product-remove, .shop-table-layout2 .shop_table .product-quantity, .shop-table-layout2 .shop_table .product-subtotal {
  display: none; }

.shop-table-layout2 .shop_table th, .shop-table-layout2 .shop_table td, .shop-table-layout2 .shop_table tr {
  border-right: 0;
  border-left: 0;
  padding: 0; }

.shop-table-layout2 .shop_table th, .shop-table-layout2 .shop_table td {
  border-top: 0;
  border-bottom: 0; }

.shop-table-layout2 .shop_table tr.woocommerce-cart-form__cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.shop-table-layout2 .shop_table tr.woocommerce-cart-form__cart-item + tr {
  border-top: 0; }

.shop-table-layout2 .shop_table .product-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100% !important; }

.shop-table-layout2 .shop_table .product-name > a:first-child {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.shop-table-layout2 .shop_table .product-name .variation {
  margin-top: 5px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.shop-table-layout2 .shop_table .product-price {
  vertical-align: top !important;
  text-align: right;
  font-weight: 700; }

@media screen and (min-width: 768px) {
  .shop-table-layout2 .shop_table .product-name .variation {
    opacity: 0.8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0;
    margin-bottom: 25px; }

  .shop-table-layout2 .shop_table .product-name .variation dd {
    margin-right: 0; }

  .shop-table-layout2 .shop_table .product-name .variation dt {
    font-weight: 400; }

  .shop-table-layout2 .shop_table .product-name .variation dd + dt:before {
    content: '•';
    margin: 0 13px; } }
@media (min-width: 1025px) {
  .shop-table-layout2 .shop_table .quantity {
    max-width: 105px; } }
@media screen and (max-width: 767px) {
  .shop-table-layout2 .shop_table tr.woocommerce-cart-form__cart-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }

  .shop-table-layout2 .shop_table .product-name .variation {
    margin-bottom: 0; } }
ul.wc-block-grid__products, ul.products {
  display: grid !important;
  gap: 30px;
  margin: 0;
  padding: 0;
  opacity: 1; }

ul.wc-block-grid__products.loading, ul.products.loading {
  opacity: 0.5;
  pointer-events: none; }

ul.wc-block-grid__products li.wc-block-grid__product, ul.wc-block-grid__products li.product, ul.products li.wc-block-grid__product, ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  list-style: none;
  position: relative;
  text-align: center;
  position: relative;
  padding: 0px 0px 25px 0px;
  box-shadow: 0px 15px 20px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden; }

ul.wc-block-grid__products li.wc-block-grid__product img, ul.wc-block-grid__products li.product img, ul.products li.wc-block-grid__product img, ul.products li.product img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }

ul.wc-block-grid__products li.wc-block-grid__product .loop-image-wrap:hover img, ul.wc-block-grid__products li.product .loop-image-wrap:hover img, ul.products li.wc-block-grid__product .loop-image-wrap:hover img, ul.products li.product .loop-image-wrap:hover img {
  opacity: 0.7; }

ul.wc-block-grid__products li.wc-block-grid__product .col-md-7 > *, ul.wc-block-grid__products li.wc-block-grid__product .col-md-8 > *, ul.wc-block-grid__products li.wc-block-grid__product > *, ul.wc-block-grid__products li.product .col-md-7 > *, ul.wc-block-grid__products li.product .col-md-8 > *, ul.wc-block-grid__products li.product > *, ul.products li.wc-block-grid__product .col-md-7 > *, ul.products li.wc-block-grid__product .col-md-8 > *, ul.products li.wc-block-grid__product > *, ul.products li.product .col-md-7 > *, ul.products li.product .col-md-8 > *, ul.products li.product > * {
  margin-top: 0;
  margin-bottom: 12px; }

ul.wc-block-grid__products li.wc-block-grid__product .col-md-7 > *:last-child, ul.wc-block-grid__products li.wc-block-grid__product .col-md-8 > *:last-child, ul.wc-block-grid__products li.wc-block-grid__product > *:last-child, ul.wc-block-grid__products li.product .col-md-7 > *:last-child, ul.wc-block-grid__products li.product .col-md-8 > *:last-child, ul.wc-block-grid__products li.product > *:last-child, ul.products li.wc-block-grid__product .col-md-7 > *:last-child, ul.products li.wc-block-grid__product .col-md-8 > *:last-child, ul.products li.wc-block-grid__product > *:last-child, ul.products li.product .col-md-7 > *:last-child, ul.products li.product .col-md-8 > *:last-child, ul.products li.product > *:last-child {
  margin-bottom: 0 !important; }

ul.wc-block-grid__products li.wc-block-grid__product svg, ul.wc-block-grid__products li.product svg, ul.products li.wc-block-grid__product svg, ul.products li.product svg {
  fill: #fff; }

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-image, ul.wc-block-grid__products li.product .wc-block-grid__product-image, ul.products li.wc-block-grid__product .wc-block-grid__product-image, ul.products li.product .wc-block-grid__product-image {
  margin-bottom: 0; }

ul.wc-block-grid__products li.wc-block-grid__product .price, ul.wc-block-grid__products li.wc-block-grid__product .woocommerce-LoopProduct-link, ul.wc-block-grid__products li.wc-block-grid__product img, ul.wc-block-grid__products li.product .price, ul.wc-block-grid__products li.product .woocommerce-LoopProduct-link, ul.wc-block-grid__products li.product img, ul.products li.wc-block-grid__product .price, ul.products li.wc-block-grid__product .woocommerce-LoopProduct-link, ul.products li.wc-block-grid__product img, ul.products li.product .price, ul.products li.product .woocommerce-LoopProduct-link, ul.products li.product img {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: auto; }

ul.wc-block-grid__products li.wc-block-grid__product .wp-block-button__link, ul.wc-block-grid__products li.wc-block-grid__product .button, ul.wc-block-grid__products li.product .wp-block-button__link, ul.wc-block-grid__products li.product .button, ul.products li.wc-block-grid__product .wp-block-button__link, ul.products li.wc-block-grid__product .button, ul.products li.product .wp-block-button__link, ul.products li.product .button {
  display: table;
  margin: 17px auto 0;
  line-height: 1;
  border: 1px solid #375d82;
  background-color: #375d82;
  color: #fff;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s; }

ul.wc-block-grid__products li.wc-block-grid__product .wc-block-grid__product-link, ul.wc-block-grid__products li.product .wc-block-grid__product-link, ul.products li.wc-block-grid__product .wc-block-grid__product-link, ul.products li.product .wc-block-grid__product-link {
  text-decoration: none; }

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
  border: 1px solid #375d82;
  background-color: #375d82;
  color: #fff;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s; }

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: #f7f7f7; }

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 160px; }

.wc-proceed-to-checkout a,
.checkout-button {
  border: 1px solid #375d82 !important;
  background-color: #375d82 !important;
  color: #fff !important;
  padding: 15px 40px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  font-family: "Mulish", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  transition: 0.2s !important; }

@media screen and (min-width: 48em) {
  ul.products.columns-1 {
    grid-template-columns: repeat(1, 1fr); }

  ul.products.columns-2 {
    grid-template-columns: repeat(2, 1fr); }

  ul.products.columns-3 {
    grid-template-columns: repeat(3, 1fr); }

  ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr); }

  ul.products.columns-5 {
    grid-template-columns: repeat(5, 1fr); }

  ul.products.columns-6 {
    grid-template-columns: repeat(6, 1fr); }

  .wc-block-grid.has-1-columns .wc-block-grid__products {
    grid-template-columns: repeat(1, 1fr); }

  .wc-block-grid.has-2-columns .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr); }

  .wc-block-grid.has-3-columns .wc-block-grid__products {
    grid-template-columns: repeat(3, 1fr); }

  .wc-block-grid.has-4-columns .wc-block-grid__products {
    grid-template-columns: repeat(4, 1fr); }

  .wc-block-grid.has-5-columns .wc-block-grid__products {
    grid-template-columns: repeat(5, 1fr); }

  .wc-block-grid.has-6-columns .wc-block-grid__products {
    grid-template-columns: repeat(6, 1fr); } }
@media screen and (max-width: 991px) {
  .shop-columns-tablet-1 ul.products, .shop-columns-tablet-1 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(1, 1fr); }

  .shop-columns-tablet-2 ul.products, .shop-columns-tablet-2 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr); }

  .shop-columns-tablet-3 ul.products, .shop-columns-tablet-3 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(3, 1fr); }

  .shop-columns-tablet-4 ul.products, .shop-columns-tablet-4 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(4, 1fr); }

  .shop-columns-tablet-5 ul.products, .shop-columns-tablet-5 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(5, 1fr); }

  .shop-columns-tablet-6 ul.products, .shop-columns-tablet-6 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(6, 1fr); } }
@media screen and (max-width: 719px) {
  .shop-columns-mobile-1 ul.products, .shop-columns-mobile-1 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(1, 1fr); }

  .shop-columns-mobile-2 ul.products, .shop-columns-mobile-2 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr); }

  .shop-columns-mobile-3 ul.products, .shop-columns-mobile-3 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(3, 1fr); }

  .shop-columns-mobile-4 ul.products, .shop-columns-mobile-4 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(4, 1fr); }

  .shop-columns-mobile-5 ul.products, .shop-columns-mobile-5 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(5, 1fr); }

  .shop-columns-mobile-6 ul.products, .shop-columns-mobile-6 .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(6, 1fr); } }
.woocommerce-pagination {
  clear: both; }

.woocommerce-sorting-wrapper {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee; }

.woocommerce-sorting-wrapper p {
  margin: 0; }

.woocommerce-sorting-wrapper select {
  border: 0;
  padding: 0 25px 0 0;
  max-width: 220px;
  min-height: auto; }

.product-list ul.products {
  grid-template-columns: 1fr; }

.product-list ul.products li.product {
  width: 100% !important;
  margin-right: 0; }

.product-list ul.products li.product .loop-image-wrap {
  margin: 0; }

.product-list ul.products li.product .loop-button-wrap.button-layout3 {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(-50%, -40%, 0);
  transform: translate3d(-50%, -40%, 0);
  -webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  z-index: 3; }

.product-list ul.products li.product .loop-button-wrap.button-layout4 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease opacity 300ms, ease visibility 300ms;
  transition: ease opacity 300ms, ease visibility 300ms;
  z-index: 3; }

.product-list ul.products li.product:hover .loop-button-wrap.button-layout3 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

.product-list ul.products li.product:hover .loop-button-wrap.button-layout4 {
  opacity: 1;
  visibility: visible; }

.loop-button-wrap.button-layout4 .ws-svg-icon {
  width: 24px;
  height: 24px; }

.loop-button-wrap.button-layout4 .button, .loop-button-wrap.button-layout4 .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  margin-left: 0 !important; }

.loop-price-inline {
  text-align: right; }

.loop-image-wrap {
  position: relative;
  overflow: hidden; }

.related.products .button-layout3, .related.products .button-layout4, .upsells.products .button-layout3, .upsells.products .button-layout4, .product-grid .button-layout3, .product-grid .button-layout4 {
  position: absolute;
  opacity: 0;
  -webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  z-index: 3; }

.related.products .button-layout3, .upsells.products .button-layout3, .product-grid .button-layout3 {
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate3d(0, -40%, 0);
  transform: translate3d(0, -40%, 0); }

.related.products .button-layout3 a, .upsells.products .button-layout3 a, .product-grid .button-layout3 a {
  display: inline-block !important; }

.related.products ul.products li.product:hover .button-layout4, .upsells.products ul.products li.product:hover .button-layout4, .product-grid ul.products li.product:hover .button-layout4 {
  opacity: 1; }

.related.products .button-layout4, .upsells.products .button-layout4, .product-grid .button-layout4 {
  width: 100%;
  bottom: 10px;
  left: 10px; }

.button-layout3 a, .button-layout4 a {
  margin-top: 0 !important; }

.button-layout3 .wc-forward {
  margin-left: 5px; }

.button-layout2 .wc-forward {
  margin-top: 8px;
  display: block; }

ul.wc-block-grid__products li.wc-block-grid__product .button-layout3 .wp-block-button, ul.wc-block-grid__products li.wc-block-grid__product .button-layout4 .wp-block-button {
  margin-bottom: 0; }

ul.wc-block-grid__products li.wc-block-grid__product:hover .button-layout3 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

ul.wc-block-grid__products li.wc-block-grid__product:hover .button-layout4 {
  opacity: 1; }

.wc-block-grid.has-4-columns .wc-block-grid__product, .wc-block-grid.has-5-columns .wc-block-grid__product, .wc-block-grid.has-6-columns .wc-block-grid__product {
  font-size: 1em !important; }

.wc-block-grid__product-link {
  display: block; }

.price {
  font-weight: 600; }

.price ins {
  background-color: transparent; }

.price del {
  margin-right: 6px;
  font-weight: 400; }

ul.products li.product-category mark {
  background: none;
  color: inherit; }

.product-category-item-layout1 ul.products li.product-category .woocommerce-loop-category__title {
  margin-top: 15px; }

.product-category-item-layout2 ul.products li.product-category a {
  position: relative;
  display: block; }

.product-category-item-layout2 ul.products li.product-category .woocommerce-loop-category__title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  margin: 0; }

.product-category-item-layout3 ul.products li.product-category a {
  position: relative;
  display: block;
  overflow: hidden; }

.product-category-item-layout3 ul.products li.product-category .woocommerce-loop-category__title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  margin: 0;
  color: #FFF;
  z-index: 1; }

.product-category-item-layout3 ul.products li.product-category .woocommerce-loop-category__title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  -webkit-box-shadow: 0px 0px 60px 60px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 60px 60px rgba(0, 0, 0, 0.5);
  z-index: -1; }

.product-category-item-layout4 ul.products li.product-category a {
  position: relative;
  display: block; }

.product-category-item-layout4 ul.products li.product-category .woocommerce-loop-category__title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc( 100% - 30px);
  background: #FFF;
  padding: 20px;
  margin: 0 0 15px 15px; }

.product-category-item-layout5 ul.products li.product-category a {
  position: relative;
  display: block;
  overflow: hidden; }

.product-category-item-layout5 ul.products li.product-category a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0; }

.product-category-item-layout5 ul.products li.product-category .woocommerce-loop-category__title {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  color: #FFF;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: 1; }

.product-equal-height ul.wc-block-grid__products li.wc-block-grid__product, .product-equal-height ul.wc-block-grid__products li.product, .product-equal-height ul.products li.wc-block-grid__product, .product-equal-height ul.products li.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.product-equal-height ul.wc-block-grid__products li.wc-block-grid__product .loop-button-wrap, .product-equal-height ul.wc-block-grid__products li.product .loop-button-wrap, .product-equal-height ul.products li.wc-block-grid__product .loop-button-wrap, .product-equal-height ul.products li.product .loop-button-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.product-equal-height ul.wc-block-grid__products li.wc-block-grid__product .variations_form, .product-equal-height ul.wc-block-grid__products li.product .variations_form, .product-equal-height ul.products li.wc-block-grid__product .variations_form, .product-equal-height ul.products li.product .variations_form {
  margin-bottom: 7px; }

ul.products li.product .quantity {
  margin: 0;
  max-width: 100px;
  height: auto; }

ul.products li.product .button-with-quantity {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  grid-gap: 10px; }

ul.products li.product .button-with-quantity .quantity {
  width: 100%; }

ul.products li.product .button-with-quantity .wc-forward {
  width: 100%; }

ul.products li.product .button-with-quantity .button {
  margin: 0; }

ul.products .button-layout2.button-with-quantity {
  margin-top: 10px; }

ul.products .button-layout3.button-with-quantity {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -55px; }

ul.products .button-layout3.button-with-quantity .quantity {
  height: 45px; }

ul.products .button-layout4.button-with-quantity {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

ul.products.columns-4 li.product .button-with-quantity.button-layout2 .quantity, ul.products.columns-5 li.product .button-with-quantity.button-layout2 .quantity, ul.products.columns-6 li.product .button-with-quantity.button-layout2 .quantity {
  max-width: 100%;
  height: 45px; }

ul.products.columns-4 li.product .button-with-quantity.button-layout2 .button, ul.products.columns-5 li.product .button-with-quantity.button-layout2 .button, ul.products.columns-6 li.product .button-with-quantity.button-layout2 .button {
  width: 100%;
  text-align: center; }

ul.products.columns-4 li.product .button-layout2 .button, ul.products.columns-5 li.product .button-layout2 .button, ul.products.columns-6 li.product .button-layout2 .button {
  width: 100%;
  text-align: center;
  margin: 0; }

.close-sidebar {
  display: none; }

.admin-bar .sidebar-slide + .widget-area {
  top: 32px;
  height: calc( 100vh - 32px); }

.sidebar-slide.site-main {
  width: 100%;
  padding-left: 15px; }

.sidebar-slide + .widget-area {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 360px;
  max-width: 360px;
  margin: 0;
  background: #FFF;
  overflow-y: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: ease transform 300ms, ease box-shadow 300ms;
  transition: ease transform 300ms, ease box-shadow 300ms;
  z-index: 1000; }

@media (max-width: 400px) {
  .sidebar-slide + .widget-area {
    max-width: none;
    width: 100%; } }
.sidebar-slide + .widget-area .sidebar-wrapper {
  padding: 50px 30px 30px;
  height: 100%; }

.sidebar-slide + .widget-area .sidebar-wrapper .close-sidebar {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px; }

.sidebar-slide + .widget-area .sidebar-wrapper .close-sidebar svg {
  width: 16px;
  height: 20px; }

.sidebar-slide + .widget-area .sidebar-wrapper .close-sidebar svg path {
  -webkit-transform: scale(0.75);
  transform: scale(0.75); }

.sidebar-slide + .widget-area.show {
  -webkit-box-shadow: 0px 0px 80px -37px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 80px -37px rgba(0, 0, 0, 0.3);
  -webkit-transform: none;
  transform: none; }

.sidebar-slide .sidebar-open-wrapper:not(.has-text) {
  position: relative;
  top: 2px;
  float: left; }

.sidebar-slide .sidebar-open-wrapper .sidebar-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.sidebar-slide .sidebar-open-wrapper .sidebar-open svg {
  width: 18px;
  height: 22px;
  margin-right: 10px; }

body.sidebar-slide-opened:before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000; }

.sidebar-top.site-main {
  width: 100%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 15px; }

.sidebar-top + .widget-area {
  width: 100%;
  max-width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-right: 15px;
  padding-left: 15px; }

.sidebar-top + .widget-area .widget {
  border-bottom: 0; }

.sidebar-top + .widget-area .sidebar-wrapper {
  padding: 40px 25px 0px;
  margin-bottom: 30px; }

.sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav_filters > ul, .sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav > ul {
  max-height: 170px;
  overflow-y: auto; }

.sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav_filters > ul::-webkit-scrollbar, .sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav > ul::-webkit-scrollbar {
  width: 7px; }

.sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav_filters > ul::-webkit-scrollbar-track, .sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav > ul::-webkit-scrollbar-track {
  background: #e2e2e2; }

.sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav_filters > ul::-webkit-scrollbar-thumb, .sidebar-top + .widget-area .sidebar-wrapper .widget.woocommerce.widget_layered_nav > ul::-webkit-scrollbar-thumb {
  background-color: #CCC; }

.sidebar-top.sidebar-top-columns-1 + .widget-area .sidebar-wrapper, .sidebar-top.sidebar-top-columns-2 + .widget-area .sidebar-wrapper, .sidebar-top.sidebar-top-columns-3 + .widget-area .sidebar-wrapper, .sidebar-top.sidebar-top-columns-4 + .widget-area .sidebar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.sidebar-top.sidebar-top-columns-1 + .widget-area .sidebar-wrapper > .widget, .sidebar-top.sidebar-top-columns-2 + .widget-area .sidebar-wrapper > .widget, .sidebar-top.sidebar-top-columns-3 + .widget-area .sidebar-wrapper > .widget, .sidebar-top.sidebar-top-columns-4 + .widget-area .sidebar-wrapper > .widget {
  padding-left: 15px;
  padding-right: 15px; }

.sidebar-top.sidebar-top-columns-1 + .widget-area .sidebar-wrapper > .widget {
  width: 100%; }

.sidebar-top.sidebar-top-columns-2 + .widget-area .sidebar-wrapper > .widget {
  width: 50%; }

.sidebar-top.sidebar-top-columns-3 + .widget-area .sidebar-wrapper > .widget {
  width: 33.333%; }

.sidebar-top.sidebar-top-columns-4 + .widget-area .sidebar-wrapper > .widget {
  width: 25%; }

@media (max-width: 1199px) {
  .sidebar-top.sidebar-top-columns-4 + .widget-area .sidebar-wrapper > .widget {
    width: 50%; } }
@media (max-width: 991px) {
  .sidebar-top.sidebar-top-columns-3 + .widget-area .sidebar-wrapper > .widget {
    width: 50%; } }
@media (max-width: 767px) {
  .sidebar-top.sidebar-top-columns-2 + .widget-area .sidebar-wrapper > .widget, .sidebar-top.sidebar-top-columns-3 + .widget-area .sidebar-wrapper > .widget, .sidebar-top.sidebar-top-columns-4 + .widget-area .sidebar-wrapper > .widget {
    width: 100%; } }
@-webkit-keyframes rotateAnim {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes rotateAnim {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.loop-image-wrap > .add_to_cart_button, .loop-image-wrap > .product_type_variable, .loop-image-wrap > .product_type_grouped, .loop-image-wrap > .product_type_external, .loop-image-wrap > .loop-button-wrap.button-layout3 {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 145px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  -webkit-transform: translate3d(-50%, -10%, 0);
  transform: translate3d(-50%, -10%, 0);
  -webkit-transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease visibility 300ms, ease transform 300ms; }

.loop-image-wrap > .loop-button-wrap.button-layout3 .add_to_cart_button {
  min-width: 145px;
  text-align: center; }

ul.products li.product .loop-image-wrap:hover > .add_to_cart_button, ul.products li.product .loop-image-wrap:hover > .product_type_variable, ul.products li.product .loop-image-wrap:hover > .product_type_grouped, ul.products li.product .loop-image-wrap:hover > .product_type_external, ul.products li.product .loop-image-wrap:hover > .loop-button-wrap.button-layout3, ul.products li.wc-block-grid__product .loop-image-wrap:hover > .add_to_cart_button, ul.products li.wc-block-grid__product .loop-image-wrap:hover > .product_type_variable, ul.products li.wc-block-grid__product .loop-image-wrap:hover > .product_type_grouped, ul.products li.wc-block-grid__product .loop-image-wrap:hover > .product_type_external, ul.products li.wc-block-grid__product .loop-image-wrap:hover > .loop-button-wrap.button-layout3, ul.wc-block-grid__products li.product .loop-image-wrap:hover > .add_to_cart_button, ul.wc-block-grid__products li.product .loop-image-wrap:hover > .product_type_variable, ul.wc-block-grid__products li.product .loop-image-wrap:hover > .product_type_grouped, ul.wc-block-grid__products li.product .loop-image-wrap:hover > .product_type_external, ul.wc-block-grid__products li.product .loop-image-wrap:hover > .loop-button-wrap.button-layout3, ul.wc-block-grid__products li.wc-block-grid__product .loop-image-wrap:hover > .add_to_cart_button, ul.wc-block-grid__products li.wc-block-grid__product .loop-image-wrap:hover > .product_type_variable, ul.wc-block-grid__products li.wc-block-grid__product .loop-image-wrap:hover > .product_type_grouped, ul.wc-block-grid__products li.wc-block-grid__product .loop-image-wrap:hover > .product_type_external, ul.wc-block-grid__products li.wc-block-grid__product .loop-image-wrap:hover > .loop-button-wrap.button-layout3 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(-50%, 0%, 0);
  transform: translate3d(-50%, 0%, 0); }

ul.wc-block-grid__products li.wc-block-grid__product:hover .loop-image-wrap > .loop-button-wrap.button-layout3 {
  -webkit-transform: translate3d(-50%, 45%, 0);
  transform: translate3d(-50%, 45%, 0); }

.pswp {
  z-index: 9999 !important; }

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
  display: none; }

.single-product .header-image:not(:empty) {
  margin-bottom: 80px; }

.single-product div.product {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

.woocommerce-product-gallery__image--placeholder img,
.woocommerce-product-gallery__image img {
  max-width: 100%;
  height: auto; }

.single-product div.product .woocommerce-product-gallery {
  position: relative;
  width: 50%; }

.entry-summary {
  position: relative;
  width: 50%;
  padding: 10px 25px; }

@media (max-width: 767px) {
  .entry-summary, .single-product div.product .woocommerce-product-gallery {
    width: 100%; } }
.entry-summary .product_title {
  font-size: 30px;
  font-weight: 300;
  padding-bottom: 0;
  margin-bottom: 15px;
  text-align: left; }

.single_add_to_cart_button {
  border: 1px solid #375d82;
  background-color: #375d82;
  color: #fff;
  padding: 15px 40px;
  border-radius: 15px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s; }

.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 1.5em;
  right: 1.4em;
  display: block;
  z-index: 99; }

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li {
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  width: 95px; }

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  padding: 4px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: opacity .2s, border-color .3s;
  transition: opacity .2s, border-color .3s;
  will-change: opacity, border-color; }

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img:hover, .single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border: 1px solid #212121; }

.single-product.no-single-breadcrumbs .gallery-showcase, .single-product.no-single-breadcrumbs .gallery-full-width {
  margin-top: -80px; }

@media (min-width: 992px) {
  .single-product div.product .gallery-vertical .woocommerce-product-gallery, .single-product div.product .gallery-showcase .woocommerce-product-gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }

  .single-product div.product .gallery-vertical .flex-viewport, .single-product div.product .gallery-showcase .flex-viewport {
    width: calc(100% - 85px); }

  .single-product div.product .gallery-vertical .flex-control-thumbs, .single-product div.product .gallery-showcase .flex-control-thumbs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }

  .single-product div.product .gallery-vertical .flex-control-thumbs li, .single-product div.product .gallery-showcase .flex-control-thumbs li {
    width: 65px;
    height: 65px; }

  .single-product div.product .gallery-vertical .flex-nav-prev, .single-product div.product .gallery-showcase .flex-nav-prev {
    left: calc(80px + 30px); }

  .single-product div.product .gallery-vertical .flex-nav-next, .single-product div.product .gallery-showcase .flex-nav-next {
    right: 30px; }

  .single-product div.product .gallery-showcase {
    left: 50%;
    width: 80vw;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0); }

  .single-product div.product .gallery-showcase .woocommerce-product-gallery {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }

  .single-product div.product .gallery-showcase .entry-summary {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; } }
@media (min-width: 1200px) {
  .single-product div.product .gallery-showcase .flex-control-thumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }
.stock:empty::before {
  display: none; }

.stock.in-stock {
  color: #0f834d; }

.stock.out-of-stock {
  color: #e2401c; }

.product-gallery-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.product-gallery-summary .woocommerce-product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.product-gallery-summary .woocommerce-product-gallery.hidden {
  display: none; }

.product-gallery-summary .woocommerce-product-gallery, .product-gallery-summary .entry-summary {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.product-gallery-summary .entry-summary {
  padding-left: 40px; }

.woocommerce-ordering {
  margin-bottom: 20px; }

.product-gallery-summary .entry-summary > *:last-of-type {
  margin-top: 15px; }

.product-gallery-summary .product_title {
  margin-top: 0 !important;
  margin-bottom: 20px; }

.product-gallery-summary .divider {
  margin-top: 25px; }

.product-gallery-summary .woocommerce-product-rating {
  margin-top: 0;
  margin-bottom: 20px; }

.product-gallery-summary .product_meta, .product_meta {
  font-size: 14px;
  font-size: .875rem;
  color: #212121;
  margin-bottom: 20px; }

.product_meta {
  margin-top: 20px; }

.product-gallery-summary .product_meta > * {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase; }

.product-gallery-summary .product_meta > * > * {
  text-transform: none; }

.product-gallery-summary .stock {
  margin-bottom: 20px; }

.product-gallery-summary .price {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 20px; }

.product-gallery-summary .price del {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  top: -2px; }

.product-gallery-summary form.cart {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px; }

.product-gallery-summary form.cart + .product_meta {
  margin-top: 30px; }

.product-gallery-summary .shortcode-content + div, .product-gallery-summary .html-content + div {
  margin-top: 15px; }

.product-gallery-summary.gallery-side .flex-viewport {
  width: calc( 100% - 80px);
  float: right; }

.product-gallery-summary.gallery-side .flex-control-nav {
  width: 60px;
  float: left; }

.product-gallery-summary.gallery-side .flex-control-nav li {
  width: 100% !important;
  margin-bottom: 15px; }

.product-gallery-summary.gallery-single ul.flex-direction-nav, .product-gallery-summary.gallery-showcase ul.flex-direction-nav, .product-gallery-summary.gallery-full-width ul.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: calc(50% - 20px);
  width: 100%; }

.product-gallery-summary.gallery-single ul.flex-direction-nav li, .product-gallery-summary.gallery-showcase ul.flex-direction-nav li, .product-gallery-summary.gallery-full-width ul.flex-direction-nav li {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 998;
  margin: 0;
  padding: 0; }

.product-gallery-summary.gallery-single .flex-nav-prev, .product-gallery-summary.gallery-showcase .flex-nav-prev, .product-gallery-summary.gallery-full-width .flex-nav-prev {
  left: 15px; }

.product-gallery-summary.gallery-single .flex-nav-next, .product-gallery-summary.gallery-showcase .flex-nav-next, .product-gallery-summary.gallery-full-width .flex-nav-next {
  right: 15px; }

.product-gallery-summary.gallery-single .flex-next, .product-gallery-summary.gallery-single .flex-prev, .product-gallery-summary.gallery-showcase .flex-next, .product-gallery-summary.gallery-showcase .flex-prev, .product-gallery-summary.gallery-full-width .flex-next, .product-gallery-summary.gallery-full-width .flex-prev {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #212121;
  background: #FFF;
  text-indent: -9999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.product-gallery-summary.gallery-single .flex-next::after, .product-gallery-summary.gallery-single .flex-prev::before, .product-gallery-summary.gallery-showcase .flex-next::after, .product-gallery-summary.gallery-showcase .flex-prev::before, .product-gallery-summary.gallery-full-width .flex-next::after, .product-gallery-summary.gallery-full-width .flex-prev::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  color: #212121;
  display: inline-block;
  line-height: 37px;
  text-align: center;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.product-gallery-summary.gallery-single .flex-next:hover, .product-gallery-summary.gallery-single .flex-prev:hover, .product-gallery-summary.gallery-showcase .flex-next:hover, .product-gallery-summary.gallery-showcase .flex-prev:hover, .product-gallery-summary.gallery-full-width .flex-next:hover, .product-gallery-summary.gallery-full-width .flex-prev:hover {
  background-color: #212121; }

.product-gallery-summary.gallery-single .flex-next:hover:before, .product-gallery-summary.gallery-single .flex-prev:hover:before, .product-gallery-summary.gallery-showcase .flex-next:hover:before, .product-gallery-summary.gallery-showcase .flex-prev:hover:before, .product-gallery-summary.gallery-full-width .flex-next:hover:before, .product-gallery-summary.gallery-full-width .flex-prev:hover:before {
  border-right-color: #FFF; }

.product-gallery-summary.gallery-single .flex-next:hover:after, .product-gallery-summary.gallery-single .flex-prev:hover:after, .product-gallery-summary.gallery-showcase .flex-next:hover:after, .product-gallery-summary.gallery-showcase .flex-prev:hover:after, .product-gallery-summary.gallery-full-width .flex-next:hover:after, .product-gallery-summary.gallery-full-width .flex-prev:hover:after {
  border-left-color: #FFF; }

.product-gallery-summary.gallery-single .flex-next::after, .product-gallery-summary.gallery-showcase .flex-next::after, .product-gallery-summary.gallery-full-width .flex-next::after {
  visibility: visible;
  border-left: 12px solid #212121;
  -webkit-transform: translate3d(-40%, -50%, 0);
  transform: translate3d(-40%, -50%, 0); }

.product-gallery-summary.gallery-single .flex-prev::before, .product-gallery-summary.gallery-showcase .flex-prev::before, .product-gallery-summary.gallery-full-width .flex-prev::before {
  visibility: visible;
  border-right: 12px solid #212121;
  -webkit-transform: translate3d(-70%, -50%, 0);
  transform: translate3d(-70%, -50%, 0); }

.product-gallery-summary.gallery-single .woocommerce-product-gallery {
  grid-gap: 0; }

.product-gallery-summary.gallery-showcase, .product-gallery-summary.gallery-full-width {
  position: relative;
  padding: 40px 0; }

.product-gallery-summary.gallery-showcase:before, .product-gallery-summary.gallery-full-width:before {
  content: '';
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background: #f0f0f0;
  position: absolute;
  z-index: 0;
  width: 100vw;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0); }

.product-gallery-summary.gallery-showcase .flex-next, .product-gallery-summary.gallery-showcase .flex-prev, .product-gallery-summary.gallery-full-width .flex-next, .product-gallery-summary.gallery-full-width .flex-prev {
  border: none;
  background: none; }

.product-gallery-summary.gallery-showcase .flex-next::after, .product-gallery-summary.gallery-showcase .flex-prev::before, .product-gallery-summary.gallery-full-width .flex-next::after, .product-gallery-summary.gallery-full-width .flex-prev::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #212121;
  border-right: 2px solid #212121;
  border-bottom: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.product-gallery-summary.gallery-showcase .flex-prev::before, .product-gallery-summary.gallery-full-width .flex-prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transform-origin: 30% 32%;
  transform-origin: 30% 32%; }

.product-gallery-summary.gallery-showcase .flex-next::after, .product-gallery-summary.gallery-full-width .flex-next::after {
  -webkit-transform-origin: 70% -60%;
  transform-origin: 70% -60%; }

.product-gallery-summary.gallery-showcase .flex-next:hover:before, .product-gallery-summary.gallery-showcase .flex-next:hover:after, .product-gallery-summary.gallery-showcase .flex-prev:hover:before, .product-gallery-summary.gallery-showcase .flex-prev:hover:after, .product-gallery-summary.gallery-full-width .flex-next:hover:before, .product-gallery-summary.gallery-full-width .flex-next:hover:after, .product-gallery-summary.gallery-full-width .flex-prev:hover:before, .product-gallery-summary.gallery-full-width .flex-prev:hover:after {
  border-color: #FFF; }

.product-gallery-summary.gallery-showcase .woocommerce-product-gallery, .product-gallery-summary.gallery-showcase .entry-summary, .product-gallery-summary.gallery-full-width .woocommerce-product-gallery, .product-gallery-summary.gallery-full-width .entry-summary {
  z-index: 2; }

.product-gallery-summary.gallery-showcase .woocommerce-product-gallery ul.flex-direction-nav, .product-gallery-summary.gallery-showcase .entry-summary ul.flex-direction-nav, .product-gallery-summary.gallery-full-width .woocommerce-product-gallery ul.flex-direction-nav, .product-gallery-summary.gallery-full-width .entry-summary ul.flex-direction-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms; }

.product-gallery-summary.gallery-showcase .woocommerce-product-gallery:hover ul.flex-direction-nav, .product-gallery-summary.gallery-showcase .entry-summary:hover ul.flex-direction-nav, .product-gallery-summary.gallery-full-width .woocommerce-product-gallery:hover ul.flex-direction-nav, .product-gallery-summary.gallery-full-width .entry-summary:hover ul.flex-direction-nav {
  opacity: 1;
  visibility: visible; }

.product-gallery-summary.gallery-full-width .woocommerce-product-gallery ul.flex-direction-nav li.flex-nav-prev, .product-gallery-summary.gallery-full-width .entry-summary ul.flex-direction-nav li.flex-nav-prev {
  left: 15px; }

.product-gallery-summary.gallery-full-width .woocommerce-product-gallery ul.flex-direction-nav li.flex-nav-next, .product-gallery-summary.gallery-full-width .entry-summary ul.flex-direction-nav li.flex-nav-next {
  right: 15px; }

.product-gallery-summary.gallery-showcase {
  padding: 80px 0; }

.product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper, .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper {
  margin-right: -10px;
  margin-left: -10px; }

.product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper > div, .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div {
  padding-right: 10px;
  padding-left: 10px; }

.product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper > div:not(:first-child), .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div:not(:first-child) {
  width: 50%; }

.product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper > div + div, .product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper > div + .onsale + div, .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div + div, .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div + .onsale + div {
  margin-top: 20px; }

.product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper > div a:hover img, .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div a:hover img {
  opacity: 0.8; }

.product-gallery-summary.gallery-grid .woocommerce-product-gallery__wrapper > div a img, .product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div a img {
  -webkit-transition: ease opacity 300ms;
  transition: ease opacity 300ms; }

.product-gallery-summary.gallery-scrolling .woocommerce-product-gallery__wrapper > div:not(:first-child) {
  width: 100%; }

.product-gallery-summary.gallery-full-width {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.product-gallery-summary.gallery-full-width .woocommerce-product-gallery, .product-gallery-summary.gallery-full-width .entry-summary {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  margin-top: 40px; }

.product-gallery-summary.gallery-full-width .woocommerce-product-gallery__wrapper img {
  display: block;
  margin: 0 auto; }

.product-gallery-summary.gallery-full-width .flex-control-thumbs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.product-gallery-summary.gallery-full-width .flex-control-thumbs li {
  max-width: 95px; }

@media (min-width: 992px) {
  .product-gallery-summary.gallery-full-width .entry-summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

  .product-gallery-summary.gallery-full-width .entry-summary .gallery-full-width-title-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 30px; }

  .product-gallery-summary.gallery-full-width .entry-summary .gallery-full-width-addtocart-wrapper {
    padding-left: 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%; } }
.product-gallery-summary.gallery-grid, .product-gallery-summary.gallery-scrolling, .product-gallery-summary.gallery-showcase {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

.product-gallery-summary.gallery-grid .sticky-entry-summary, .product-gallery-summary.gallery-scrolling .sticky-entry-summary, .product-gallery-summary.gallery-showcase .sticky-entry-summary {
  position: sticky;
  top: 30px; }

.sticky-header-active .product-gallery-summary.gallery-grid .sticky-entry-summary, .sticky-header-active .product-gallery-summary.gallery-scrolling .sticky-entry-summary, .sticky-header-active .product-gallery-summary.gallery-showcase .sticky-entry-summary {
  top: 115px; }

.woocommerce-product-gallery__wrapper {
  margin: 0; }

.admin-bar .product-gallery-summary.gallery-grid .sticky-entry-summary, .admin-bar .product-gallery-summary.gallery-scrolling .sticky-entry-summary, .admin-bar .product-gallery-summary.gallery-showcase .sticky-entry-summary {
  top: 70px; }

.admin-bar.sticky-header-active .product-gallery-summary.gallery-grid .sticky-entry-summary, .admin-bar.sticky-header-active .product-gallery-summary.gallery-scrolling .sticky-entry-summary, .admin-bar.sticky-header-active .product-gallery-summary.gallery-showcase .sticky-entry-summary {
  top: 155px; }

.related.products, .upsells.products, .recently-viewed-products {
  padding-top: 80px;
  padding-bottom: 80px; }

.related.products > h2, .upsells.products > h2, .recently-viewed-products > h2 {
  margin: 0 0 30px;
  font-size: 32px;
  font-size: 2rem; }

.related.products .products, .upsells.products .products, .recently-viewed-products .products {
  overflow: hidden; }

.single-product {
  margin-top: 100px; }

.woocommerce .products ul, .woocommerce ul.products {
  width: 100%; }

.single-product .site-main > .product > section.products {
  position: relative; }

.single-product .site-main > .product > section.products > * {
  position: relative;
  z-index: 2; }

.single-product .site-main > .product > section.products:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: transparent;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  z-index: 1; }

.single-product .site-main > .product > section.products:last-child {
  margin-bottom: -120px; }

figure.woocommerce-product-gallery__wrapper div:not(:first-of-type) {
  display: inline-block;
  vertical-align: top; }

#review_form .comment-form-rating {
  margin-top: 15px; }

#review_form input[type="text"], #review_form input[type="email"] {
  width: 100%; }

.single-product .woocommerce-notices-wrapper {
  margin-bottom: 30px; }

.single-product .woocommerce-notices-wrapper:empty {
  display: none; }

.single-product .woocommerce-notices-wrapper .wc-forward {
  margin-right: 15px; }

.single-product.no-single-breadcrumbs .woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: 120px;
  margin-top: -40px; }

.woocommerce-product-rating .star-rating, .comment_container .star-rating {
  margin-left: 0;
  margin-right: 0; }

.woocommerce-product-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 12px 0; }

.woocommerce-product-rating .woocommerce-review-link {
  margin-left: 8px;
  margin-top: 2px;
  font-size: 13px;
  font-size: 0.8125rem; }

.woocommerce-Reviews .commentlist {
  padding-left: 0; }

.woocommerce-product-details__short-description p:last-of-type {
  margin-bottom: 30px; }

.variations_form.cart, .grouped_form.cart {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.variations_form.cart .variations tbody > tr + tr > td {
  padding-top: 15px; }

.variations_form.cart .variations .label {
  width: 125px;
  text-align: left;
  padding-left: 0;
  padding-right: 15px; }

.variations_form.cart .variations .label label {
  vertical-align: middle; }

table.variations {
  position: relative;
  border: 0; }

table.variations th, table.variations tr, table.variations td {
  border: 0; }

table.variations td {
  border: 0;
  padding: 0; }

table.variations td select {
  width: 100%; }

table.variations .reset_variations {
  position: absolute;
  bottom: -15px;
  right: 0;
  color: #716f6f;
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 13px;
  font-size: 0.8125rem; }

.woocommerce-variation-price {
  margin-bottom: 15px; }

@media (min-width: 1025px) {
  .single-product .variations_form.cart .woocommerce-variation-add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; } }
.reset_variations {
  margin-left: 10px;
  bottom: -25px !important; }

.grouped_form.cart .product_type_variable {
  width: 100%;
  text-align: center; }

.grouped_form.cart .quantity {
  width: 100% !important; }

.grouped_form.cart .group_table {
  border: none; }

.grouped_form.cart .group_table th, .grouped_form.cart .group_table td, .grouped_form.cart .group_table tr {
  border: none; }

.grouped_form.cart .group_table .woocommerce-grouped-product-list-item__quantity {
  width: 150px;
  padding-left: 0; }

.grouped_form.cart .group_table .stock {
  margin-bottom: 0; }

form.cart .quantity.hidden {
  display: none !important; }

form.cart .quantity {
  display: none; }

@media (max-width: 767px) {
  .single-product .woocommerce-notices-wrapper .woocommerce-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center; }

  .single-product .woocommerce-notices-wrapper .wc-forward {
    padding: 8px 24px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 15px;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 0; } }
.woocommerce-Reviews #review_form_wrapper {
  padding: 40px;
  margin-top: 40px; }

.woocommerce-Reviews #review_form_wrapper .comment-reply-title {
  font-weight: 600; }

.woocommerce-Reviews #comments {
  margin-top: 40px; }

.woocommerce-Reviews #comments li {
  list-style: none; }

.woocommerce-Reviews #comments .review + .review {
  margin-top: 40px; }

.woocommerce-Reviews #comments .review .comment_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.woocommerce-Reviews #comments .review .comment_container .avatar {
  max-width: 60px;
  height: auto;
  margin-right: 20px; }

.woocommerce-Reviews #comments .review .comment_container .comment-text {
  width: 100%; }

.woocommerce-Reviews #comments .review .comment_container .comment-text .meta {
  margin-bottom: 30px; }

.woocommerce-Reviews #comments .review .comment_container .comment-text .description {
  padding: 25px; }

.woocommerce-Reviews #comments .review .comment_container .comment-text .description p:last-child {
  margin-bottom: 0; }

.woocommerce-Reviews #comments .woocommerce-pagination li .page-numbers {
  text-decoration: none; }

.product-gallery-summary .nickx_product_images_with_video {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%; }

.swiper-vertical {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 65px;
  height: 490px; }

.woocommerce-cart .product-thumbnail {
  text-align: center;
  width: 100px;
  max-width: 100px;
  vertical-align: top; }

.woocommerce-cart .product-thumbnail img {
  max-width: 100px; }

.woocommerce-cart .product-name a {
  font-weight: 400;
  color: #212121; }

.woocommerce-cart table {
  border-collapse: collapse; }

.woocommerce-cart table td {
  text-align: center; }

.woocommerce-cart table th {
  font-weight: 400; }

.woocommerce-cart tbody tr:not(.woocommerce-cart-form__cart-item) {
  border-color: transparent !important; }

.woocommerce-cart tbody tr:not(.woocommerce-cart-form__cart-item) td {
  border-color: transparent !important; }

.woocommerce-cart thead tr th {
  padding: 16px 0; }

.woocommerce-cart tr.cart_item td {
  padding: 30px 0; }

.woocommerce-cart th.product-name, .woocommerce-cart td.product-name {
  padding-left: 30px !important;
  padding-right: 15px !important;
  text-align: left; }

@media (max-width: 767px) {
  .woocommerce-cart th.product-name, .woocommerce-cart td.product-name {
    padding-left: 10px !important; } }
.woocommerce-cart .product-remove {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  font-weight: 600;
  padding: 0 10px; }

.woocommerce-cart .product-remove a {
  color: #212121;
  border-radius: 50%;
  text-align: center !important;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 29px;
  font-weight: 300; }

.woocommerce-cart .product-remove a:hover {
  color: #212121; }

.woocommerce-cart .qty {
  max-width: 100px; }

.woocommerce-cart .woocommerce-cart-form .actions {
  padding-top: 30px;
  padding-left: 0;
  padding-right: 0; }

.woocommerce-cart .woocommerce-cart-form .actions .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left; }

.woocommerce-cart .woocommerce-cart-form .actions .coupon input[type="text"] {
  border-color: rgba(36, 32, 33, 0.2);
  min-height: 53px; }

.woocommerce-cart .woocommerce-cart-form .actions .coupon label {
  display: none; }

.woocommerce-cart .woocommerce-cart-form .actions .button {
  float: right;
  font-size: 14px;
  font-size: .875rem;
  text-transform: uppercase; }

.woocommerce-cart .woocommerce-cart-form .actions .button:disabled:hover {
  cursor: not-allowed; }

.woocommerce-cart .woocommerce-cart-form .actions .button:disabled {
  opacity: 0.5; }

.woocommerce-cart .cart_totals {
  width: 100%;
  max-width: 445px;
  float: right;
  margin-top: 90px;
  padding: 30px;
  background-color: #f2f2f2; }

.cart_totals h2, .calculated_shipping h2 {
  font-size: 24px; }

.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
  margin-bottom: 10px; }

.woocommerce-cart .cart_totals tr {
  border-bottom: 1px solid #eeeeee; }

.woocommerce-cart .cart_totals tr:last-of-type {
  border-bottom: 0; }

.woocommerce-cart .cart_totals th, .woocommerce-cart .cart_totals td {
  border-left: 0;
  border-right: 0;
  padding: 15px 0;
  background: transparent;
  vertical-align: top; }

.woocommerce-cart .cart_totals th {
  text-transform: uppercase;
  font-size: 13px;
  font-size: .8125rem;
  letter-spacing: 1px; }

.woocommerce-cart .cart_totals td {
  text-align: right; }

.woocommerce-cart .cart_totals h2 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0 !important; }

.woocommerce-cart .cart_totals .woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  display: table;
  margin-left: auto;
  text-align: left; }

.woocommerce-cart .cart_totals .woocommerce-shipping-methods li {
  padding-left: 0; }

.woocommerce-cart .cart_totals .woocommerce-shipping-methods label {
  padding-left: 5px; }

.woocommerce-cart .cart_totals .order-total .woocommerce-Price-amount {
  font-size: 24px;
  font-size: 1.5rem; }

.woocommerce-cart .cart_totals .shipping-calculator-button {
  color: #716f6f;
  font-size: 13px;
  font-size: .8125rem;
  text-transform: uppercase;
  text-decoration: none; }

.woocommerce-cart .cart_totals .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  text-transform: uppercase; }

.woocommerce-cart .cart_totals .checkout-button + #ppc-button {
  margin-top: 25px; }

.woocommerce-cart .cart-collaterals {
  margin-top: 30px; }

.woocommerce-cart .cart-collaterals h2 {
  font-size: 32px;
  font-size: 2rem;
  margin-top: 0; }

.shipping-calculator-button {
  text-decoration: underline; }

.shipping-calculator-form {
  margin-top: 30px;
  text-align: left; }

.shipping-calculator-form .input-text {
  width: 100%; }

.woocommerce-cart-form td {
  border-left: 0;
  border-right: 0; }

.woocommerce-cart-form th {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 13px;
  font-size: .8125rem;
  letter-spacing: 1px; }

.checkout-button.button {
  color: #fff; }

.cart-layout2 > .hentry .entry-content > .woocommerce:after {
  content: '';
  display: block;
  clear: both; }

.cart-totals-sticky + .woocommerce-cart-form + .cart_totals {
  position: sticky;
  top: 35px; }

.admin-bar .cart-totals-sticky + .woocommerce-cart-form + .cart_totals {
  top: 67px; }

@media (min-width: 992px) {
  .woocommerce-cart .shop_table td.product-subtotal, .woocommerce-cart .shop_table td.product-quantity, .woocommerce-cart .shop_table td.product-price {
    width: 15%; }

  .cart-layout1 .cart-collaterals {
    float: left;
    max-width: 467px;
    margin-top: 23px; }

  .cart-layout2 .woocommerce-notices-wrapper:not(:empty) {
    margin-bottom: 30px; }

  .cart-layout2 .woocommerce-cart-form {
    width: 70%;
    float: left;
    padding-right: 30px; }

  .cart-layout2 .cart_totals {
    width: 30%;
    margin-top: 0; } }
@media (min-width: 1200px) {
  .cart-layout1 .cart-collaterals {
    max-width: 640px; } }
.woocommerce-cart table {
  border: 0; }

.woocommerce-cart div.cart_totals table tr.cart-subtotal td, .woocommerce-cart div.cart_totals table tr.shipping td {
  border-bottom: 1px solid rgba(33, 33, 33, 0.1) !important; }

.woocommerce-cart div.cart_totals table tr.order-total th {
  border-bottom: 0; }

.woocommerce-cart div.cart_totals table tr.cart-subtotal th {
  border-top: 0; }

.woocommerce-cart-form__contents .product-subtotal {
  font-weight: 600; }

@media (max-width: 991px) and (min-width: 768px) {
  .woocommerce-cart .shop_table td.product-name {
    width: 30%; } }
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals {
    max-width: none;
    margin: 5px 0 40px; } }
@media (max-width: 767px) {
  .woocommerce-cart tr.cart_item td {
    padding: 30px; }

  .woocommerce-cart .cart_totals {
    margin-top: 40px;
    max-width: 100%;
    float: none;
    padding: 15px; }

  .woocommerce-cart .cart-collaterals {
    margin-top: 40px; }

  .woocommerce-cart .woocommerce-cart-form .actions .button[name="update_cart"] {
    float: none;
    margin-top: 15px; }

  .woocommerce-cart .woocommerce-cart-form .actions .coupon input[type="text"] {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }

  .woocommerce-cart .woocommerce-cart-form .actions .coupon {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

  table.woocommerce-cart-form__contents tr td::before {
    display: none; }

  table.woocommerce-cart-form__contents tr.cart_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 15px;
    position: relative; }

  table.woocommerce-cart-form__contents tr.cart_item:not(:first-of-type) {
    border-top: 0; }

  table.woocommerce-cart-form__contents tr.cart_item td {
    border: 0;
    padding: 0;
    text-align: left; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-name {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(70% - 30px);
    flex: 0 0 calc(70% - 30px);
    padding-left: 15px !important; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-price {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(30% - 30px);
    flex: 0 0 calc(30% - 30px);
    text-align: right; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    max-width: 60px; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-thumbnail img {
    max-width: 60px; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    line-height: 1; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-quantity, table.woocommerce-cart-form__contents tr.cart_item td.product-subtotal {
    padding-top: 30px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%; }

  table.woocommerce-cart-form__contents tr.cart_item td.product-subtotal {
    text-align: right; } }
@media (max-width: 575px) {
  .woocommerce-cart table {
    word-break: break-all; }

  .woocommerce-cart table .product-name a {
    font-size: 15px;
    font-size: 0.9375rem; }

  .woocommerce-cart .woocommerce-cart-form .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .woocommerce-cart .woocommerce-cart-form .actions .button[name="update_cart"] {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-top: 0;
    margin-bottom: 15px;
    width: 100%; }

  .woocommerce-cart .woocommerce-cart-form .actions .coupon {
    float: none;
    width: 100%; }

  .woocommerce-cart .woocommerce-cart-form .actions .coupon button {
    padding: 10px; }

  .woocommerce-cart .woocommerce-cart-form .actions .coupon button, .woocommerce-cart .woocommerce-cart-form .actions .coupon input {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; } }
@media (min-width: 768px) {
  .woocommerce-shipping-calculator {
    position: relative;
    width: calc( 100% + 70px);
    left: -70px; } }
@media (min-width: 768px) and (max-width: 991px) {
  .woocommerce-shipping-calculator {
    width: calc( 100% + 117px);
    left: -117px; } }
.woocommerce-checkout .woocommerce-form-login {
  margin-bottom: 30px;
  padding: 15px; }

.woocommerce-checkout .woocommerce-form-login .form-row label {
  display: block;
  margin-bottom: 10px; }

.woocommerce-checkout .woocommerce-form-login .form-row input:not(#rememberme) {
  width: 100%; }

@media (min-width: 992px) {
  .woocommerce-checkout .woocommerce-form-login .form-row.form-row-first, .woocommerce-checkout .woocommerce-form-login .form-row.form-row-last {
    float: left;
    width: 50%; }

  .woocommerce-checkout .woocommerce-form-login .form-row.form-row-first {
    padding-right: 10px; }

  .woocommerce-checkout .woocommerce-form-login .form-row.form-row-last {
    padding-left: 10px; } }
.woocommerce-checkout fieldset {
  border-width: 1px;
  border-color: rgba(33, 33, 33, 0.2);
  border-style: solid;
  padding: 20px; }

.woocommerce-checkout fieldset + fieldset {
  margin-top: 25px; }

.woocommerce-checkout fieldset.wc-credit-card-form {
  margin-top: 25px; }

#ship-to-different-address {
  font-size: 1.4rem; }

#ship-to-different-address label {
  cursor: pointer; }

#ship-to-different-address span:before {
  top: 8px; }

#ship-to-different-address span:after {
  top: 5px; }

#customer_details {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }

@media (max-width: 767px) {
  #customer_details {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; } }
#customer_details .col-1, #customer_details .col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0; }

#customer_details .col-1 input:not([type="checkbox"]), #customer_details .col-2 input:not([type="checkbox"]) {
  width: 100%; }

#customer_details .col-2 {
  margin-top: 60px; }

#customer_details label {
  display: block;
  margin-bottom: 3px; }

#customer_details .create-account label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

#customer_details .create-account label > input {
  width: 30px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

form.woocommerce-checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

#order_review_heading {
  display: none; }

.checkout-wrapper, .woocommerce-checkout-review-order {
  margin-left: 100px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 100px);
  flex: 0 0 calc(50% - 100px);
  max-width: calc(50% - 100px); }

@media (max-width: 767px) {
  .checkout-wrapper, .woocommerce-checkout-review-order {
    margin-left: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 100px);
    flex: 0 0 100%;
    max-width: 100%; } }
.checkout-wrapper table, .woocommerce-checkout-review-order table {
  border: 0 !important; }

.checkout-wrapper table th, .checkout-wrapper table tr, .checkout-wrapper table td,
.woocommerce-checkout-review-order table th, .woocommerce-checkout-review-order table tr, .woocommerce-checkout-review-order table td {
  border-left: 0 !important;
  border-right: 0 !important; }

.checkout-wrapper table thead tr:first-of-type {
  border-top: 0 !important; }

.checkout-wrapper table thead tr:first-of-type th {
  border-top: 0 !important; }

.checkout-wrapper table tr {
  border: 0 !important; }

.checkout-wrapper .woocommerce-shipping-totals > th {
  display: none; }

.checkout-wrapper .woocommerce-shipping-totals > td {
  text-align: left; }

.checkout-wrapper .woocommerce-shipping-totals > td:before {
  content: attr(data-title);
  display: block;
  margin-bottom: 20px; }

.checkout-wrapper .wc_payment_methods {
  padding: 24px;
  background-color: #fff;
  margin-bottom: 30px; }

.checkout-wrapper .wc_payment_methods .woocommerce-notice {
  padding: 0; }

.checkout-wrapper .wc_payment_methods li:last-of-type {
  padding-bottom: 0; }

.checkout-wrapper .woocommerce-checkout-review-order {
  background-color: #f2f2f2;
  padding: 30px; }

@media (max-width: 767px) {
  .checkout-wrapper .woocommerce-checkout-review-order {
    padding: 15px; } }
.checkout-wrapper .product-name, .checkout-wrapper th {
  text-align: left;
  font-weight: 400; }

.checkout-wrapper thead th {
  font-weight: 600 !important; }

.checkout-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.checkout-wrapper ul li {
  padding-bottom: 14px; }

.checkout-wrapper #shipping_method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left; }

.checkout-wrapper #shipping_method > li {
  position: relative;
  padding-right: 100px; }

.checkout-wrapper #shipping_method .woocommerce-Price-amount {
  position: absolute;
  right: 0;
  top: 0; }

.checkout-wrapper [type="radio"] {
  margin-right: 5px; }

.checkout-wrapper td, .checkout-wrapper .product-total {
  text-align: right; }

.checkout-wrapper td, .checkout-wrapper th {
  padding: 15px 0; }

.checkout-wrapper .cart_item td {
  border: 0; }

.checkout-wrapper .order-total .amount {
  font-size: 24px;
  font-size: 1.5rem; }

.checkout-wrapper .order-total th, .checkout-wrapper .order-total td {
  border-bottom: 0; }

.checkout-wrapper .cart-subtotal .amount {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600; }

.checkout-wrapper .button {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 19px;
  padding-bottom: 19px; }

@media screen and (min-width: 768px) {
  .col2-set .form-row-first {
    float: left;
    margin-right: 3.8%; }

  .col2-set .form-row-last {
    float: right;
    margin-right: 0; }

  .col2-set .form-row-first, .col2-set .form-row-last {
    width: 48.1%; } }
.checkout-layout2 form.woocommerce-checkout {
  display: block; }

.checkout-layout2 #customer_details, .checkout-layout2 .checkout-wrapper {
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-left: 0; }

.checkout-layout2 .checkout-wrapper {
  margin-top: 60px; }

.payment_box p:last-of-type {
  margin-bottom: 0; }

.woocommerce form .form-row .required {
  text-decoration: none; }

.woocommerce-checkout-payment li {
  background: transparent; }

.woocommerce-NoticeGroup-checkout {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }

.woocommerce-NoticeGroup-checkout ul {
  list-style: none; }

.woocommerce-thankyou-order-received {
  margin-top: 30px;
  padding: 20px 30px; }

.woocommerce-thankyou-order-details {
  padding: 30px 30px 30px 35px; }

.woocommerce-thankyou-order-details li {
  list-style: none; }

.woocommerce-checkout .woocommerce-customer-details .woocommerce-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.woocommerce-checkout .woocommerce-customer-details .woocommerce-columns .col-1, .woocommerce-checkout .woocommerce-customer-details .woocommerce-columns .col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0; }

@media screen and (max-width: 767px) {
  .woocommerce-checkout .woocommerce-customer-details .woocommerce-columns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .woocommerce-checkout .woocommerce-customer-details .woocommerce-columns .col-1, .woocommerce-checkout .woocommerce-customer-details .woocommerce-columns .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; } }
.checkout_coupon.woocommerce-form-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.checkout_coupon.woocommerce-form-coupon > p:first-child {
  width: 100%;
  margin-bottom: 20px; }

.checkout_coupon.woocommerce-form-coupon > p.form-row-first, .checkout_coupon.woocommerce-form-coupon > p.form-row-last {
  margin-bottom: 10px; }

.checkout_coupon.woocommerce-form-coupon #coupon_code {
  height: 100%; }

#amazon_customer_details .col-1, #amazon_customer_details .col-2 {
  max-width: 100%; }

.site-header-cart .cart-contents {
  text-decoration: none; }

.site-header-cart .widget_shopping_cart {
  display: none;
  background-color: #fff; }

.site-header-cart .product_list_widget {
  margin: 0;
  padding: 0; }

.site-header-cart, .header-wishlist-icon {
  position: relative; }

.site-header-cart .count-number, .header-wishlist-icon .count-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  line-height: 17px;
  color: #FFF;
  background: #ff5858;
  border: 1px solid #ff5858;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: 0; }

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 61px;
  border: 2px solid #212121;
  margin-bottom: 1.3rem; }

.quantity .qty {
  text-align: center;
  padding: 0;
  border: none;
  width: 100%;
  min-height: 0;
  background: transparent !important; }

.quantity .qty:focus {
  -webkit-box-shadow: none;
  box-shadow: none; }

.quantity-button-style-abs-pos .quantity {
  position: relative; }

.quantity-button-style2 .quantity {
  border-width: 1px; }

.quantity-button-style2 .qty {
  padding-right: 35px; }

@media (min-width: 1025px) {
  .quantity-button-style3 .quantity {
    width: 22%; } }
.quantity-button-style3 .qty {
  padding-right: 35px; }

.quantity-button-style4 .quantity {
  border-width: 1px; }

@media (min-width: 1025px) {
  .quantity-button-style4 .quantity {
    width: 40%; } }
.quantity-button-style5 .quantity {
  border: none; }

@media (min-width: 1025px) {
  .quantity-button-style5 .quantity {
    width: 40%; } }
.quantity-button-style6 .quantity {
  border: none; }

@media (min-width: 1025px) {
  .quantity-button-style6 .quantity {
    width: 50%; } }
.quantity-button-style6 .quantity .qty {
  border-style: solid;
  border-width: 1px; }

.quantity-button-style6 .woocommerce-cart-form .product-price {
  width: 12%; }

.quantity-button-style6 .woocommerce-cart-form .product-quantity {
  width: 26%; }

.quantity-button-style6 .woocommerce-cart-form .quantity {
  max-width: 147px; }

.quantity-button-style7 .quantity {
  border-width: 1px; }

@media (min-width: 1025px) {
  .quantity-button-style7 .quantity {
    width: 22%; } }
.quantity-button-style7 .quantity .qty {
  padding-right: 35px; }

.quantity-button-style7 .woocommerce-cart-form .quantity {
  height: 65px; }

.quantity-button-style8 .quantity {
  padding: 5px;
  border-width: 1px; }

@media (min-width: 1025px) {
  .quantity-button-style8 .quantity {
    width: 40%; } }
.quantity-button-style9 .quantity {
  border-radius: 35px; }

.woocommerce-cart-form .quantity {
  max-width: 120px;
  margin-bottom: 0;
  border-width: 1px; }

.woocommerce-cart-form .quantity .qty {
  font-size: 1rem; }

.wc-block-cart__submit-button {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  background: #375b7f;
  color: #fff;
  text-decoration: none;
  border-radius: 15px; }

@media (min-width: 1025px) {
  .woocommerce-cart-form .quantity {
    height: 45px;
    width: 100%;
    max-width: 85px; }

  form.cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

  form.cart .quantity {
    max-width: 30%; }

  .quantity {
    width: 100%;
    margin-bottom: 0;
    margin-right: 20px; }

  .qty {
    width: 50px; }

  .qty {
    text-align: center; }

  .qty::-webkit-outer-spin-button, .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }

  .qty[type=number] {
    -moz-appearance: textfield; } }
@media (max-width: 1024px) {
  .woocommerce-cart-form .quantity {
    height: 50px; } }
@media (min-width: 992px) and (max-width: 1024px) {
  .quantity {
    width: calc(100% - 116px); } }
.star-rating {
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0; }

.star-rating::before {
  content: "\53\53\53\53\53";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute; }

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em; }

.star-rating span::before {
  content: "\53\53\53\53\53";
  top: 0;
  position: absolute;
  left: 0;
  color: #FFA441; }

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 1px;
  font-weight: 400; }

p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: star;
  content: "\53";
  color: #212121;
  text-indent: 0;
  opacity: 0.25; }

p.stars a:hover ~ a::before {
  content: "\53";
  color: #212121;
  opacity: 0.25; }

p.stars:hover a::before {
  content: "\53";
  color: #FFA441;
  opacity: 1; }

p.stars.selected a.active::before {
  content: "\53";
  color: #FFA441;
  opacity: 1; }

p.stars.selected a.active ~ a::before {
  content: "\53";
  color: #212121;
  opacity: 0.25; }

p.stars.selected a:not(.active)::before {
  content: "\53";
  color: #FFA441;
  opacity: 1; }

.woocommerce-tabs {
  margin-top: 70px;
  margin-bottom: 60px; }

.woocommerce-tabs .woocommerce-Reviews-title {
  display: none; }

.woocommerce-tabs ul.tabs {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
  border-bottom: 1px solid rgba(33, 33, 33, 0.2); }

.woocommerce-tabs ul.tabs li {
  display: inline-block;
  margin: 0;
  padding-bottom: 0;
  position: relative; }

.woocommerce-tabs ul.tabs li a {
  font-size: 18px;
  font-size: 1.125rem;
  color: #212121;
  padding: 10px 30px;
  display: block;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s; }

.woocommerce-tabs ul.tabs li a:hover {
  border-color: #212121; }

.woocommerce-tabs ul.tabs li.active a {
  border-color: #212121; }

.woocommerce-tabs .panel h2:first-of-type {
  margin-bottom: 1em; }

@media (max-width: 767px) {
  .woocommerce-tabs ul.tabs li {
    display: block;
    margin-left: 0 !important; } }
.woocommerce-password-strength {
  text-align: right; }

.woocommerce-password-strength.strong {
  color: #0f834d; }

.woocommerce-password-strength.short {
  color: #e2401c; }

.woocommerce-password-strength.bad {
  color: #e2401c; }

.woocommerce-password-strength.good {
  color: #3d9cd2; }

.form-row.woocommerce-validated input.input-text {
  -webkit-box-shadow: inset 2px 0 0 #0f834d;
  box-shadow: inset 2px 0 0 #0f834d; }

.form-row.woocommerce-invalid input.input-text {
  -webkit-box-shadow: inset 2px 0 0 #e2401c;
  box-shadow: inset 2px 0 0 #e2401c; }

.required {
  color: #f00; }

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
  padding: 15px;
  background-color: #f2f2f2;
  clear: both; }

.woocommerce-message a, .woocommerce-info a, .woocommerce-error a, .woocommerce-noreviews a, p.no-comments a {
  color: #716f6f; }

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
  font-family: WooCommerce;
  content: "\e028";
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  padding: 8px; }

.shop_table.order_details tbody tr:last-child td, .shop_table.woocommerce-MyAccount-orders tbody tr:last-child td {
  padding-bottom: 15px;
  font-weight: 400;
  padding: 9px 12px;
  line-height: 1.5em; }

.woocommerce-info .button {
  margin-right: 15px; }

.woocommerce-form-coupon-toggle {
  margin-bottom: 30px; }

.checkout_coupon {
  margin-top: -30px;
  margin-bottom: 30px;
  padding: 15px; }

.checkout_coupon .form-row {
  display: inline-block; }

.woocommerce-info, .woocommerce-noreviews, p.no-comments {
  background-color: #f2f2f2; }

.woocommerce-error {
  list-style: none;
  background-color: #f2f2f2; }

.demo_store {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  background-color: #3d9cd2;
  z-index: 9999; }

.widget_shopping_cart {
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 9999999;
  left: -999em;
  display: block;
  -webkit-box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.12);
  min-width: 400px;
  margin: 0 auto;
  padding: 30px 0 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
  -webkit-transition: ease opacity 300ms, ease transform 300ms;
  transition: ease opacity 300ms, ease transform 300ms; }

.widget_shopping_cart.widget {
  padding-bottom: 0;
  margin: 0; }

.widget_shopping_cart .variation {
  width: 100%;
  margin: 7px 0 9px;
  padding-left: 15px;
  line-height: 1.5; }

.widget_shopping_cart .quantity {
  border: none;
  height: auto;
  background: transparent;
  margin: 5px 0 0; }

.widget_shopping_cart .mini_cart_item a:nth-child(2) {
  line-height: 1.4; }

.widget_shopping_cart .woocommerce-mini-cart__empty-message {
  padding: 30px; }

.widget_shopping_cart .widgettitle {
  font-size: 24px;
  font-size: 1.5rem;
  padding: 0 30px 30px;
  margin: 0;
  position: relative; }

.widget_shopping_cart .widgettitle:after {
  content: '';
  position: absolute;
  width: calc(100% - 60px);
  height: 1px;
  bottom: 0;
  left: 30px;
  background-color: #eee; }

.widget_shopping_cart .widget_shopping_cart_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.widget_shopping_cart .widget_shopping_cart_content .product_list_widget {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5; }

.widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart__total {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10; }

.widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
  -webkit-box-ordinal-group: 16;
  -ms-flex-order: 15;
  order: 15; }

.widget_shopping_cart .woocommerce-mini-cart__total, .widget_shopping_cart .woocommerce-mini-cart__buttons {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0 30px; }

.widget_shopping_cart .woocommerce-mini-cart__total {
  padding-top: 30px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 600; }

.widget_shopping_cart .woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-size: 18px;
  font-size: 1.125rem; }

.widget_shopping_cart .woocommerce-mini-cart__total strong {
  font-weight: 400; }

.widget_shopping_cart .woocommerce-mini-cart__buttons {
  padding: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.widget_shopping_cart .woocommerce-mini-cart__buttons:before {
  content: '';
  position: absolute;
  width: calc(100% - 60px);
  height: 1px;
  top: 0;
  left: 30px;
  background-color: #e6e6e6; }

.widget_shopping_cart .woocommerce-mini-cart__buttons .button.checkout {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px; }

.widget_shopping_cart .woocommerce-mini-cart__buttons .button:not(.checkout) {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
  border: 0;
  background: transparent !important;
  text-decoration: underline;
  padding: 0 !important; }

@media screen and (min-width: 48em) {
  .header-elements-left .site-header-cart:hover .widget_shopping_cart, .header-elements-left .site-header-cart.focus .widget_shopping_cart {
    left: 0;
    display: block; }

  .site-header-cart:hover .widget_shopping_cart, .site-header-cart.focus .widget_shopping_cart {
    left: auto;
    right: 0;
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none; }

  .site-header-cart .product_list_widget {
    margin: 0;
    padding: 0;
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100%; }

  .site-header-cart .product_list_widget::-webkit-scrollbar {
    width: 4px; }

  .site-header-cart .product_list_widget::-webkit-scrollbar-track {
    background: #e2e2e2; }

  .site-header-cart .product_list_widget::-webkit-scrollbar-thumb {
    background-color: #CCC; }

  .site-header-cart .product_list_widget li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 30px 20px 105px;
    min-height: 115px;
    background: transparent;
    position: relative;
    max-width: 100%; }

  .site-header-cart .product_list_widget li:after {
    content: '';
    position: absolute;
    width: calc(100% - 60px);
    height: 1px;
    bottom: 0;
    left: 30px;
    background-color: rgba(33, 33, 33, 0.1); }

  .site-header-cart .product_list_widget li:last-of-type {
    padding-bottom: 20px; }

  .site-header-cart .product_list_widget li:last-of-type:after {
    display: none; }

  .site-header-cart .product_list_widget li img {
    width: 62px;
    max-height: 75px;
    position: absolute;
    top: 20px;
    left: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center; }

  .site-header-cart .product_list_widget li a.remove {
    width: 18px;
    height: 18px;
    font-size: 16px;
    line-height: 16px;
    background-color: #212121;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 22px;
    -webkit-transition: ease transform 300ms;
    transition: ease transform 300ms;
    z-index: 11; }

  .site-header-cart .product_list_widget li a.remove:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }

  .site-header-cart .product_list_widget li > a:not(.remove), .site-header-cart .product_list_widget li > span {
    padding-left: 15px;
    max-width: 100%; }

  .site-header-cart .product_list_widget li > span {
    display: block;
    font-weight: 600;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem; }

  .site-header-cart.mini-cart-has-scroll .product_list_widget {
    max-height: 26vh;
    min-height: 260px;
    overflow-y: auto; } }
.price {
  font-weight: 600; }

.price ins {
  background: transparent; }

.price del {
  color: #999999; }

.wc-block-grid__product-onsale, span.onsale {
  position: absolute;
  background: #212121;
  top: 20px;
  left: 20px;
  font-weight: 400;
  font-size: 14px;
  font-size: .875rem;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 20px;
  border-radius: 0;
  z-index: 11; }

.product-list .wc-block-grid__product-onsale, .product-list span.onsale {
  left: 15px; }

.woocommerce-breadcrumb {
  margin-bottom: 30px;
  color: #212121;
  opacity: 0.7; }

.woocommerce-breadcrumb a {
  color: #212121; }

.product-gallery-summary del .amount {
  opacity: 0.5; }

dl.variation {
  font-size: 0.85em;
  margin-bottom: 0; }

dl.variation:after {
  content: '';
  display: block;
  clear: both; }

dl.variation dt, dl.variation dd {
  float: left; }

dl.variation dt {
  clear: both; }

dl.variation dd {
  margin: 0 5px 0 5px; }

dl.variation p {
  margin-bottom: 0; }

#wc-stripe-payment-request-button-separator, #wcpay-payment-request-button-separator {
  width: 100%;
  margin: 20px 0 !important; }

#wc-stripe-payment-request-wrapper, #wcpay-payment-request-wrapper {
  width: 100%;
  padding: 0 !important; }

.widget_price_filter .price_slider {
  margin-bottom: 1.5em; }

.widget_price_filter .price_slider_amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  line-height: 2.4;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.widget_price_filter .price_slider_amount .price_label {
  width: 100%; }

.widget_price_filter .price_slider_amount .button {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.widget_price_filter .ui-slider {
  position: relative;
  text-align: left; }

.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  cursor: ew-resize;
  outline: none;
  background: #fff;
  border: 2px solid #212121;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -7px;
  opacity: 1;
  border-radius: 50%; }

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
  margin-left: -1em; }

.widget_price_filter .ui-slider .ui-slider-handle:hover, .widget_price_filter .ui-slider .ui-slider-handle.ui-state-active {
  -webkit-box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 0.25em rgba(0, 0, 0, 0.1); }

.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  border: 0;
  background: #212121; }

.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: rgba(0, 0, 0, 0.1); }

.widget_price_filter .ui-slider-horizontal {
  height: 2px; }

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
  height: 100%; }

.widget-area .widget_products li, .widget-area .widget_top_rated_products li, .widget-area .widget_recently_viewed_products li, .widget-area .widget_recent_reviews li, .widget-column .widget_products li, .widget-column .widget_top_rated_products li, .widget-column .widget_recently_viewed_products li, .widget-column .widget_recent_reviews li {
  margin-bottom: 15px; }

.widget-area .widget_products li a, .widget-area .widget_top_rated_products li a, .widget-area .widget_recently_viewed_products li a, .widget-area .widget_recent_reviews li a, .widget-column .widget_products li a, .widget-column .widget_top_rated_products li a, .widget-column .widget_recently_viewed_products li a, .widget-column .widget_recent_reviews li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px; }

.widget-area .widget_products li img, .widget-area .widget_top_rated_products li img, .widget-area .widget_recently_viewed_products li img, .widget-area .widget_recent_reviews li img, .widget-column .widget_products li img, .widget-column .widget_top_rated_products li img, .widget-column .widget_recently_viewed_products li img, .widget-column .widget_recent_reviews li img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15%;
  flex: 0 0 15%;
  max-width: 15%;
  margin-top: 5px; }

.widget-area .widget_products li .product-title, .widget-area .widget_top_rated_products li .product-title, .widget-area .widget_recently_viewed_products li .product-title, .widget-area .widget_recent_reviews li .product-title, .widget-column .widget_products li .product-title, .widget-column .widget_top_rated_products li .product-title, .widget-column .widget_recently_viewed_products li .product-title, .widget-column .widget_recent_reviews li .product-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
  max-width: 85%;
  padding-left: 15px; }

.widget-area .widget_products li .reviewer, .widget-area .widget_products li .amount, .widget-area .widget_products li .star-rating, .widget-area .widget_top_rated_products li .reviewer, .widget-area .widget_top_rated_products li .amount, .widget-area .widget_top_rated_products li .star-rating, .widget-area .widget_recently_viewed_products li .reviewer, .widget-area .widget_recently_viewed_products li .amount, .widget-area .widget_recently_viewed_products li .star-rating, .widget-area .widget_recent_reviews li .reviewer, .widget-area .widget_recent_reviews li .amount, .widget-area .widget_recent_reviews li .star-rating, .widget-column .widget_products li .reviewer, .widget-column .widget_products li .amount, .widget-column .widget_products li .star-rating, .widget-column .widget_top_rated_products li .reviewer, .widget-column .widget_top_rated_products li .amount, .widget-column .widget_top_rated_products li .star-rating, .widget-column .widget_recently_viewed_products li .reviewer, .widget-column .widget_recently_viewed_products li .amount, .widget-column .widget_recently_viewed_products li .star-rating, .widget-column .widget_recent_reviews li .reviewer, .widget-column .widget_recent_reviews li .amount, .widget-column .widget_recent_reviews li .star-rating {
  margin-left: calc(15% + 15px); }

.widget-area .widget_products li ins .amount, .widget-area .widget_top_rated_products li ins .amount, .widget-area .widget_recently_viewed_products li ins .amount, .widget-area .widget_recent_reviews li ins .amount, .widget-column .widget_products li ins .amount, .widget-column .widget_top_rated_products li ins .amount, .widget-column .widget_recently_viewed_products li ins .amount, .widget-column .widget_recent_reviews li ins .amount {
  margin-left: 0 !important; }

.widget-area .widget_products li del, .widget-area .widget_products li ins, .widget-area .widget_top_rated_products li del, .widget-area .widget_top_rated_products li ins, .widget-area .widget_recently_viewed_products li del, .widget-area .widget_recently_viewed_products li ins, .widget-area .widget_recent_reviews li del, .widget-area .widget_recent_reviews li ins, .widget-column .widget_products li del, .widget-column .widget_products li ins, .widget-column .widget_top_rated_products li del, .widget-column .widget_top_rated_products li ins, .widget-column .widget_recently_viewed_products li del, .widget-column .widget_recently_viewed_products li ins, .widget-column .widget_recent_reviews li del, .widget-column .widget_recent_reviews li ins {
  background: transparent; }

.widget_rating_filter a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.widget_rating_filter a .star-rating {
  margin-left: 0; }

.woocommerce-account .woocommerce-notices-wrapper {
  margin-bottom: 20px; }

.woocommerce-account #customer_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.woocommerce-account #customer_login .col-1, .woocommerce-account #customer_login .col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

.woocommerce-account #customer_login h2 {
  margin-top: 0; }

.woocommerce-account #customer_login .col-2 {
  margin-left: -1px; }

.woocommerce-account .woocommerce-form-login, .woocommerce-account .woocommerce-form-register {
  border: 1px solid #ebebeb;
  padding: 60px;
  min-height: 503px; }

.woocommerce-account .woocommerce-form-login input[type="password"], .woocommerce-account .woocommerce-form-login input[type="text"], .woocommerce-account .woocommerce-form-login input[type="email"], .woocommerce-account .woocommerce-form-register input[type="password"], .woocommerce-account .woocommerce-form-register input[type="text"], .woocommerce-account .woocommerce-form-register input[type="email"] {
  width: 100%;
  display: block; }

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit, .woocommerce-account .woocommerce-form-register .woocommerce-form-login__submit {
  display: table;
  margin: 17px auto 0;
  line-height: 1;
  border: 1px solid #375d82;
  background-color: #375d82;
  color: #fff;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: 0.2s; }

.woocommerce-account.logged-in .entry-content > .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }

.woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation ul li {
  padding-bottom: 0; }

.woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation ul li:last-child a {
  border-bottom: none; }

.woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation ul a {
  display: block;
  text-decoration: none;
  padding: 16px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.1); }

.woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
  padding-left: 30px; }

.woocommerce-account.logged-in .entry-content > .woocommerce .button {
  color: #fff; }

.woocommerce-account .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-account .woocommerce-EditAccountForm.edit-account input[type="tel"], .woocommerce-account .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-account .woocommerce-address-fields input[type="text"], .woocommerce-account .woocommerce-address-fields input[type="tel"], .woocommerce-account .woocommerce-address-fields input[type="email"] {
  width: 100%; }

.woocommerce-account fieldset {
  border-width: 1px;
  border-color: rgba(33, 33, 33, 0.2);
  border-style: solid;
  padding: 30px;
  margin-bottom: 30px; }

.woocommerce-account fieldset input[type="password"] {
  width: 100%; }

@media only screen and (max-width: 991px) {
  .woocommerce-account #customer_login .col-1, .woocommerce-account #customer_login .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .woocommerce-account #customer_login .col-1 + .col-2 {
    margin-top: 30px; }

  .woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-navigation + .woocommerce-MyAccount-content {
    margin-top: 30px; }

  .woocommerce-account.logged-in .entry-content > .woocommerce .woocommerce-MyAccount-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0; } }
@media only screen and (max-width: 767px) {
  .woocommerce-account .woocommerce-form-login, .woocommerce-account .woocommerce-form-register {
    padding: 45px; } }
.woocommerce-form-track-order {
  background-color: #f5f5f5;
  padding: 20px; }

.woocommerce-form-track-order .form-row:last-of-type {
  margin-bottom: 0; }

.woocommerce-form-track-order .form-row label {
  display: block;
  margin-bottom: 15px; }

.woocommerce-form-track-order .form-row .input-text {
  width: 100%; }

.woocommerce-form-track-order .form-row .button {
  min-width: 120px; }

@media screen and (min-width: 768px) {
  .woocommerce-form-track-order {
    padding: 40px; } }
.woocommerce .notes {
  padding: 40px;
  background-color: #f5f5f5; }

.woocommerce .notes .note {
  margin-left: 15px; }

.woocommerce .notes .note::marker {
  font-size: 0.9em;
  font-weight: 600; }

.woocommerce .notes .note + .note {
  margin-top: 30px; }

.woocommerce .notes .note .meta {
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px; }

.woocommerce .notes .note .description {
  border-top: 1px solid rgba(33, 33, 33, 0.1);
  padding-top: 15px; }

.woocommerce .notes .note .description p:last-of-type {
  margin-bottom: 0; }

.woocommerce .woocommerce-Addresses .col-1, .woocommerce .woocommerce-Addresses .col-2, .woocommerce .woocommerce-columns--addresses .col-1, .woocommerce .woocommerce-columns--addresses .col-2, .woocommerce .woocommerce-MyAccount-content .col-1, .woocommerce .woocommerce-MyAccount-content .col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0; }

/**/
.woocommerce-loop-product__title {
  padding: 5px;
  margin: 10px; }

.wc-block-components-product-name {
  font-weight: 700;
  color: #375d82;
  text-decoration: none; }

/*NOWE*/
.woocommerce {
  display: flex; }

.woocommerce-account.logged-in .entry-content > .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.woocommerce .woocommerce-MyAccount-navigation {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }

.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.woocommerce .woocommerce-MyAccount-navigation ul li {
  padding-bottom: 0; }

.woocommerce .woocommerce-MyAccount-navigation ul li:last-child a {
  border-bottom: none; }

.woocommerce .woocommerce-MyAccount-navigation ul a {
  display: block;
  text-decoration: none;
  padding: 16px;
  color: var(--bt-color-body-text, #212121);
  border-bottom: 1px solid rgba(33, 33, 33, 0.1); }

.woocommerce .woocommerce-MyAccount-navigation ul .is-active a {
  background-color: var(--bt-color-content-cards-bg, #f5f5f5); }

.woocommerce .woocommerce-MyAccount-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
  padding-left: 30px; }

.woocommerce-account.logged-in .entry-content > .woocommerce .button {
  color: #fff; }

.woocommerce-account .woocommerce-EditAccountForm.edit-account input[type=text], .woocommerce-account .woocommerce-EditAccountForm.edit-account input[type=tel], .woocommerce-account .woocommerce-EditAccountForm.edit-account input[type=email], .woocommerce-account .woocommerce-address-fields input[type=text], .woocommerce-account .woocommerce-address-fields input[type=tel], .woocommerce-account .woocommerce-address-fields input[type=email] {
  width: 100%; }

.woocommerce-account fieldset {
  border-width: 1px;
  border-color: rgba(33, 33, 33, 0.2);
  border-style: solid;
  padding: 30px;
  margin-bottom: 30px; }

.woocommerce-account fieldset input[type=password] {
  width: 100%; }

.woocommerce-account .password-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

* {
  box-sizing: border-box; }

.clr {
  clear: both; }

body {
  height: 100%;
  padding: 0px;
  font-family: "Mulish", sans-serif; }

header.header {
  width: 100%;
  padding: 5px 0px;
  position: fixed;
  background-color: #fbfbfb;
  top: 0;
  transition: 0.2s;
  z-index: 22;
  height: 125px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    header.header {
      top: 0 !important;
      height: 70px; } }
  @media only screen and (max-width: 767.98px) {
    header.header {
      top: 0 !important;
      height: 70px; } }

a.button-link {
  background-color: #375d82;
  color: #fff;
  padding: 24px 38px;
  margin-top: 40px;
  display: inline-block;
  text-align: left;
  font-weight: 700;
  text-decoration-color: transparent;
  text-transform: none;
  font-size: 18px;
  font-family: "Mulish", sans-serif;
  border-radius: 20px;
  transition: 0.3s;
  border: 2px solid #fff;
  position: relative; }
  a.button-link:hover {
    background-color: #000;
    transition: 0.4s; }
  @media only screen and (max-width: 767.98px) {
    a.button-link {
      font-size: 16px;
      padding: 15px 30px;
      text-align: center;
      margin: 15px auto 0 auto; } }

a.button-link-small {
  background-color: #375d82;
  color: #fff;
  padding: 15px 30px;
  margin-top: 40px;
  display: inline-block;
  text-align: left;
  font-weight: 700;
  text-decoration-color: transparent;
  text-transform: none;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  border-radius: 20px;
  transition: 0.3s;
  border: 2px solid #fff;
  position: relative; }
  a.button-link-small:hover {
    background-color: #000;
    transition: 0.4s; }

.logo {
  width: 225px;
  margin-top: 5px; }
  .logo img {
    max-width: 100%;
    height: auto; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .logo {
      width: 130px;
      margin-top: 1px;
      z-index: 2; } }
  @media only screen and (max-width: 767.98px) {
    .logo {
      width: 130px;
      margin-top: 1px;
      z-index: 2; } }

.header-container {
  display: flex;
  justify-content: space-between; }

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .header-nav {
      margin-right: 45px; } }
  @media only screen and (max-width: 767.98px) {
    .header-nav {
      margin-right: 45px; } }

#main-menu-content {
  margin: 0 15px;
  margin-top: 0px;
  padding-right: 0px; }
  #main-menu-content ul {
    display: table;
    margin: 0 80px 0 auto;
    padding: 20px 15px;
    background: #375d82;
    border-radius: 15px; }
    #main-menu-content ul li {
      list-style: none;
      display: table-cell;
      padding: 0px 5px; }
      #main-menu-content ul li a {
        padding: 10px 14px;
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        font-weight: 500;
        font-family: "Mulish", sans-serif;
        letter-spacing: 0px;
        position: relative;
        border-radius: 10px; }
        #main-menu-content ul li a:hover {
          background: #fff;
          color: #122335;
          transition: width .3s; }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #main-menu-content ul li a {
            padding: 8px 12px;
            font-size: 16px; } }
    #main-menu-content ul li.current_page_item a {
      background: #fff;
      color: #122335; }

#main-menu-content {
  display: block;
  float: right; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #main-menu-content {
      display: none; } }
  @media only screen and (max-width: 767.98px) {
    #main-menu-content {
      display: none; } }

.slicknav_menu {
  display: none;
  position: fixed;
  top: 10px;
  right: 0px;
  z-index: 1;
  width: 100%;
  padding: 5px 0px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .slicknav_menu {
      display: block; } }
  @media only screen and (max-width: 767.98px) {
    .slicknav_menu {
      display: block; } }

.menu-social-media {
  display: flex;
  border-right: 1px solid #f2f2f23b;
  border-left: 1px solid #f2f2f23b;
  padding: 0px 0px;
  align-items: center; }
  .menu-social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 0;
    background: #375d82;
    padding: 14px;
    border-radius: 10px; }
    .menu-social-media ul li a {
      color: #fff;
      padding: 0px 10px;
      font-size: 22px; }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .menu-social-media ul {
        display: none; } }
    @media only screen and (max-width: 767.98px) {
      .menu-social-media ul {
        display: none; } }

/*------ SLIDER ------*/
.slider {
  width: 100%;
  overflow: hidden;
  min-height: 650px;
  height: calc(100vh - 100px);
  max-width: 100%;
  margin: 100px auto 0px auto;
  border-radius: 10px;
  background-image: url(img/mapa_tp.webp);
  background-color: rgba(255, 255, 255, 0.96);
  background-blend-mode: lighten;
  background-size: 60%;
  background-position: center; }
  .slider-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; }
  .slider-shapes {
    border-radius: 50%;
    width: 565px;
    height: 565px;
    position: relative;
    background-color: #d4ba97; }
    @media only screen and (min-width: 1200px) and (max-width: 1487px) {
      .slider-shapes {
        width: 410px;
        height: 410px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .slider-shapes {
        width: 410px;
        height: 410px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .slider-shapes {
        display: none; } }
    @media only screen and (max-width: 767.98px) {
      .slider-shapes {
        display: none; } }
    .slider-shapes img {
      border-style: none;
      max-height: 100vh;
      object-fit: contain;
      width: auto; }
  @media only screen and (max-width: 767.98px) {
    .slider-text {
      margin-top: -50px; } }
  .slider-text h1 {
    color: #000;
    font-size: 52px;
    text-transform: uppercase;
    text-align: left;
    padding: 0px 0px;
    font-weight: 900;
    border-radius: 20px;
    position: relative;
    line-height: 68px;
    margin-left: 0px; }
    .slider-text h1 span {
      display: block;
      font-weight: 300;
      text-transform: none;
      font-size: 46px; }
      @media only screen and (max-width: 767.98px) {
        .slider-text h1 span {
          font-size: 22px; } }
    @media only screen and (max-width: 767.98px) {
      .slider-text h1 {
        font-size: 28px;
        padding: 0px 0px;
        line-height: 36px;
        /* font-weight: 400; */ } }
  .slider-buttons {
    position: relative;
    margin-top: 60px; }
    .slider-buttons a {
      background-color: #375d82;
      color: #fff;
      text-decoration: none;
      padding: 22px 48px;
      font-size: 18px;
      font-weight: 500;
      margin-right: 20px;
      border-radius: 15px;
      transition: 0.4s; }
      .slider-buttons a:hover {
        background-color: #000;
        transition: 0.4s; }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .slider-buttons a {
          padding: 18px 35px;
          margin-right: 15px; } }
      @media only screen and (max-width: 767.98px) {
        .slider-buttons a {
          padding: 13px 15px;
          font-size: 14px;
          margin-right: 8px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .slider {
      height: auto;
      aspect-ratio: 4/2;
      position: relative;
      margin: 60px auto 0px auto;
      border-radius: 0px; } }
  @media only screen and (max-width: 767.98px) {
    .slider {
      height: auto;
      aspect-ratio: 3 / 2;
      position: relative;
      margin: 60px auto 0px auto;
      border-radius: 0px; } }

.single-slider-shapes {
  border-radius: 30% 70% 67% 33%/30% 33% 67% 70%;
  width: 800px;
  height: 650px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-image: linear-gradient(180deg, rgba(66, 96, 166, 0.7791491597) 0%, rgba(28, 53, 117, 0.8267682073) 100%), url(img/slider-2.jpg); }

.shape-img {
  border-radius: 50px;
  max-width: 100%;
  height: auto;
  position: relative;
  background-position: center center;
  background-size: cover; }

/*------ strona główna ------*/
.home-info {
  padding: 150px 0px 130px 0px; }
  .home-info h2 {
    color: #000;
    text-align: left;
    font-size: 40px;
    padding: 0;
    margin: 15px 0 40px 0px;
    font-weight: 800; }
    .home-info h2 span {
      font-weight: 900;
      color: #edecec;
      font-size: 90px;
      top: 75px;
      position: relative;
      transition: top 0.3s ease-out;
      z-index: -1; }
      @media only screen and (max-width: 767.98px) {
        .home-info h2 span {
          font-size: 30px; } }
    @media only screen and (max-width: 767.98px) {
      .home-info h2 {
        font-size: 26px;
        margin: 0;
        padding: 10px; } }
  .home-info .row {
    align-items: center; }
  .home-info .col-12 p {
    font-size: 22px;
    padding: 0px 15px 10px 5px;
    line-height: 34px; }
    @media only screen and (max-width: 767.98px) {
      .home-info .col-12 p {
        line-height: 26px;
        font-size: 20px;
        padding: 10px 5px 5px 5px; } }
  .home-info .col-12 img {
    max-width: 100%;
    height: auto;
    border-radius: 5%;
    aspect-ratio: 1;
    object-fit: cover; }
  .home-info-tekst {
    position: relative;
    /* left: 20px; */
    height: 100%;
    padding: 20px 35px; }
    @media only screen and (max-width: 767.98px) {
      .home-info-tekst {
        left: 0;
        padding: 20px; } }
    .home-info-tekst p {
      font-weight: 300;
      color: #36373d;
      font-size: 32px;
      line-height: normal;
      padding: 0px 0px 20px 0px;
      margin: 0; }
      @media only screen and (max-width: 767.98px) {
        .home-info-tekst p {
          font-size: 24px; } }
    .home-info-tekst a {
      background-color: #375d82;
      color: #fff;
      padding: 24px 38px;
      margin-top: 40px;
      display: inline-block;
      text-align: left;
      font-weight: 700;
      text-decoration-color: transparent;
      text-transform: none;
      font-size: 18px;
      font-family: "Mulish", sans-serif;
      border-radius: 20px;
      transition: 0.3s;
      border: 2px solid #fff;
      position: relative; }
      .home-info-tekst a:hover {
        background-color: #000;
        transition: 0.4s; }
      @media only screen and (max-width: 767.98px) {
        .home-info-tekst a {
          padding: 18px 20px;
          font-size: 14px; } }
  @media only screen and (max-width: 767.98px) {
    .home-info {
      padding: 40px 0px; } }

.box-icon-1-tlo {
  background-color: #fafafa;
  padding: 100px 0px 100px 0px; }
  .box-icon-1-tlo h2 {
    color: #000;
    text-align: center;
    font-size: 40px;
    padding: 0;
    margin: 45px 0 60px 0px;
    font-weight: 800;
    z-index: 2;
    position: relative; }
    @media only screen and (max-width: 767.98px) {
      .box-icon-1-tlo h2 {
        font-size: 26px;
        margin: 0 0px 10px 0px;
        padding: 10px; } }
  .box-icon-1-tlo .row {
    flex-wrap: wrap;
    gap: 2%;
    justify-content: center; }

.box-icon-1 {
  padding: 25px 30px;
  border-radius: 15px;
  position: relative;
  transition: 0.6s ease-in;
  overflow: hidden;
  z-index: 0;
  width: 23.5%;
  background: #fff;
  margin-bottom: 2%;
  border: 1px solid #f3f3f3; }
  .box-icon-1-icon {
    font-size: 40px;
    text-align: center;
    color: #375d82; }
    .box-icon-1-icon img {
      padding: 20px;
      /* border: 2px solid $color-glowny-2; */
      background-color: #d4ba97a6;
      border-radius: 50%;
      width: 95px;
      height: 95px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      transition: 1s; }
      @media only screen and (max-width: 767.98px) {
        .box-icon-1-icon img {
          width: 85px;
          height: 85px; } }
  .box-icon-1-h {
    font-size: 20px;
    text-align: center;
    color: #36373d;
    transition: 1s;
    font-weight: 900; }
    @media only screen and (max-width: 767.98px) {
      .box-icon-1-h {
        font-size: 16px; } }
    .box-icon-1-h a {
      color: inherit;
      text-decoration: none; }
      .box-icon-1-h a:before {
        content: "";
        left: 0;
        bottom: 0;
        position: absolute;
        width: 100%;
        height: 100%; }
  .box-icon-1-tekst {
    display: none; }
    .box-icon-1-tekst p {
      font-size: 16px;
      text-align: center;
      line-height: 23px;
      padding: 0px;
      color: #36373d; }
      @media only screen and (max-width: 767.98px) {
        .box-icon-1-tekst p {
          font-size: 15px;
          line-height: 22px; } }
  .box-icon-1-buttons {
    margin: 20px auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center; }
    .box-icon-1-buttons a {
      background-color: #375d82;
      color: #fff;
      padding: 24px 38px;
      margin-top: 40px;
      display: inline-block;
      text-align: left;
      font-weight: 700;
      text-decoration-color: transparent;
      text-transform: none;
      font-size: 18px;
      font-family: "Mulish", sans-serif;
      border-radius: 20px;
      transition: 0.3s;
      border: 2px solid #fff;
      position: relative; }
      .box-icon-1-buttons a:hover {
        background-color: #000;
        transition: 0.4s; }
    @media only screen and (max-width: 767.98px) {
      .box-icon-1-buttons {
        font-size: 18px; } }
  @media only screen and (max-width: 767.98px) {
    .box-icon-1 {
      padding: 15px 15px 10px 15px;
      border-radius: 15px;
      margin: 5px 0px;
      width: 49%; } }
  .box-icon-1:hover img {
    transition: 1s;
    transform: scale(1.18); }

/*BOX 2*/
.box-icon-2-tlo {
  margin-top: -200px;
  padding-bottom: 50px; }

.box-icon-2 {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 1px 1px 10px #00000024;
  position: relative;
  top: 0;
  cursor: pointer; }
  .box-icon-2-icon {
    font-size: 40px;
    text-align: center; }
    .box-icon-2-icon img {
      padding: 20px;
      width: 95px;
      height: 95px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto; }
  .box-icon-2-h {
    font-size: 22px;
    text-align: center; }
  .box-icon-2-tekst p {
    font-size: 16px;
    text-align: center;
    line-height: 23px;
    padding: 0px; }
    @media only screen and (max-width: 767.98px) {
      .box-icon-2-tekst p {
        font-size: 15px;
        line-height: 22px; } }
  @media only screen and (max-width: 767.98px) {
    .box-icon-2 {
      margin: 15px 0px; } }
  .box-icon-2:hover {
    top: -15px;
    box-shadow: 0 0 40px 0 rgba(2, 6, 15, 0.3); }

.home-realizacje-tlo {
  padding: 60px 0px 100px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.8)), url(img/las1.jpeg) no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media only screen and (max-width: 767.98px) {
    .home-realizacje-tlo {
      padding-top: 25px; } }
  .home-realizacje-tlo h2 {
    text-align: center;
    font-size: 36px;
    padding-bottom: 50px; }
    @media only screen and (max-width: 767.98px) {
      .home-realizacje-tlo h2 {
        font-size: 26px;
        margin: 0;
        padding: 10px 10px 40px 10px; } }

/*Portfolio*/
.portfolio-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .portfolio-items {
      flex-wrap: wrap; } }
  @media only screen and (max-width: 767.98px) {
    .portfolio-items {
      flex-wrap: wrap; } }

.portfolio-item {
  width: 33.3%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.1%; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .portfolio-item {
      width: 49.9%; } }
  @media only screen and (max-width: 767.98px) {
    .portfolio-item {
      width: 100%;
      margin-bottom: 0.3%; } }

.porfolio-image {
  width: 100%;
  overflow: hidden;
  height: 100%; }
  .porfolio-image img {
    max-width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover; }

.portfolio-hover {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #443029e0;
  transition: 0.5s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; }
  .portfolio-hover h3 {
    color: #fff; }

.portfolio-item:hover > .portfolio-hover {
  opacity: 1;
  transition: 0.5s; }

.portfolio-item:hover img {
  transform: scale(1.1);
  filter: blur(2px); }

.portfolio-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 45px; }
  .portfolio-btns a {
    padding: 20px 30px;
    color: #fff;
    background-color: #375d82;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s; }
    .portfolio-btns a:hover {
      background-color: #d4ba97;
      text-decoration: none; }

/*Partnerzy*/
.partnerzy-tlo {
  padding: 30px 0px 40px 0px; }
  .partnerzy-tlo h2 {
    text-align: center;
    font-size: 36px;
    padding-bottom: 40px; }
    @media only screen and (max-width: 767.98px) {
      .partnerzy-tlo h2 {
        font-size: 26px;
        margin: 0;
        padding: 10px 10px 40px 10px; } }
  .partnerzy-tlo .slick-prev:before, .partnerzy-tlo .slick-next:before {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #000; }
  .partnerzy-tlo .slick-prev:before {
    content: "\f053"; }
  .partnerzy-tlo .slick-next:before {
    content: "\f054"; }

.home-customers-carousel {
  width: 100%;
  max-width: 1410px; }
.home-customers-item a {
  display: flex;
  align-items: center;
  justify-content: center; }
.home-customers-item img {
  max-width: 100%;
  height: auto;
  transition: 0.2s;
  filter: grayscale(0.8); }
  .home-customers-item img:hover {
    filter: grayscale(0); }
.home-customers-item h4 {
  display: none; }

.slick-prev {
  left: -10px !important; }

.slick-next {
  right: -10px !important; }

/*PODSTRONY*/
.podstrona-tytul {
  font-family: "Mulish", sans-serif;
  color: #1D2D3D;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  padding: 80px 0px 100px 0px; }
  @media only screen and (max-width: 767.98px) {
    .podstrona-tytul {
      font-size: 24px;
      padding: 60px 0px; } }

.container-podstrona {
  padding-bottom: 100px; }

.slider-podstrona {
  width: 100%;
  overflow: hidden;
  height: 300px;
  max-width: 100%;
  margin: 120px auto 70px auto;
  border-radius: 10px;
  background-image: url(img/mapa_tp.webp) !important;
  background-color: rgba(255, 255, 255, 0.96);
  background-blend-mode: lighten;
  background-size: 60%;
  background-position: center;
  display: flex;
  align-items: center; }
  .slider-podstrona-text h1 {
    color: #000;
    font-size: 52px;
    text-transform: uppercase;
    text-align: center;
    padding: 0px 25px;
    font-weight: 900;
    border-radius: 20px;
    position: relative;
    line-height: 68px;
    margin-left: 25px; }
    .slider-podstrona-text h1 span {
      display: block;
      font-weight: 300;
      text-transform: none;
      font-size: 46px;
      color: #375d82; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .slider-podstrona-text h1 span {
          font-size: 22px; } }
      @media only screen and (max-width: 767.98px) {
        .slider-podstrona-text h1 span {
          font-size: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      .slider-podstrona-text h1 {
        font-size: 30px;
        padding: 0px 5px;
        line-height: 32px;
        margin-left: 10px; } }
    @media only screen and (max-width: 767.98px) {
      .slider-podstrona-text h1 {
        font-size: 24px;
        padding: 0px 5px;
        line-height: 32px;
        margin-left: 10px; } }
  @media only screen and (max-width: 767.98px) {
    .slider-podstrona {
      height: auto;
      aspect-ratio: 3 / 2;
      margin: 60px 0px 10px 0px;
      border-radius: 0px; } }

.slider-single-blog h1 {
  text-transform: none; }

.container-slider-podstrona {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative; }
  @media only screen and (max-width: 767.98px) {
    .container-slider-podstrona h1 {
      font-size: 15px;
      padding: 5px 10px; } }

/*OFERTA*/
.oferta-info .row {
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767.98px) {
    .oferta-info .row {
      margin-bottom: 5px; } }

.oferta-info .col-50pr {
  padding: 4%; }

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .oferta-info .col-13 {
    order: 2; } }
@media only screen and (max-width: 767.98px) {
  .oferta-info .col-13 {
    order: 2; } }

.oferta-info-tekst, .podstrona-text {
  background: #fff;
  padding: 10px 20px 30px 20px;
  position: relative;
  border-radius: 10px; }
  .oferta-info-tekst h2, .podstrona-text h2 {
    font-size: 30px;
    font-weight: 900;
    margin: 30px 0px 35px; }
    @media only screen and (max-width: 767.98px) {
      .oferta-info-tekst h2, .podstrona-text h2 {
        font-size: 22px;
        margin: 15px 0px; } }
  .oferta-info-tekst p, .podstrona-text p {
    padding: 0;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 30px; }
    @media only screen and (max-width: 767.98px) {
      .oferta-info-tekst p, .podstrona-text p {
        font-size: 16px;
        line-height: 22px; } }
  .oferta-info-tekst ul, .podstrona-text ul {
    margin: 0;
    padding-left: 30px; }
    .oferta-info-tekst ul li, .podstrona-text ul li {
      padding: 0px 0px 10px 0px; }
      @media only screen and (max-width: 767.98px) {
        .oferta-info-tekst ul li, .podstrona-text ul li {
          font-size: 16px;
          line-height: 22px;
          padding-bottom: 10px !important; } }
  @media only screen and (max-width: 767.98px) {
    .oferta-info-tekst, .podstrona-text {
      padding: 10px 0px 25px 0px;
      border-radius: 0px 0px 10px 10px; } }

.oferta-info-img img {
  border-radius: 10px;
  margin-left: -170px;
  width: 860px;
  height: auto; }
  @media only screen and (min-width: 1200px) and (max-width: 1487px) {
    .oferta-info-img img {
      border-radius: 10px;
      margin-left: -150px;
      width: 720px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .oferta-info-img img {
      border-radius: 10px;
      margin-left: -180px;
      width: 640px; } }
  @media only screen and (max-width: 767.98px) {
    .oferta-info-img img {
      margin-left: 0;
      width: 100%;
      margin-bottom: -80px; } }

.oferta-info-menu ul {
  background-color: #375d82;
  margin: 0;
  padding: 30px 25px;
  border-radius: 10px; }
  .oferta-info-menu ul li {
    list-style: none;
    padding: 12px 20px;
    border-radius: 10px;
    line-height: normal;
    transition: 0.2s; }
    .oferta-info-menu ul li a {
      color: #fff;
      text-decoration-color: transparent;
      font-family: "Mulish", sans-serif; }
    .oferta-info-menu ul li:hover {
      background-color: #375d82;
      transition: 0.2s; }
  .oferta-info-menu ul li.aktywna {
    background-color: #375d82; }

/*REALIZACJE*/
.slider-realizacje {
  background-position: center center !important; }

/*PROJEKTY*/
.slider-projekty {
  background-image: url(img/slider/projekty.jpg); }

.projekty-info-tekst {
  margin-top: -35px;
  margin-bottom: 50px; }

.projekty-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .projekty-items {
      flex-wrap: wrap; } }
  @media only screen and (max-width: 767.98px) {
    .projekty-items {
      flex-wrap: wrap; } }

.projekty-item {
  width: 32%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 2%; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .projekty-item {
      width: 49%; } }
  @media only screen and (max-width: 767.98px) {
    .projekty-item {
      width: 100%; } }

.projekty-image {
  width: 100%;
  overflow: hidden;
  height: 100%; }
  .projekty-image img {
    max-width: 100%;
    height: 100%;
    transition: 0.3s;
    object-fit: cover; }

.projekty-hover {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: 0.5s;
  opacity: 1;
  display: flex;
  align-items: end;
  justify-content: center; }
  .projekty-hover .projekty-title {
    background-color: #462d1bcc;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .projekty-hover h3 {
    color: #fff;
    margin: 15px auto; }

.projekty-item:hover img {
  transform: scale(1.1); }

.projekty-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 45px; }
  .projekty-btns a {
    padding: 20px 30px;
    color: #fff;
    background-color: #375d82;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s; }
    .projekty-btns a:hover {
      background-color: #d4ba97; }

/*BLOG*/
.blog-info {
  padding: 80px 0px 100px 0px; }
  .blog-info h2 {
    color: #000;
    text-align: center;
    font-size: 40px;
    padding: 0;
    margin: 45px 0 60px 0px;
    font-weight: 800;
    z-index: 2;
    position: relative; }
    @media only screen and (max-width: 767.98px) {
      .blog-info h2 {
        font-size: 26px;
        margin: 0 0 20px 0;
        padding: 10px; } }

.blog-items {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2%; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .blog-items {
      flex-wrap: wrap; } }
  @media only screen and (max-width: 767.98px) {
    .blog-items {
      flex-wrap: wrap; } }

.blog-item {
  width: 32%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 2%;
  background-color: #fff;
  border-radius: 10px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .blog-item {
      width: 49%; } }
  @media only screen and (max-width: 767.98px) {
    .blog-item {
      width: 100%; } }

.blog-image {
  width: 100%;
  overflow: hidden;
  height: auto;
  aspect-ratio: 3 / 2; }
  .blog-image img {
    max-width: 100%;
    height: auto;
    transition: 0.3s;
    object-fit: cover;
    aspect-ratio: 3 / 2; }

.blog-item:hover img {
  transform: scale(1.1); }

.blog-text-wrap {
  padding: 10px 0px 25px 0px; }

.blog-title {
  padding: 10px 0px 15px 0px;
  font-weight: 900;
  margin: 0;
  font-size: 24px; }
  .blog-title a {
    color: #36373d;
    width: 100%;
    text-decoration: none; }
    .blog-title a:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }

.blog-desc {
  color: #616161;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px; }

.blog-buttons {
  margin: 20px auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center; }
  .blog-buttons a {
    background-color: #375d82;
    color: #fff;
    padding: 24px 38px;
    margin-top: 40px;
    display: inline-block;
    text-align: left;
    font-weight: 700;
    text-decoration-color: transparent;
    text-transform: none;
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    border-radius: 20px;
    transition: 0.3s;
    border: 2px solid #fff;
    position: relative; }
    .blog-buttons a:hover {
      background-color: #000;
      transition: 0.4s; }
  @media only screen and (max-width: 767.98px) {
    .blog-buttons {
      font-size: 18px; } }

/*SINGLE BLOG*/
.single-blog-row {
  flex-wrap: wrap; }
.single-blog-miniatura {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 20px auto; }
  .single-blog-miniatura img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /* aspect-ratio: 3 / 2; */
    object-fit: contain; }
.single-blog-text {
  line-height: 30px;
  max-width: 1150px;
  margin: auto; }

.baner-cta {
  max-width: 1200px;
  margin: 10px auto;
  padding: 40px;
  background-color: #f2f2f2;
  border-radius: 20px;
  border: 1px solid #f2f2f2;
  text-align: center; }
  .baner-cta h3 {
    padding: 0px 0px 20px 0px;
    margin: 0;
    font-size: 42px;
    font-weight: 900;
    color: #36373d; }
    @media only screen and (max-width: 767.98px) {
      .baner-cta h3 {
        font-size: 32px; } }
  .baner-cta p {
    color: #36373d;
    font-size: 20px;
    font-weight: 400; }
  @media only screen and (max-width: 767.98px) {
    .baner-cta {
      padding: 25px 20px; } }

/*KONTAKT*/
.slider-kontakt {
  background-image: url(img/kontakt.jpg); }

.kontakt {
  margin-top: 120px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .kontakt {
      margin-top: 30px; } }
  @media only screen and (max-width: 767.98px) {
    .kontakt {
      margin-top: 20px; } }

.kontakt-details-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline; }

.kontakt-details-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 35px; }
  .kontakt-details-item-ico {
    font-size: 28px;
    color: #375d82;
    padding: 10px;
    width: 65px;
    height: 65px;
    border: 1px solid #375d82;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; }
    @media only screen and (max-width: 767.98px) {
      .kontakt-details-item-ico {
        font-size: 22px;
        width: 52px;
        height: 52px; } }
  .kontakt-details-item-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px; }
    @media only screen and (max-width: 767.98px) {
      .kontakt-details-item-info {
        padding-left: 18px; } }
    .kontakt-details-item-info p {
      padding: 0;
      font-size: 20px;
      line-height: 30px; }
      @media only screen and (max-width: 767.98px) {
        .kontakt-details-item-info p {
          padding: 0;
          font-size: 16px;
          line-height: 26px; } }
    .kontakt-details-item-info a {
      color: #36373d;
      text-decoration: none; }
      .kontakt-details-item-info a:hover {
        opacity: 0.8; }

.kontakt-items {
  box-shadow: 0 0 40px 0 #2f020226;
  padding: 10px 15px;
  border-radius: 10px; }
  .kontakt-items a {
    color: #36373d;
    text-decoration: none; }
    .kontakt-items a:hover {
      opacity: 0.8; }

.kontakt-form {
  background: #375d82;
  padding: 30px 40px 10px 40px;
  border-radius: 10px;
  top: -20px;
  position: relative;
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .kontakt-form {
      top: 0; } }
  @media only screen and (max-width: 767.98px) {
    .kontakt-form {
      top: 0; } }
  .kontakt-form .wpcf7-list-item span {
    color: #fff; }
  .kontakt-form .wpcf7-submit {
    background-color: #fff;
    color: #375d82;
    padding: 22px 30px;
    margin-top: 20px;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    text-decoration-color: transparent;
    text-transform: uppercase;
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    border-radius: 20px;
    transition: 0.2s;
    border: 2px solid #fff;
    position: relative; }
    .kontakt-form .wpcf7-submit:hover {
      transition: 0.2s;
      background-color: #000;
      color: #fff;
      border: 2px solid #375d82; }

/*------ footer ------*/
footer {
  background: linear-gradient(160deg, rgba(55, 93, 130, 0.96), rgba(55, 93, 130, 0.98)), url(img/stopka_tp.webp) no-repeat;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.footer-up {
  padding: 60px 0px 30px 0px; }
  .footer-up h3 {
    color: #fff;
    padding-bottom: 10px;
    font-size: 20px; }
  .footer-up-text {
    color: #fff;
    line-height: 26px; }
    .footer-up-text p {
      color: #fff;
      line-height: 26px;
      padding: 0; }
    .footer-up-text a {
      color: #fff;
      text-decoration: none; }
      .footer-up-text a:hover {
        opacity: 0.7; }
    .footer-up-text ul {
      list-style: none;
      padding: 0px;
      margin: 0px; }
      .footer-up-text ul li a {
        position: relative;
        font-size: 16px; }
        .footer-up-text ul li a:hover {
          opacity: 0.7; }
        .footer-up-text ul li a:before {
          font-family: "Font Awesome 5 Free";
          content: "\f054";
          font-weight: 700;
          font-size: 10px;
          position: relative;
          top: -2px;
          padding-right: 5px; }
    .footer-up-text ul.social-media-link {
      display: flex; }
      .footer-up-text ul.social-media-link li {
        margin-right: 12px; }
        .footer-up-text ul.social-media-link li a::before {
          display: none; }
      .footer-up-text ul.social-media-link i {
        font-size: 25px; }
    .footer-up-text a {
      color: #fff;
      text-decoration: none; }

.social-media-link-mobile {
  display: none; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .social-media-link-mobile {
      margin: 0;
      display: flex !important;
      align-items: center;
      justify-content: center; } }
  @media only screen and (max-width: 767.98px) {
    .social-media-link-mobile {
      margin: 0;
      display: flex !important;
      align-items: center;
      justify-content: center; } }

.footer-down {
  padding: 15px;
  text-align: center;
  color: #fff; }
  .footer-down p {
    color: #fff;
    padding: 0px; }
  .footer-down a {
    color: #ccc; }

/*PODSTRONA SINGLE PAGE*/
.page-single-article-wrapper {
  padding: 60px 0px; }
  .page-single-article-wrapper a {
    color: #375d82; }

/*WP*/
.wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  margin: 5px 0px; }
.wpcf7-list-item input {
  width: 16px;
  margin: 5px 0px !important; }
.wpcf7-list-item span {
  font-size: 14px;
  color: #595959;
  padding-left: 10px;
  line-height: 20px; }

.wpcf7-submit {
  width: 100%;
  padding: 16px;
  border: none;
  background: #375d82;
  border-radius: 6px;
  color: #fff;
  transition: 0.3s; }

.wpcf7 form .wpcf7-response-output {
  display: block !important;
  border: none; }

/*COOKIE*/
.change-settings-button {
  display: inline;
  width: auto; }

.moove-gdpr-button-holder > button {
  width: auto; }

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