@charset "UTF-8";
@font-face {
  font-family: "SourceSansPro";
  src: url("fonts/SourceSansPro-Regular.ttf");
}
@font-face {
  font-family: "SourceSansPro";
  font-style: italic;
  src: url("fonts/SourceSansPro-Italic.ttf");
}
@font-face {
  font-family: "SourceSansPro";
  font-weight: bold;
  src: url("fonts/SourceSansPro-Bold.ttf");
}
@font-face {
  font-family: "SourceSansPro";
  font-weight: bold;
  font-style: italic;
  src: url("fonts/SourceSansPro-BoldItalic.ttf");
}
@font-face {
  font-family: "SourceSansPro";
  font-weight: 900;
  src: url("fonts/SourceSansPro-Black.ttf");
}
@font-face {
  font-family: "SourceSansPro";
  font-weight: 500;
  src: url("fonts/SourceSansPro-SemiBold.ttf");
}
/* ====================================================== PRZYCISKI ============================================ */
.controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.controls .button:last-child {
  margin-right: 0;
}

.button {
  padding: 0 30px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  min-width: 0;
  color: #000;
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0;
  background: #ffe51d;
  transition: all 300ms;
  text-transform: uppercase;
  font-weight: bold;
}

.button.alt-button {
  position: relative;
  background: none;
  padding: 0 40px 0 0;
  color: #000;
  font-weight: 900;
  height: 30px;
  font-size: 0.85rem;
}

.button.alt-button:after {
  content: url("graphics/btn-plus.png");
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 30px;
  background: #ffe51d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms;
}

.button.alt-button img {
  margin-left: 10px;
}

.base-color .button, .base-color .button:hover {
  background: #fff;
  color: #000;
}

/* --- hovery --- */
:hover.button.alt-button {
  background: none;
}

:hover.button.alt-button:after {
  transform: rotate(90deg);
}

:hover.button, .buttons a:hover {
  text-decoration: none;
  background: #ffe837;
}

/* === COOKIE INFO BUTTON === */
.call-btn {
  padding: 15px 30px;
  height: 25px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  min-width: 0;
  color: #000 !important;
  position: relative;
  font-size: 0.85rem;
  letter-spacing: 0;
  background: #ffe51d;
  transition: all 300ms;
  text-transform: uppercase;
  font-weight: bold;
}

/* ================= FORMULARZE ================ */
label {
  color: lighten #666, 10%;
  font-size: 18px;
  text-transform: none;
  margin-top: 10px;
}

span + label {
  margin-top: 0;
}

input, select, textarea, .input-placeholder, .input-combo {
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  height: 40px;
}

.submit-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.submit-area .button {
  margin: 0;
}

/* ================= formularze nowe ================ */
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #333;
  font-style: none;
  opacity: 0.4;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #333;
  font-style: none;
  opacity: 0.4;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #333;
  font-style: none;
  opacity: 0.4;
}

:-moz-placeholder { /* Firefox 18- */
  color: #333;
  font-style: none;
  opacity: 0.4;
}

.select-placeholder {
  color: #999999;
}

.select select {
  margin: 0 !important;
}

/* ----- select ----- */
.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 40px;
  margin: 10px 0;
  width: 100%;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 0px 40px 0 10px;
  font-weight: normal;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.styledSelect:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 18px;
  right: 10px;
}

.styledSelect:active, .styledSelect.active {
  background-color: #efefef;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid #ddd;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 0 10px;
}

/* -- SELECT HOVER -- */
.options li:hover {
  background-color: #012563;
  color: #fff;
}

.single ul, .single .submit-area, .single .button {
  margin: 0;
}

.single {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.single > * {
  margin-right: 10px !important;
}
.single > :last-child {
  margin-right: 0 !important;
}

.single ul {
  flex: 1;
}

.single ul input {
  margin: 0;
  height: 50px;
  box-sizing: border-box;
  display: block;
}

/* --- input type=radio, input type=checkbox --- */
input[type=checkbox] + label, input[type=radio] + label {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 10px 0;
}

input[type=checkbox] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  max-width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 10px;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=checkbox]:checked + label::before {
  content: "✓";
  background: #012563;
}

input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio] + label::before {
  content: " ";
  display: inline-block;
  vertical-align: 0.2em;
  width: 22px;
  height: 22px;
  max-width: 22px;
  min-width: 22px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=radio]:checked + label::before {
  content: "✓";
  background: #012563;
}

input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.checklist.rodo label {
  font-size: 0.7rem;
}

/* === DISABLED === */
input[type=checkbox][disabled] + label {
  opacity: 0.8;
}

input[type=checkbox][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[type=radio][disabled] + label {
  opacity: 0.8;
}

input[type=radio][disabled] + label:before {
  background-color: #f0f0f0;
  opacity: 0.8;
}

input[disabled=disabled] {
  background-color: #f0f0f0;
}

/* === wending forms === */
.switch-wrapper {
  overflow: hidden;
  position: relative;
  height: 24px;
  width: 94px;
  box-sizing: border-box;
}

.yes-no-switch {
  margin: 10px 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.yes-no-switch > * {
  margin-right: 20px !important;
}
.yes-no-switch > :last-child {
  margin-right: 0 !important;
}

.yes-no-switch .yes, .yes-no-switch .no {
  position: absolute;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  line-height: 1;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #d5d5d5;
  cursor: pointer;
  transition: all 300ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.yes-no-switch .yes {
  left: 0;
  right: 50%;
  border-radius: 5px 0 0 5px;
  border-right: none;
}

.yes-no-switch .no {
  right: 0;
  left: 50%;
  border-radius: 0 5px 5px 0;
  border-left: none;
}

.yes-no-switch input + span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #d5d5d5;
}

.yes-no-switch input[value="1"] + span:after, .yes-no-switch input[value="0"] + span:after {
  display: none;
}

.yes-no-switch input[value="1"] + span span.yes, .yes-no-switch input[value="0"] + span span.no {
  background: #fff;
  border: 1px solid #fff;
  color: #fff;
}

/* =============== zestawy pól ============== */
.combo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.combo > * {
  margin-right: 20px !important;
}
.combo > :last-child {
  margin-right: 0 !important;
}

.combo > * {
  flex: 1;
}

.combo > input.post-code {
  flex: 0.5;
}

/* ================ Klasy specjalne ============= */
.question-label {
  display: block;
  margin-top: 20px;
}

span + .question-label {
  margin-top: 0;
}

iframe {
  display: block;
  margin: 0;
}

table {
  width: 100%;
  max-width: 800px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

table tr td, table tr th {
  padding: 10px;
  text-align: center;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

table tr th {
  background: #012563;
  color: #fff;
}

table tr:nth-child(odd) {
  background: #eee;
}

/* ====== ANIMACJE ======= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes swim {
  from {
    left: 15px;
  }
  50% {
    left: -15px;
  }
  to {
    left: 15px;
  }
}
/* ================ BASE =============== */
/* = Czcionki = */
html, body, input, textarea {
  font-family: SourceSansPro, tahoma, arial, sans-serif;
  color: #666;
  line-height: 1.6;
  font-size: 18px;
}

html, body {
  color: #666;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: SourceSansPro, tahoma, arial, sans-serif;
  margin: 3.4rem 0 1.9rem 0;
  line-height: 1.2;
  color: #000;
  font-weight: 900;
}

h1 {
  font-size: 3.4rem;
  margin: 3.4rem 0 3rem 0;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

.likeh3 {
  font-size: 1.2rem;
  font-family: SourceSansPro, tahoma, arial, sans-serif;
  margin: 3.4rem 0 1.9rem 0;
  margin-top: 3.4rem;
  margin-bottom: 1.9rem;
  line-height: 1.2;
  color: #000;
  font-weight: 900;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.9rem;
}

h6 {
  font-size: 0.9rem;
}

h4, h5, h6 {
  margin: 1.6rem 0 1rem 0;
}

h1 + h3, .start h2 + h3 {
  text-align: left;
  display: inline-block;
  position: relative;
  margin: 0;
  top: -40px;
  color: #999;
  font-weight: 500;
}

.start h2 + h3 {
  top: 0;
}

h1:first-child, h2:first-child, h3:first-child {
  margin-top: 0;
}

h1, h2 {
  position: relative;
}

.start h1, .start h2 {
  position: relative;
  padding: 0;
  font-size: 3.9rem;
  text-transform: none;
}

.photo-section h1, .photo-section h2 {
  position: static;
}

.mods-wrapper h2 {
  padding: 0;
  margin-bottom: 1rem;
}

.mods-wrapper h3, .mods-wrapper h2 + h3 {
  position: static;
  top: auto;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  color: #fff;
  margin-bottom: 2rem;
}

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

ul {
  list-style-image: url("graphics/pointer.png");
}

ul li {
  margin-left: 1.5em;
}

/* =============================== Menu Glowne ============================== */
nav {
  margin-right: 12px; /* wyrównuje margin ostatniego elementu */
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: -15px;
  transition: all 300ms;
}

nav ul {
  height: auto;
}

nav ul li {
  margin: 0;
  transition: all 300ms;
}

nav ul li a {
  padding: 23px 20px 42px 20px;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  transition: all 300ms;
  display: block;
  position: relative;
}

/* --------------- hover ------------------ */
nav ul a:hover, nav ul li:hover, nav ul a.urhere {
  color: #000;
  background: #ffe51d;
}

/* --------------- active ----------------- */
/* --------------- Submenu ---------------- */
nav > ul > li:hover > a {
  z-index: 10;
}

nav ul li ul {
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
  background: #fff;
  margin-top: -10px;
  left: -20px;
}

nav ul li ul li a {
  position: relative;
  padding: 0.8em 1em !important;
}

/* ==============================  ELEMENTY UKŁADOWE ===================================== */
#CANVAS {
  overflow: hidden;
}

.container, .side-container {
  max-width: 1520px;
  padding: 0 65px;
  box-sizing: border-box;
}

#TOP .container {
  padding: 0;
}

.page-section, .page-order-section {
  padding: 130px 0 130px 0;
  overflow: hidden;
}

.page-section.simple-page {
  padding-top: 0;
}

.page-section.image {
  background-image: url("graphics/bg-image.jpg");
  background-color: #f0f0f0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}
.page-section.image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 10%, transparent 70%);
  opacity: 1;
}
.page-section.image > * {
  position: relative;
  z-index: 2;
}

.page-section.image h2, .page-section.image p, .page-section.image .button.alt-button {
  color: #fff;
}

.page-section.image h3 {
  color: #ffe51d !important;
}

.start .page-section {
  padding: 130px 0 130px 0;
  position: relative;
}

.PAGE {
  overflow: hidden;
  background: #f3f3f3;
}

.PAGE h1:first-child {
  margin-top: 1em;
  padding-right: 430px;
}

.contentblocks .page-section:first-of-type, .mb-header + .page-section, .page-order-section {
  padding-top: 0;
}

.contentblocks .page-section:first-of-type {
  background: #f3f3f3 !important;
}

.video-wrapper {
  margin-bottom: 30px;
}

.base-color {
  background: #fff;
}

.base-color * {
  color: #fff;
}

.base-color input {
  background: none;
  border: 1px solid #fff;
}

.base-color ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
  font-style: none;
  opacity: 0.4;
}
.base-color ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  font-style: none;
  opacity: 0.4;
}
.base-color :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
  font-style: none;
  opacity: 0.4;
}
.base-color :-moz-placeholder { /* Firefox 18- */
  color: #fff;
  font-style: none;
  opacity: 0.4;
}

.alt-color {
  background: #012563;
}

#TOP {
  padding: 0 50px;
}

#TOP {
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

#TOP-EXTENDED, #TOP-EXTENDED .container {
  height: 75px;
}

#TOP-EXTENDED, #TOP-MINI {
  background: none;
}

#TOP-EXTENDED .container, #TOP-MINI .container {
  background: #fff;
  max-width: 1720px;
}

#TOP-MINI {
  height: 75px;
}

.start #TOP-MINI {
  border-bottom: 0;
}

#TOP-EXTENDED .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#TOP-EXTENDED .container > * {
  margin-right: 20px !important;
}
#TOP-EXTENDED .container > :last-child {
  margin-right: 0 !important;
}

#TOP-MINI .container {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* ---  ELEMENTY TOP --- */
#logo {
  position: absolute;
  left: 0;
  width: 270px;
  height: 150px;
  box-sizing: border-box;
  background: #012563;
}

#logo img {
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 45px;
  box-sizing: border-box;
}

.contact-data-header, .contact-data-header > div {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-data-header .add_descr p {
  margin: 0;
}

.contact-data-header > div > * {
  padding: 0 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
}

.contact-data-header .value {
  font-size: 0.9rem;
  font-weight: bold;
  padding-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-data-header .value .button {
  margin: 0;
  height: 30px;
  padding-right: 30px;
}

.contact-data-header .value .button:after {
  height: 20px;
  width: 20px;
}

.contact-data-header .phone-number {
  width: 4.5em !important;
}

.contact-data-header .phone-number.revealed {
  width: 7.5em !important;
}

.window-style .contact_data {
  position: relative;
}

.contact_data .button.show-region {
  display: none;
}

.window-style .contact_data .button.show-region {
  display: inline-flex;
  height: 45px;
  margin: 0;
  margin-right: 15px;
}

.window-style .contact-data-header {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  width: 150%;
  max-width: 550px;
  z-index: 200;
  padding: 20px;
  flex-wrap: wrap;
  display: none;
  box-shadow: 0 0 5px #ddd;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.window-style .contact-data-header.show-me {
  display: flex;
}

.window-style .contact-data-header > div {
  margin-bottom: 5px;
}

#TOP.sticked #TOP-MINI {
  position: fixed;
  top: -200px;
  right: 0;
  left: 0;
  opacity: 0;
  background: #fff;
  transition: all 500ms;
  border-bottom: 4px solid #012563;
}

#TOP.sticked #TOP-MINI, #TOP.sticked #TOP-MINI .container, #TOP.sticked #TOP-MINI .header-mods, #TOP.sticked #TOP-MINI nav {
  height: 40px;
}

#TOP.sticked nav {
  margin-bottom: 0;
}

#TOP.sticked nav ul li a {
  padding: 20px 20px 22px 20px;
}

#TOP.sticked #logo {
  height: 50px;
  width: 100px;
  margin-bottom: -10px;
}

#TOP.sticked #logo img {
  padding: 5px;
}

#TOP.sticked.show #TOP-MINI {
  top: 0;
  opacity: 1;
}

#BOTTOM, #BOTTOM2 {
  padding: 0;
  font-size: 0.9rem;
}

#BOTTOM2 {
  border-top: 1px solid #f3f3f3;
}

#BOTTOM h3, #BOTTOM2 h3, #BOTTOM2 .likeh3 {
  font-size: 1rem;
  margin-bottom: 1em;
  margin-top: 0;
}

#BOTTOM .container, #BOTTOM2 .container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #ddd;
}

#BOTTOM .container {
  border-top: 1px solid #ddd;
}

.start #BOTTOM .container {
  border-top: 0;
}

#BOTTOM2 .social {
  margin-top: 0;
}

#FOOT {
  height: 100px;
  color: #666 !important;
}

#FOOT .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.8rem;
}
#FOOT .container > * {
  margin-right: 20px !important;
}
#FOOT .container > :last-child {
  margin-right: 0 !important;
}

#FOOT .container .links {
  flex: 1;
}

/* === zestawy modułów === */
.mods-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.mods-wrapper > * {
  margin-right: 40px !important;
}
.mods-wrapper > :last-child {
  margin-right: 0 !important;
}

.mods-wrapper > * {
  flex: 1;
}

.mods-wrapper .contact_data {
  align-self: flex-end;
}

.header-mods {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 30px;
}
.header-mods > * {
  margin-right: 10px !important;
}
.header-mods > :last-child {
  margin-right: 0 !important;
}

.links a {
  color: #666;
  text-transform: uppercase;
}

.header-mods .social_links > h3, .header-mods .module.social > h3 {
  display: none;
}

/* === STRONA GŁÓWNA SEKCJE === */
.contact-section-icon {
  min-height: 50px;
}

.contact-section-icon, .contact-section-icon > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-section-icon > *, .contact-section-icon > div > * {
  margin-right: 20px !important;
}
.contact-section-icon > :last-child, .contact-section-icon > div > :last-child {
  margin-right: 0 !important;
}

.contact-section-icon > div {
  flex: 1;
}

.contact-section-icon span, .contact-section-icon strong {
  display: block;
}

.contact-section-icon .content {
  margin-top: 3px;
  font-size: 1.2em;
  line-height: 1.2;
}

.contact-section-icon * {
  color: #666;
}

.base-color .contact-section-icon * {
  color: #fff;
}

.mods-wrapper .contact-section-icon {
  align-items: flex-end;
}

.banner-section {
  position: relative;
  padding-bottom: 49%;
  overflow: hidden;
}

.banner-section .container {
  max-width: 1720px;
}

.banner-section .banner-img {
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-section .caption {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  padding: 0 50px;
}

.banner-section .caption .container {
  padding: 0;
}

.banner-section .caption h2, .banner-section .caption h1 {
  text-shadow: 0 0 8px #17657c;
}

.banner-section .caption h2, .banner-section .caption h1, .banner-section .caption p {
  color: #fff;
  margin: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.banner-section .caption h2 {
  font-size: 3.5rem;
}

.banner-section .caption p {
  font-size: 0.85rem;
}

.banner-section .caption .container > p {
  text-shadow: 0 0 8px #fff;
  font-size: 1.5rem;
  color: #012563;
  max-width: 900px;
}

.add-banner-mod {
  display: inline-flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 35px;
}

.add-banner-mod > * {
  margin: 0 !important;
}

.add-banner-mod > #add-banner-mod-show {
  background: #012563;
  color: #fff;
  font-size: 0.85rem;
}

.add-banner-mod > #add-banner-mod-show {
  display: inline-flex;
  align-items: stretch;
  justify-content: flex-start;
}

.add-banner-mod > #add-banner-mod-hidden span,
.add-banner-mod > #add-banner-mod-show .add-text,
.add-banner-mod > #add-banner-mod-show .key,
.add-banner-mod > #add-banner-mod-show .value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
}

.add-banner-mod > #add-banner-mod-show .value {
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 0;
}

#add-banner-mod-show.hidden {
  display: none;
}

#add-banner-mod-show .value .button {
  margin: 0;
  align-self: center;
  padding-right: 30px;
}

#add-banner-mod-show .phone-number.revealed {
  width: 7em;
}

.phones-bar {
  padding: 20px 0;
  background: #012563;
}

.phones-bar * {
  color: #fff;
}

.phones-bar .header-mods {
  justify-content: flex-start;
}

.phones-bar .contact-data-header {
  flex-wrap: wrap;
}

.phones-bar .contact-data-header > div {
  padding: 10px 0;
}

.phones-bar .contact-data-header > div > * {
  font-size: 1rem;
}

.phones-bar .contact_data .phone-number {
  margin-bottom: 0px;
}

.banner-section .paralax-lay-1, .banner-section .paralax-lay-2, .banner-section .paralax-lay-3 {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: 110%;
  background-color: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-section .paralax-lay-1 {
  background-image: url("graphics/baner-bg.jpg");
}

.banner-section .paralax-lay-2 {
  background-image: url("graphics/baner-woda.png");
  width: 120%;
  margin-left: -20px;
  animation-name: swim;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.banner-section .paralax-lay-3 {
  background-image: url("graphics/baner-smieci.png");
}

/* ======================= PODSTRONY ========================= */
.breadcrumps {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.8rem;
  margin: 0;
  color: #fff;
  height: 50px;
  text-transform: uppercase;
  float: right;
  background: #012563;
  padding-left: 50px;
  padding-right: 50px;
}

.breadcrumps a {
  color: #fff;
}

.breadcrumps a:hover {
  color: #ffe51e;
}

.breadcrumps img {
  height: 10px;
  margin: 0 5px;
}

.PAGE > .container.bc-container {
  overflow: hidden;
  max-width: 1720px;
  padding: 0;
}

.PAGE > .container.side-container {
  position: relative;
  box-sizing: border-box;
  padding: 0 430px 0 0;
}

.PAGE > .container.side-container .side-panel {
  position: absolute;
  top: 120px;
  right: 0;
  width: 400px;
  background: none;
  z-index: 1;
}

.PAGE > .container.side-container .side-panel > div {
  padding: 0;
}

.submenu-mod h3 {
  background: #fff;
  padding: 25px 20px;
  position: relative;
  margin: 0;
}

.submenu-mod h3:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
}

.submenu-mod ul {
  margin: 0;
  margin-top: 15px;
}

.submenu-mod ul li {
  list-style: none;
  margin: 0;
}

.submenu-mod ul li a {
  padding: 15px 40px 15px 40px;
  border-bottom: 1px solid #ddd;
  margin: 0;
  line-height: 1.2;
  font-size: 0.9rem;
  position: relative;
}

.submenu-mod ul li a:after {
  content: url("graphics/pointer.png");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.submenu-mod ul li a:hover {
  background: #ffe51d;
  color: #000;
}

.submenu-mod ul li a:hover:after {
  filter: grayscale(100%);
}

.contentblocks .container {
  box-sizing: border-box;
  padding-right: 430px;
}

#HEADER-IMAGE {
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url("graphics/header-image.jpg");
  background-color: #333;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#HEADER-IMAGE .caption {
  padding-bottom: 40px;
}

#HEADER-NO-IMAGE {
  height: 151px;
  background: #f3f3f3;
}

.text-wrapper {
  overflow: hidden;
  max-width: 100%;
}

.lead {
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lead .lead-img {
  float: left;
  max-width: 20%;
}

.lead .lead-img.img-placeholder {
  width: 200px;
  height: 200px;
}

.lead-content {
  float: left;
  max-width: 85%;
  margin-left: -5%;
  background: #fafafa;
  box-sizing: border-box;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.lead .lead-img.img-placeholder + .lead-content {
  float: right;
}

#NEWS-PAGE-CONTENT.page-section {
  padding-top: 0;
}

/* ======================= STRONA PRODUKTU ========================= */
.product-lead-content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.product-lead-content > * {
  margin-right: 30px !important;
}
.product-lead-content > :last-child {
  margin-right: 0 !important;
}

.product-lead-content > * {
  flex: 1;
}

.product-lead-content .image img {
  width: 100%;
  display: block;
}

.product-lead-content .lead {
  position: relative;
  padding-bottom: 3rem;
}

.product-lead {
  padding-bottom: 40px;
  font-size: 1.2rem;
  color: #333;
}

.product-lead p {
  margin: 0;
}

.price-section {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}

.price-section .button {
  margin: 0;
}

.product-price {
  text-align: right;
  padding-bottom: 1rem;
}

.product-price .price {
  color: #012563;
  font-size: 2rem;
}

.lead-content h1 {
  font-size: 1.9rem;
  color: #666;
}

.page-content {
  padding-top: 50px;
}

/* ======================= STRONA ZAMÓWIENIA ========================= */
.order-form-page {
  border-left: 1px solid #ddd;
  padding-left: 30px;
}

.nice-cart-quantity-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.nice-cart-quantity-controls > * {
  margin-right: 5px !important;
}
.nice-cart-quantity-controls > :last-child {
  margin-right: 0 !important;
}

.nice-cart-quantity-controls > input {
  max-width: 40px;
  height: 25px;
  margin: 0;
  border: 1px solid #012563;
  font-size: 0.8rem;
  padding: 0 3px;
  text-align: center;
}

.nice-cart-quantity-controls > .button {
  margin: 0;
  height: 25px;
  width: 25px;
  padding: 0;
  border-radius: 5px;
}

.nice-cart-quantity-controls > .button:hover {
  background: #023895;
}

.nice-cart-page .nice-cart-item .item-thb {
  width: 100px;
  height: 100px;
  max-width: 100px;
}

/* ======================= STRONA KONTAKTU ========================= */
.bigger {
  font-size: 1.4rem;
}

/* === kontakt moduły === */
.contact-col {
  padding-bottom: 60px;
}

.phone {
  white-space: nowrap;
}

.contact_data span {
  display: block;
}

.contact_data h3 {
  margin-bottom: 1em;
}

.contact_data span.address {
  margin-bottom: 1em;
}

.contact_data .phone-number {
  display: flex;
  width: 6em;
  margin-bottom: 4px;
}

.contact_data .phone-number.revealed {
  width: 7.5em !important;
}

.contact_data .phone-number .phone-txt {
  display: block;
}

.contact_data .phone-number .reveal-btn {
  width: 20px;
  height: 20px;
  margin: 0;
  padding-right: 25px;
  max-width: 0px;
}

.contact_data .phone-number .reveal-btn:after {
  width: 20px;
}

.contact-section-footer {
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-section-footer > div {
  display: inline-block;
  float: left;
  padding-right: 30px;
}

.contact-section-footer .company_name {
  color: #000;
  font-size: 1.1rem;
}

.simple-page {
  overflow: visible;
}

#BOTTOM .img-module, .simple-page .img-module {
  margin-top: 0;
}

/* === Photo section === */
.photo-section {
  padding-bottom: 45%;
}

.ps-image {
  z-index: 0;
  background-color: #012563;
}
.ps-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 1;
}
.ps-image > * {
  position: relative;
  z-index: 2;
}

.ps-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.ps-content .container {
  height: 100%;
  position: relative;
  max-width: 1720px;
}

.ps-content .caption {
  text-align: left;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
}

.ps-content .caption h1, .ps-content .caption h2 {
  background: none;
  color: #fff;
  padding: 0;
  font-size: 3.5rem;
  margin: 0;
}

#HEADER-IMAGE .caption h1, #HEADER-IMAGE .caption h2 {
  font-size: 2.1rem;
}

.text-1 {
  color: #fff;
  font-size: 1rem;
  text-align: left;
}

.text-1 p {
  margin: 0;
}

/* === CARD === */
.card {
  margin-bottom: 60px;
  padding-bottom: 50px;
  min-height: 0;
  position: relative;
  display: block;
  vertical-align: top;
}

.card .content {
  padding-top: 20px;
}

.card .content h3 {
  margin-bottom: 20px;
}

.card .thb .img-placeholder {
  padding-bottom: 53.5%;
}

.card .controls {
  text-align: right;
}

.card .controls .button {
  margin-top: 0;
  margin-bottom: 0;
}

/* === MULTIBLOKI === */
/* -- ogolne -- */
.mb-header, .specjal-header {
  padding-bottom: 60px;
}

.mb-header > *, .specjal-header > * {
  margin: 0;
}

.mb-header h2, .mb-header h3, .specjal-header h2, .specjal-header h3 {
  text-align: left;
  margin-bottom: 30px;
}

.mb-header p, .specjal-header p {
  max-width: 1050px;
}

.mb-footer .button {
  margin: 0;
}

.mb-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mb-footer > * {
  margin-right: 20px !important;
}
.mb-footer > :last-child {
  margin-right: 0 !important;
}

/* -- icon card - icon tile - icon-pointer-- */
.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  overflow: hidden;
  display: block;
}

.icon-tile {
  margin-bottom: 90px;
  padding-bottom: 30px;
  overflow: visible;
  position: relative;
}

.icon-tile .content {
  padding-left: 40px;
  padding-bottom: 30px;
  margin-bottom: 0;
  min-width: 120px;
  overflow: hidden;
  font-size: 0.9rem;
}

.icon-tile .content h3 {
  margin-bottom: 10px;
  font-weight: 500;
}

.icon-pointer .content {
  text-transform: uppercase;
}

/* -- logo-box -- */
div[data-grid=logo-box] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
}

div[data-grid=logo-box] > div {
  padding: 0;
}

.logo-box .thb {
  filter: grayscale(100%);
  opacity: 0.6;
  margin: 20% 10%;
  transition: filter 300ms;
}

.logo-box .thb:hover {
  filter: grayscale(0%);
}

/* -- icon-card-lux -- */
.icon-lux-wrapper {
  position: relative;
  background-color: #012563;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  z-index: 0;
}
.icon-lux-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 1;
}
.icon-lux-wrapper > * {
  position: relative;
  z-index: 2;
}

.icon-lux-wrapper .icon-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.icon-round {
  position: relative;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
}

.icon-round .thb {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-lux-wrapper h3 {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.icon-lux-wrapper .content {
  color: #fff;
}

.icon-lux-wrapper div[data-grid=icon-card] {
  position: relative;
  top: -50px;
}

.icon-card-lux {
  position: relative;
}

.mb-header .text1 {
  text-align: left;
  padding: 40px 0;
  max-width: 1080px;
}

.content_block .mb-header .text1 {
  text-align: left;
  padding-top: 0;
}

.mb-header .text1 p {
  margin: 0;
}

.icon-card-lux .mb-footer {
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  z-index: 1;
}

/* --- icon-list --- */
.icon-list-item {
  padding-left: 30px;
  position: relative;
  min-height: 27px;
  margin-bottom: 20px;
}

.icon-list-item .icon-list-ico {
  position: absolute;
  top: 0;
  left: 0;
  height: 27px;
}

.icon-list-item .content {
  padding-left: 30px;
}

.icon-list-item h4 {
  font-weight: normal;
  margin: 0;
  font-size: 1em;
  color: #666;
}

/* --- social links --- */
.social_links {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.social_links > * {
  margin-right: 20px !important;
}
.social_links > :last-child {
  margin-right: 0 !important;
}

.social-icon { /* Wygląd ikonki portalu społecznościowego */
  display: block;
  width: 30px;
  height: 30px;
  background: #012563;
}

/* --- multilinki --- */
.multilinks li {
  margin-bottom: 10px;
}

.multilinks li, .multilinks li a {
  color: #666;
  font-weight: 500;
  font-size: 0.85rem;
}

.multilinks li a:hover {
  color: #000;
}

/* --------------- Columns ------------------- */
.columns-x2, .columns-x3, .columns-x4, .columns-x5, .columns-x6, .columns-x7, .columns-x8 {
  margin-left: -15px;
  margin-right: -15px;
}

.columns-x2 {
  margin-left: -60px;
  margin-right: -60px;
}

.columns-x2 > div, .columns-x3 > div, .columns-x4 > div, .columns-x5 > div, .columns-x6 > div, .columns-x7 > div, .columns-x8 > div {
  padding-left: 15px;
  padding-right: 15px;
}

.columns-x2 > div {
  padding-left: 60px;
  padding-right: 60px;
}

/* --------------- Specjalne ustawienia CONTENT BLOKÓW --------------- */
.content-block.page-section.main-bcg {
  background-color: #fff;
}

.content-block.page-section.alt-bcg {
  background-color: #f3f3f3;
}

.content-block.page-section.color-bcg {
  background: #fff;
}

.content-block.page-section.color-bcg * {
  color: #fff;
}

/* === animacje onscreen === */
.icon-tile.onscreen, .icon-card.onscreen, .card.onscreen {
  animation-name: fadeInUp;
  animation-duration: 1s;
}

/* === elementy dodatkowe === */
.arrow-absolute {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -90px;
  text-transform: uppercase;
  color: #fff;
  width: 180px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.arrow-absolute > * {
  display: block;
  padding-bottom: 10px;
}

div.line {
  width: 1px;
  height: 12px;
  background: #666;
}

div.hr {
  height: 1px;
  background: #fff;
  background: linear-gradient(90deg, #fff 20%, #ddd);
}

/* --- GALERIA --- */
ul.gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-right: -0.5%;
}

ul.gallery li {
  width: 19.5%;
  margin-right: 0.5%;
  margin-bottom: 0.5%;
}

ul.gallery li img {
  width: 100%;
  transition: all 5s;
}

ul.gallery li:hover img {
  transform: scale(1.2);
}

ul.gallery li a {
  position: relative;
}

ul.gallery li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 800ms;
  z-index: 1;
}

ul.gallery li a:after {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: url("graphics/lupa-ico.png") no-repeat center;
  z-index: 2;
  opacity: 0;
  transition: all 1s;
}

ul.gallery li:hover a:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
}

ul.gallery li:hover a:after {
  opacity: 0.6;
}

.gallery-responsive {
  overflow: hidden;
  border-bottom: 10px solid #012563;
}

.gallery-responsive > div {
  float: left;
  width: 25%;
  box-sizing: border-box;
}

.gallery-responsive .gallery-image-box .gallery-image {
  padding-bottom: 73.5%;
  position: relative;
}

.gallery-responsive .gallery-image-box .gallery-image > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.multilinks {
  margin: 0;
}

/* === ukrywanie numerów telefonów === */
.phone-number {
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  transition: all 500ms;
  width: 4em;
}

.phone-number.revealed {
  width: 5.5em;
}

.reveal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #003897;
  margin-left: 5px;
  margin-right: 10px;
  line-height: 1;
  opacity: 1;
  transition: opacity 500ms;
}

.call-btn {
  display: none;
}

.phone-number .phone-txt {
  cursor: default;
  display: inline;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  transition: all 500ms;
}

.phone-number.revealed .phone-txt {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-number.revealed .reveal-btn {
  opacity: 0;
  padding-right: 0 !important;
}

.only-mobile {
  display: none;
}

.white-section {
  background: #fff;
}

/* ========================= ================== ======================= */
/* ========================= cookie preferences ======================= */
/* === swith toggle === */
.onoffswitch {
  position: relative;
  width: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.onoffswitch-checkbox {
  position: absolute;
  opacity: 0;
}

.onoffswitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #666;
  border-radius: 20px;
  display: block !important;
}

.onoffswitch-checkbox[disabled=""] + .onoffswitch-label {
  opacity: 0.6;
  pointer-events: none;
}

.onoffswitch-label:before {
  display: none !important;
}

.onoffswitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: SourceSansPro, tahoma, arial, sans-serif;
  box-sizing: border-box;
}

.onoffswitch-inner:before {
  content: "ON";
  padding-left: 10px;
  background-color: #04AA6D;
  color: #FFFFFF;
}

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #eee;
  color: #666;
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid #666;
  border-radius: 20px;
  transition: all 0.3s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
  margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
  right: 0px;
}

#advanced-cookie-info {
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#advanced-cookie-info .container {
  background: #fff;
  width: 85vw;
  max-width: 500px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 30px 30px 20px 30px;
}

#advanced-cookie-info .container img {
  max-height: 40px;
  margin-bottom: 20px;
  background-color: #012563;
  padding: 10px;
}

#advanced-cookie-info .text-wrapper {
  max-width: 100%;
  text-align: left;
  padding-bottom: 30px;
}

#advanced-cookie-info .button-wrapper {
  float: none;
  display: block;
  padding: 0;
  text-align: right;
  margin-top: 0;
}

#advanced-cookie-info .button-wrapper .button {
  margin-right: 25px;
  font-size: 14px;
  height: 40px;
}

#advanced-cookie-info .button-wrapper .button.txt {
  height: 2em;
  padding: 0;
  background: none;
  color: #000;
  min-width: 0;
  padding-right: 0;
}

#advanced-cookie-info .button-wrapper .button.txt:after {
  display: none;
}

#advanced-cookie-info .button-wrapper .button:last-child {
  margin-right: 0;
}

#advanced-cookie-info .button {
  height: 70px;
}

#page-cookiepreferences .controls {
  text-align: right;
}

.set-cookie {
  padding: 15px 120px 15px 15px;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.set-cookie h3:first-child {
  margin-bottom: 15px;
  margin-top: 0;
  font-size: 1.1rem;
}

.set-cookie .text-wrapper {
  font-size: 0.9rem;
}

.set-cookie .onoffswitch {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

#page-cookiepreferences #advanced-cookie-info {
  display: none;
}

@media screen and (max-width: 700px) {
  #advanced-cookie-info .container {
    padding: 15px;
    font-size: 14px;
  }
  #advanced-cookie-info .container img {
    margin-bottom: 10px;
    max-height: 20px;
  }
  #advanced-cookie-info .text-wrapper {
    padding-bottom: 15px;
    line-height: 1.3;
  }
  #advanced-cookie-info .button-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  #advanced-cookie-info .button-wrapper .button {
    margin: 0;
  }
}
/* ========================= // cookie preferences ======================= */
/* ========================= ================== ======================= *//*# sourceMappingURL=theme.css.map */