@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: local("Inter Thin"), local("Inter-Thin"), url("fonts/Inter-Thin.ttf");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter ExtraLight"), local("Inter-ExtraLight"), url("fonts/Inter-ExtraLight.ttf");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Light"), local("Inter-Light"), url("fonts/Inter-Light.ttf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Regular"), local("Inter-Regular"), url("fonts/Inter-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Medium"), local("Inter-Medium"), url("fonts/Inter-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter SemiBold"), local("Inter-SemiBold"), url("fonts/Inter-SemiBold.ttf");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Bold"), local("Inter-Bold"), url("fonts/Inter-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter ExtraBold"), local("Inter-ExtraBold"), url("fonts/Inter-ExtraBold.ttf");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: local("Inter Black"), local("Inter-Black"), url("fonts/Inter-Black.ttf");
  font-weight: 900;
  font-display: swap;
}
/* ================= FORMULARZE ================ */
input[type=file]::-webkit-file-upload-button {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  cursor: pointer;
  padding: 0;
}

label {
  color: black;
  text-transform: none;
  margin: 5px 0;
  font-size: 14px;
}

span + label {
  margin-top: 0;
}

input,
select,
textarea,
.input-placeholder {
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #fff;
  height: 36px;
  line-height: 1;
}

.submit-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}
.submit-controls .button {
  width: 100%;
}

.submit-controls > div {
  width: auto;
  margin-right: 20px;
}

.submit-controls > div:last-child {
  margin-right: 0;
}

.submit-area {
  display: block;
  text-align: right;
}

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

.input-wrapper {
  padding: 0 0 10px 0;
  width: 100%;
  position: relative;
}

.form-fields-wrapper {
  margin-right: -10px;
  width: 100%;
}

.columns .form-fields-wrapper {
  width: auto;
}

/* ================= formularze nowe ================ */
/* ---- placeholdery pól ---- */
input ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #333;
  opacity: 0.4;
}
input ::-moz-placeholder,
textarea ::-moz-placeholder {
  /* Firefox 19+ */
  color: #333;
  opacity: 0.4;
}
input :-ms-input-placeholder,
textarea :-ms-input-placeholder {
  /* IE 10+ */
  color: #333;
  opacity: 0.4;
}
input :-moz-placeholder,
textarea :-moz-placeholder {
  /* Firefox 18- */
  color: #333;
  opacity: 0.4;
}

.input-wrapper.floating-label {
  position: relative;
}

.input-wrapper.floating-label > label[for] {
  margin-top: 0;
  pointer-events: none;
}

.input-wrapper.floating-label > label[for]:first-child {
  position: absolute;
  top: 18px;
  transform: translate(0, -50%);
  left: 10px;
  line-height: 1;
  display: inline-block;
  padding: 2px;
  background: #fff;
  cursor: text;
  opacity: 0.5;
  z-index: 1;
  transition: all 200ms;
}

.input-wrapper.floating-label > label[for].active:first-child,
.input-wrapper.floating-label > label[for].stay-active:first-child {
  top: 0;
  left: 5px;
  opacity: 1;
  font-size: 0.7rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} /* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-number {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 108px;
  max-width: 108px;
}

.input-number input {
  width: 36px;
  text-align: center;
}

.input-number > span {
  height: 36px;
  width: 36px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  transition: all 300ms;
}

.input-number > span.down {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.input-number > span.up.disabled:after,
.input-number > span.down.disabled:after {
  line-height: 1;
}

.input-number > span.up:not(.disabled):after,
.input-number > span.down:not(.disabled):after {
  line-height: 1;
  opacity: 50%;
}

.input-number > span.up:after {
  content: url("graphics/commerce/plus.png");
}

.input-number > span.down:after {
  content: url("graphics/commerce/minus.png");
}

.input-number > span.down:hover,
.input-number > span.up:hover {
  background: #eee;
}

.select-placeholder {
  color: #999999;
}

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

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  height: 36px;
  margin: 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: 2px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#page-products_listing .styledSelect {
  border-radius: 5px;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#page-products_listing .styledSelect ul, #page-products_listing .styledSelect li {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.styledSelect:after {
  content: "";
  background: url(graphics/svg/accordion-arrow-select.svg);
  border: none;
  width: 1.3333rem;
  height: 1.3333rem;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  right: 5px;
  top: 50%;
  transform: translate(0, -50%);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  position: absolute;
  pointer-events: none;
}

.styledSelect.active:after {
  transform: rotate(180deg) translate(0, 50%);
}

.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: 5px 10px;
  color: #81878d;
  margin: 3px;
  border-radius: 3px;
}

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

/* INNY SELECT */
.select2-container .select2-selection--single {
  height: 36px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 9px 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  margin-top: -13px;
}

.select2-results ul,
.select2-results ul li {
  text-align: left;
  margin: 0;
}

.select2-results ul li {
  padding: 9px 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #111;
  color: #fff;
}

.select2-container {
  width: 100% !important;
}

/* --- 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: 0;
  line-height: 1.5;
}

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: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: black;
  font-size: 20px;
}

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

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: black;
  font-size: 20px;
}

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

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

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

.checklist.wrapper {
  display: block;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 10px;
}

.checklist.wrapper > label {
  margin-bottom: 10px;
}

.checklist.wrapper > label:last-child {
  margin-bottom: 0;
}

/* === 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;
}

/* === 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 rgba(255, 255, 255, 0.8);
  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: Inter, tahoma, arial, sans-serif;
  box-sizing: border-box;
}

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

.onoffswitch-inner:after {
  content: "OFF";
  padding-right: 10px;
  background-color: #eee;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.onoffswitch-switch {
  display: block;
  width: 18px;
  margin: 6px;
  background: black;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 56px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  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;
}

/* =============== zestawy pól ============== */
.input-combo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.input-combo > div {
  flex: 1;
  margin-right: 10px;
}

.input-combo > div:last-child {
  margin-right: 0;
}

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

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

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

/* ================ Wyszukiwarka ================== */
.simple-search-wrapper .button.search-button img {
  pointer-events: none;
}

.custom-file {
  cursor: pointer;
}

.custom-file > input {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-file .ico {
  position: static;
  height: 35px;
  width: 35px;
  background-image: url("graphics/svg/drop.svg");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.custom-file-label {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}

.required-star {
  color: #D6134B;
}

/* ========== helpery w formularzu ========= */
.card.trzecia, .card.trzyrezta {
  border-right: 1px solid #ddd;
}

.product-card {
  border-bottom: 1px solid #ddd;
}

html,
body,
input,
textarea {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0.8em 0;
  line-height: 1.2;
}

h1 {
  font-size: 2em;
  font-weight: 500;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
  font-weight: bold;
}

#START h1 {
  font-size: 3rem;
}

#START h2, h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1.25rem 0 !important;
  text-align: left !important;
  color: white;
}

span.subtitle {
  color: white;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

p {
  font-size: 20px;
  color: white;
  font-weight: 300;
  line-height: 160%;
}

#MAIN-BANER {
  padding-top: 200px;
}
#MAIN-BANER .container-alt h1 {
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}
#MAIN-BANER .container-alt .text-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 576px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 24px;
}

.container,
.container.alt {
  padding: 0 60px;
}

.social-sharing-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.social-sharing-module > span.sharing-title {
  margin: 0;
  margin-right: 1.8em;
  font-size: 1.1em;
}

#copy_link_sharing {
  position: relative;
}

#copy_link_sharing:after {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #519c46;
  color: #fff;
  border-radius: 50%;
  transition: all 500ms;
  transform: scale(0);
}

#copy_link_sharing.link-copied:after {
  transform: scale(1);
}

.links ul li {
  list-style: none;
  margin-left: 0;
}

.links ul li a {
  text-decoration: none;
  transition: all 300ms;
}

.video-wrapper .mp4-video video {
  display: block;
  max-width: 100%;
}

.footer {
  text-align: center;
}

.header {
  max-width: 100%;
}

.header.center h2,
.header.center .text-wrapper {
  text-align: center;
}

.header.center .text-wrapper {
  margin: 0 auto;
}

.header.with-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.header.with-button .button {
  margin: 0;
  margin-bottom: 10px;
}

.header.with-button h2 {
  margin-bottom: 10px;
  margin-right: 30px;
}

.logo-box .thb {
  filter: grayscale(100%);
  transition: filter 600ms;
}

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

.quote-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 140px 0;
}

.quote-section .container {
  position: relative;
  z-index: 1;
}

.quote-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.quote-section h2,
.quote-section blockquote,
.quote-section p,
.quote-section span,
.quote-section a {
  color: #fff;
}

.quote-section h2 {
  text-align: center;
}

.quote-section .header {
  padding-bottom: 0;
}

.quote-section blockquote,
.quote-section span.signature {
  text-align: center;
  display: block;
}

blockquote span.signature {
  text-transform: uppercase;
}

.quote-section .slick-next,
.quote-section .slick-prev {
  display: none !important;
}

.counter-wrapper .text-wrapper {
  margin: 0 auto;
  text-align: center;
}

.counter-section {
  margin-top: 40px;
}

.counter-section > div {
  border-right: 1px solid rgba(42, 42, 42, 0.1019607843);
}

.counter-section > div:last-child {
  border-right: 0;
}

.counter-card .content {
  text-align: center;
}

.counter-card .content strong {
  min-height: 2lh;
  line-height: 1.6;
  font-weight: 400;
  font-size: 1.25rem;
  display: block;
  color: #2a2a2a;
}

.counter-card .content .value-wrapper .count,
.counter-card .content .value-wrapper .unit {
  font-size: 2.5rem;
  color: #2a2a2a;
  font-weight: 300;
  font-family: Inter, tahoma, arial, sans-serif;
  line-height: 1.6;
  font-size: 5.375rem;
}

.colage-box-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 450px;
}

.colage-box-wrapper .colage-box {
  flex: 1;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 500ms;
  border-right: 4px solid #fff;
}

.colage-box-wrapper .colage-box:last-child {
  border-right: 0;
}

.colage-box-wrapper .colage-box .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 500ms;
}

.colage-box-wrapper .colage-box .content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 60px 30px;
  z-index: 2;
  width: 100%;
  height: auto;
  background: linear-gradient(0deg, #1c2532 0%, rgba(28, 37, 50, 0) 100%);
  box-sizing: border-box;
}

.colage-box-wrapper .colage-box .content h4 {
  color: #fff;
  font-size: 1.8em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.colage-box-wrapper .colage-box .content .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: all 500ms;
}

.colage-box-wrapper .colage-box .content .controls .button {
  font-size: 0.8rem;
  padding: 0;
  color: #fff;
}

.colage-box-wrapper .colage-box .content .controls .button.txt::after {
  display: none;
}

.colage-box-wrapper .colage-box .content .controls .button:last-child {
  border: 0;
}

#START .contact-data-form-window-section h3,
.contact-data-form-window-section h3 {
  text-align: left;
  font-size: 2.4rem;
}

.colage-box-wrapper a.colage-box:hover,
.colage-box-wrapper .colage-box:hover {
  flex: 1.5;
  cursor: pointer;
}

.colage-box-wrapper .colage-box:hover {
  cursor: default;
}

.colage-box-wrapper .colage-box:hover .content .controls {
  opacity: 1;
  height: 50px;
}

.header-modules {
  float: right;
  height: 100%;
}

.header-modules .button {
  margin: 0;
  min-width: 0;
}

.header-modules .phone-wrapper {
  margin-left: 30px;
}

.phone-wrapper .button .ico {
  padding: 10px;
}

.opSlider-control-prev,
.opSlider-control-next {
  display: none;
}

.banner-content {
  position: relative;
}

.banner-content h1,
.banner-content h2,
.banner-content .text-wrapper,
.banner-content .controls {
  text-align: left;
}

#SYSTEM-FOOT {
  background: #00171e;
  z-index: 1;
}
#SYSTEM-FOOT .links ul li {
  text-align: right;
}
#SYSTEM-FOOT .columns {
  margin: 0;
}

.with_text {
  position: relative;
  padding: 20px;
  width: 100%;
}

#SYSTEM-FOOT .container {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#START h2 {
  text-align: center;
}

.window,
.window-header,
.window-footer {
  background-color: rgb(0, 30, 40) !important;
}
.window input,
.window select,
.window textarea,
.window .input-placeholder,
.window-header input,
.window-header select,
.window-header textarea,
.window-header .input-placeholder,
.window-footer input,
.window-footer select,
.window-footer textarea,
.window-footer .input-placeholder {
  color: white !important;
}

.article-section .container .text-wrapper ol {
  display: block;
}

.article-section.ordered-list .container .text-wrapper ol {
  counter-reset: item;
  display: block;
}

.article-section.ordered-list .container .text-wrapper li {
  display: block;
}

.ordered-list li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-left: -1em;
}

#page-contactus .columns .contact_data h4:first-child,
#page-contactus .columns .form-wrapper h3:first-child {
  margin-top: 0;
}

#page-contactus .columns .form-wrapper h3 {
  font-size: 1.6em;
}

.company_name,
.add_company_name,
.address,
.phone,
.email,
.hours,
.add_descr,
.fax {
  display: block;
}

.company_name,
.add_company_name,
.address,
.phones-wrapper,
.emails-wrapper,
.hours,
.add_descr,
.fax {
  margin-bottom: 1em;
}

.contact-section-icon {
  overflow: hidden;
}

.contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-box.small .contact-icon {
  align-items: center;
}

.contact-icon .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  margin-right: 20px;
}

.contact-icon .button {
  margin: 0;
}

.contact-icon strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-family: Inter, tahoma, arial, sans-serif;
}

.contact-icon .hours {
  margin-top: 0;
}

.contact-box-form-window-wrapper {
  background: #eef1f4;
  border-radius: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-box-form-window-wrapper .contact-box-content {
  padding: 70px;
  flex: 1;
}

.contact-box-form-window-wrapper .image-wrapper {
  width: 45%;
  box-sizing: border-box;
  margin-top: 70px;
  margin-right: 70px;
}

.contact-box-form-window-wrapper .contact_data {
  padding-top: 20px;
}

.contact-box-form-window-wrapper .contact-box-content .controls {
  padding-top: 30px;
}

.contact-box-form-window-wrapper .contact-icon {
  margin-bottom: 0;
}

.contact-box-form-window-wrapper .contact-icon a {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-box-form-window-wrapper .contact-icon .icon {
  margin-right: 10px;
}

.contact-data-form-window-section .buttons .phone-wrapper {
  display: initial;
}

.contact-data-form-window-section .email-wrapper.show-email .email,
.contact-data-form-window-section .phone-wrapper.show-phone .phone {
  display: inline-flex;
}

.contact-data-form-window-section .email-wrapper.show-email .button.show-btn,
.contact-data-form-window-section .phone-wrapper.show-phone .button.show-btn {
  display: none;
}

.email-wrapper .email,
.phone-wrapper .phone {
  display: none;
}

.email-wrapper.show-email .email,
.phone-wrapper.show-phone .phone {
  display: flex;
}

.email-wrapper.show-email .button.show-btn,
.phone-wrapper.show-phone .button.show-btn {
  display: none;
}

.phone-number > a:hover {
  text-decoration: none;
}

.map iframe {
  width: 100% !important;
}

#page-contactus .contact-simple-layout {
  display: flex;
  gap: 30px;
  border: 1px solid #FFB400;
  padding: 30px;
  border-radius: 10px;
}
#page-contactus .contact-simple-layout .magicFormSubmit {
  margin-right: 0;
}
#page-contactus .contact-simple-layout > div.contact-form {
  width: 65%;
}
#page-contactus .contact-simple-layout > div.contact-content {
  width: 35%;
}

.form-fields-wrapper {
  overflow: visible;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.form-fields-wrapper > .col1,
.form-fields-wrapper > .col2 {
  float: left;
  width: 50%;
  box-sizing: border-box;
}

.form-fields-wrapper > .col1 {
  padding-right: 5px;
}

.form-fields-wrapper > .col2 {
  padding-left: 5px;
}

.form-fields-wrapper .input-wrapper.field-rodo {
  clear: both;
}

.form-fields-wrapper > .col2 .input-wrapper {
  height: calc(100% - 10px);
}

.form-fields-wrapper > .col2 textarea {
  min-height: 120px;
  height: 100%;
}

.form-fields-wrapper .input-wrapper input,
.form-fields-wrapper .input-wrapper textarea {
  display: block;
}

.contact-data-form-section {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.contact-data-form-section > div {
  box-sizing: border-box;
  padding: 50px;
}

.contact-data-form-section > div.contact-col {
  background: #eee;
  position: relative;
  width: 40%;
}

.contact-data-form-section > div.contact-col:after {
  content: "";
  position: absolute;
  top: 60px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #eee;
  transform: rotate(45deg);
}

.contact-data-form-section > div.add-module-col {
  width: 60%;
}

.contact-data-form-section h3,
#START .contact-data-form-section h3,
.contact-data-form-section h4,
#START .contact-data-form-section h4 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
  font-size: 2.4rem;
}

.contact-data-form-window-section .main-section {
  display: flex;
  padding: 40px 0;
}

.contact-data-section .contact-box {
  padding: 50px 50px 20px 50px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.contact-data-section .contact-box.small {
  padding-right: 50%;
}

.contact-data-section .contact-box.small .image-wrapper {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: -15px;
  width: 40%;
}

.contact-data-section .contact-box.small .image-wrapper .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-data-section .form-fields-wrapper textarea {
  min-height: 179px;
}

.contact-data-section h3,
#START .contact-data-section h3,
.contact-data-section h4,
#START .contact-data-section h4 {
  margin-top: 0;
  text-align: left;
  font-size: 2.6rem;
}

.contact-data-section .phone-wrapper .button,
.contact-data-section .email-wrapper .button,
.contact-data-form-section .phone-wrapper .button,
.contact-data-form-section .email-wrapper .button {
  min-width: 180px;
}

.contact-data-form-section .contact-icon {
  align-items: center;
}

.reveal-phone-number-wrapper {
  position: relative;
  margin-left: 10px;
}

.phone-window-wrapper {
  display: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  right: 0;
  left: 0;
  padding: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
}

@keyframes slidein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.phone-window-wrapper.show-me {
  display: block;
  animation-duration: 400ms;
  animation-name: slidein;
  animation-timing-function: ease-in-out;
  padding: 0;
}

.phone-window-wrapper.show-me a {
  padding: 15px;
  color: #111;
}

.blog-article {
  display: flex;
  justify-content: space-between;
}

#START .contact-data-form-window-section h3,
.contact-data-form-window-section h3 {
  margin-top: 0;
}

.footer-logo {
  width: 70px;
  margin-bottom: 19px;
}

.mail-phone-combo {
  display: flex;
  gap: 5px;
}

#SYSTEM-FOOT .footer-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.contact-footer-section img {
  max-width: 34%;
}

.footer-section,
.footer-section a,
.contact-footer-section .address,
.contact-footer-section .tel-mail-combo,
.tel-mail-combo a,
.footer-section .phone-txt {
  color: #fff !important;
  font-weight: 300 !important;
}

.footer-section .tel-mail-combo {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
}

.footer-section .contact_data {
  margin-top: 10px;
}

.social-footer-section span {
  margin-bottom: 10px;
}

.social-footer-section .social-icon {
  width: 23px;
  height: 23px;
}

.contact_data .address {
  margin-bottom: 0 !important;
}

.social-footer-section {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-section .links ul {
  margin-bottom: 0;
}

.investment-map {
  position: relative;
  background-color: #ddd;
}

.investment-map img {
  display: block;
  width: 100%;
  height: 100%;
}

.point {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 30px;
  margin-left: -11px;
  z-index: auto !important;
  cursor: pointer;
}

#page-article .point .image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 32px;
  overflow: visible;
}

.point .map-tooltip .image-wrapper img {
  left: 0;
  top: 0;
}

.point span {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  line-height: 21px;
}

.point::after {
  background-image: url("graphics/svg/marker.svg");
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.container.full.map-full-width {
  padding: 0;
  margin-bottom: 50px;
}

.map-tooltip {
  display: none;
  position: absolute;
  left: 20px;
  top: 15px;
  width: 195px;
  height: auto;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1098039216);
  background-color: #fff;
  border-radius: 7px;
  padding-top: 100px;
  padding-left: 15px;
  z-index: 3;
  cursor: default;
}

.map-tooltip img {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 180px;
  height: 75px;
  border-radius: 5px;
}

.map-tooltip.show-me,
.map-tooltip.show-me2 {
  display: block;
}

.map-tooltip .button {
  position: relative;
  height: 40px;
  width: 180px;
  padding: 10px;
  margin-top: 5px;
  justify-content: left;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.map-tooltip .button::after {
  background-image: url("graphics/svg/arrow-bw-right-orange.svg");
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 12px;
  width: 29px;
  height: 20px;
}

.map-tooltip .button:hover::after {
  right: -5px;
  transition: all 700ms;
}

.map-tooltip.flipped {
  left: -100px;
}

.title-tooltip {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 5px 0 8px 0;
  color: #000;
}

.loading-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loader {
  padding: 10px 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Optional: Add a spinning animation */
.loader::after {
  content: " ⠋";
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    content: " ⠋";
  }
  20% {
    content: " ⠙";
  }
  40% {
    content: " ⠹";
  }
  60% {
    content: " ⠸";
  }
  80% {
    content: " ⠼";
  }
  100% {
    content: " ⠴";
  }
}
nav.desktop .nav-button > a span {
  position: relative;
}

nav.desktop .nav-button > a span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  height: 2px;
  width: 0;
  background: #FFB400;
  transition: width 300ms ease;
}

nav.desktop .nav-button > a:hover span:after {
  width: 100%;
}

nav.desktop .nav-button > a:hover span:after,
nav.desktop .nav-button.urhere > a span:after {
  height: 2px;
}

.multiblocks_slider.second_variant .splide__track {
  overflow: visible;
}
.multiblocks_slider.second_variant .splide__track::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: -10px;
  width: 2000px;
  background-color: white;
  z-index: 1;
}

.splide__pagination {
  bottom: -1em;
}

.splide__pagination {
  justify-content: flex-start;
}

.splide__pagination__page {
  width: 40px;
  border-radius: 5px;
  height: 5px;
  margin-right: 10px;
  background: rgba(255, 0, 0, 0.4431372549);
}

.splide__pagination__page.is-active {
  background: #0f91fd; /* Highlight for active or progress dots */
  transform: none;
}

.scroll_trigger_animate #scroll-container {
  display: flex;
  gap: 4rem;
  justify-content: center;
  padding: 4rem 0;
}
.scroll_trigger_animate .trigger_content {
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 4rem;
  flex-direction: column;
  align-items: center;
}
.scroll_trigger_animate .trigger_card {
  width: 100%;
  min-height: 60vh;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.scroll_trigger_animate .trigger_card h2,
.scroll_trigger_animate .trigger_card p {
  margin: 0 !important;
}
.scroll_trigger_animate .new_sticky-wrapper {
  flex-shrink: 0;
  position: relative;
  height: 100vh;
  width: 570px;
  display: block;
}
.scroll_trigger_animate .trigger_card h2,
.scroll_trigger_animate .trigger_card p {
  text-align: center;
}
.scroll_trigger_animate .sticky-box {
  position: fixed;
  width: 570px;
  height: 570px;
  min-height: 570px;
  min-width: 570px;
  border-radius: 12px;
  padding: 1.5rem;
  color: white;
}

#scroll_trigger_animate {
  transition: background-color 0.3s ease;
}

.sticky-box {
  position: fixed;
  width: 570px;
  height: 570px;
  overflow: hidden;
  border-radius: 12px;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.bg-layer.current {
  opacity: 1;
  z-index: 1;
}

.bg-layer.next {
  opacity: 0;
  z-index: 2;
}

#advanced-cookie-info .container {
  background-color: rgb(0, 30, 40) !important;
}
#advanced-cookie-info .container .text-wrapper {
  color: rgba(255, 255, 255, 0.8);
}

#CANVAS {
  background-color: rgb(0, 30, 40);
}

span.subtitle {
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 8px 15px;
  border-radius: 49px;
  display: inline-flex;
  align-items: center;
  opacity: 0.8;
  height: 36px;
  box-sizing: border-box;
}

.text_img {
  padding: 100px 0;
  display: flex;
}
.text_img .heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.text_img .heading .subtitle {
  width: -moz-max-content;
  width: max-content;
}
.text_img .text-wrapper {
  flex: none;
  max-width: 450px;
}

.text_img_img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text_img_img.right {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}

.text_img.right {
  flex-direction: row-reverse;
  width: 50%;
  left: 50%;
  position: relative;
  justify-content: flex-end;
}
.text_img.right img {
  left: 0 !important;
  right: auto !important;
}

.marquee-slider {
  padding: 0.75rem 0;
  border-top: 1px solid #0084A4;
  border-bottom: 1px solid #0084A4;
}
.marquee-slider h4 {
  display: inline-block;
  color: #0084A4;
  font-size: 1rem;
  margin: 0;
  white-space: nowrap;
}

.text_descr > div {
  display: flex;
  text-align: left;
  padding: 40px 0;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #0084A4;
}
.text_descr .title {
  font-weight: 500;
  font-size: 2rem;
  flex: 1;
  color: white;
  margin: 0;
}
.text_descr .descr {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

#START .how-it-works-wrapper {
  margin: 0 auto;
  max-width: 1440px;
}
#START .how-it-works-wrapper .header {
  text-align: center;
  color: white;
}
#START .how-it-works-wrapper .header h2 {
  text-align: center !important;
}
#START .how-it-works-wrapper .header p {
  max-width: 1080px;
  margin: 0 auto;
}
#START .how-it-works-wrapper .text-wrapper {
  margin: 0 auto;
}
#START .how-it-works-wrapper .how-row {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#START .how-it-works-wrapper .how-row.double {
  gap: 80px;
  padding: 1.25rem 0;
}
#START .how-it-works-wrapper .how_card.wide-card {
  width: 500px;
  margin-top: 60px;
}
#START .how-it-works-wrapper img.desktop-only {
  height: auto;
  max-width: 100%;
}
#START .how-it-works-wrapper .image-wrapper {
  position: relative;
  height: 224px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #0084a4;
}
#START .how-it-works-wrapper .border-purple .image-wrapper {
  border: 2px solid #8f78a9;
}
#START .how-it-works-wrapper .bg-purple-gradient {
  background: linear-gradient(to left, rgba(119, 68, 178, 0.64), rgba(42, 30, 59, 0.52));
}
#START .how-it-works-wrapper .bg-blue-gradient {
  background: linear-gradient(to left, #013f4e, rgba(1, 63, 78, 0.14));
}
#START .how-it-works-wrapper .image-wrapper.gradient {
  background: linear-gradient(to left, rgba(1, 63, 78, 0.6745098039), rgba(119, 68, 178, 0.4705882353));
  border-color: #0084a4;
}
#START .how-it-works-wrapper .image-wrapper .image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  max-height: 100%;
}
#START .how-it-works-wrapper .non-hover {
  opacity: 1;
}
#START .how-it-works-wrapper .add-hover {
  opacity: 0;
}
#START .how-it-works-wrapper .image-wrapper.hovered .non-hover {
  opacity: 0;
}
#START .how-it-works-wrapper .image-wrapper.hovered .add-hover {
  opacity: 1;
}
#START .how-it-works-wrapper .label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 14px;
  border: 2px solid;
  opacity: 0.8;
}
#START .how-it-works-wrapper .border-purple {
  border-color: #8f78a9 !important;
}
#START .how-it-works-wrapper .border-blue {
  border-color: #0084a4 !important;
}
#START .how-it-works-wrapper .text-purple {
  color: #8f78a9;
  border-color: #8f78a9;
}
#START .how-it-works-wrapper .text-blue {
  color: #0084a4;
  border-color: #0084a4;
}
#START .how-it-works-wrapper .content {
  padding: 20px;
}
#START .how-it-works-wrapper .arrow {
  display: block;
  max-width: 40px;
}
#START .how-it-works-wrapper .arrow.top {
  max-width: none;
  padding-top: 100px;
}
#START .how-it-works-wrapper .arrow.bottom {
  max-width: none;
  padding-bottom: 100px;
}
#START .how-it-works-wrapper .arrow-under {
  margin-top: 20px;
}
#START .how-it-works-wrapper .arrow-under.first {
  margin-left: 41%;
}
#START .how-it-works-wrapper .arrow-under.second {
  margin-left: 55%;
}
#START .how-it-works-wrapper .like {
  position: absolute;
  top: 16px;
  width: 40px;
}
#START .how-it-works-wrapper .like.left {
  left: 16px;
}
#START .how-it-works-wrapper .like.right {
  right: 16px;
}
#START .how-it-works-wrapper .double-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 100%;
  height: 100%;
}
#START .how-it-works-wrapper .how_card {
  width: 380px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  color: white;
  border: 2px solid #ccc;
  padding: 12px 12px 0 12px;
}
#START .how-it-works-wrapper .how_card h3 {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-0 {
  top: 0;
}

.main-section-hero {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 512px;
  position: relative;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.hero-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1.15);
  z-index: 0;
}

.hintervideo {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
}

.hintervideo2 {
  max-width: 100%;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}

#TOP .container {
  height: 100%;
  position: relative;
  padding: 0 20px;
}

.border-top {
  border-top: 1px solid #0084a4;
}

.contact_data {
  text-align: center;
}
.contact_data .image-wrapper {
  width: auto;
  max-width: none;
  border-radius: 0;
  text-align: left;
}
.contact_data .image-wrapper img {
  max-width: none;
  width: auto;
  margin: 0;
  height: 34px;
}
.contact_data .mail-phone-combo {
  align-items: center;
  justify-content: center;
}

.contact-footer-section,
.contact_data {
  width: 100%;
}

#START .window-overlay .window, .window-overlay .window {
  height: 50svh;
  min-height: 520px;
}
#START .window-overlay .input-wrapper.floating-label > label[for]:first-child, .window-overlay .input-wrapper.floating-label > label[for]:first-child {
  background: #08252f;
}
#START .window-overlay .window-header, .window-overlay .window-header {
  padding-top: 16px 70px 16px 30px;
  height: 70px;
  box-sizing: border-box;
}
#START .window-overlay .window-header h3, .window-overlay .window-header h3 {
  margin: 0;
}
#START .window-overlay .window-close, .window-overlay .window-close {
  background-color: #1a3139;
  border-radius: 5px;
  right: 15px;
  top: 15px;
  transform: none;
}
#START .window-overlay .window-close img, .window-overlay .window-close img {
  filter: invert(1);
}

#window-contact .window {
  max-width: 685px;
  min-height: 400px;
  max-height: 400px;
}
#window-contact .window .window-content {
  top: 90px;
  padding: 25px;
  bottom: 0;
}
#window-contact .window .window-content .button {
  margin-bottom: 0;
}

.slider-component {
  border: 2px solid #0084a4;
  border-radius: 24px;
  background-color: #0d242d;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
}

.slider-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.slider-text {
  padding: 40px;
  color: white;
  flex: 1 1 50%;
}

.slider-item {
  text-align: left;
}

.subtitle {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.slider-header {
  font-size: 14px;
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 6px 12px;
  opacity: 0.8;
  display: inline-block;
  margin-bottom: 20px;
}

.slider-title {
  font-weight: 600;
  font-size: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.slider-buttons {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  left: 60px;
  bottom: 25%;
}

.slider-buttons button {
  background: none;
  margin-right: 10px;
  border: none;
  cursor: pointer;
}

/* .slider-phone {
    margin-top: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    flex: 1 1 50%;
  } */
.phone-image-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  overflow: hidden;
}

.phone-main {
  position: absolute;
  width: 300px;
  top: 80px;
  right: 0;
  height: 608px;
  min-height: 608px;
  margin-right: 100px;
  margin-left: 100px;
  transition: all 0.3s ease;
  /* object-fit: contain;
    scale: 1.2; */
}

.phone-overlay {
  position: absolute;
  max-width: 512px;
  margin-right: 50px;
  margin-left: 50px;
  transition: all 0.3s ease;
  top: 12em;
}

.overlay-inner {
  border: 2px solid #8f78a9;
  border-radius: 16px;
  overflow: hidden;
  width: 400px;
  height: 128px;
  top: 0;
  right: 0;
  box-shadow: 0 0 20px rgba(143, 120, 169, 0.6);
  position: relative;
  background-color: #fff;
}

.phone-overlay-img {
  position: absolute;
  width: 512px;
  height: 1038px;
  right: -80px;
  top: -80px;
  max-width: none;
  max-height: none;
  display: block;
  margin: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  /* Możesz dodać ewentualne przesunięcia, jeśli trzeba lepiej wyśrodkować */
}

.overlay-label {
  text-align: center;
  background-color: #8f78a9;
  border-radius: 24px;
  padding: 4px 12px;
  display: inline-block;
  color: white;
  font-size: 14px;
  white-space: nowrap;
  bottom: -13px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.window_content_panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.form_panel.blue {
  border: 1px solid rgba(0, 159, 197, 0.3019607843);
}

.form_panel {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.031372549);
  border: 1px solid rgba(143, 120, 169, 0.3019607843);
  border-radius: 10px;
  padding: 20px;
}
.form_panel p {
  font-size: 14px;
}
.form_panel h3 {
  margin: 25px 0 10px 0;
  font-size: 1rem;
}
.form_panel .button {
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
}
.form_panel .label {
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 14px;
  border: 2px solid;
  width: -moz-max-content;
  width: max-content;
}
.form_panel .text-purple {
  color: #8f78a9;
  border-color: #8f78a9;
}
.form_panel .text-blue {
  color: #0084a4;
  border-color: #0084a4;
}

#form-mod-199 .window-content, #form-mod-292 .window-content {
  bottom: 86px;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
#form-mod-199 .window label, #form-mod-292 .window label {
  color: #92aab1;
  font-size: 13px;
  font-weight: 400;
}
#form-mod-199 .window input, #form-mod-292 .window input {
  height: 40px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.031372549);
  color: white;
}
#form-mod-199 .window .input-wrapper, #form-mod-292 .window .input-wrapper {
  padding-bottom: 15px;
}
#form-mod-199 .window .form-fields-wrapper > .col1, #form-mod-292 .window .form-fields-wrapper > .col1 {
  padding-right: 8px;
}
#form-mod-199 .window .form-fields-wrapper > .col2, #form-mod-292 .window .form-fields-wrapper > .col2 {
  padding-left: 8px;
}
#form-mod-199 .window input[type=checkbox] + label::before, #form-mod-292 .window input[type=checkbox] + label::before {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.031372549);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#form-mod-199 .window input[type=checkbox]:checked + label::before, #form-mod-292 .window input[type=checkbox]:checked + label::before {
  background: rgba(255, 255, 255, 0.031372549);
  color: white;
}

#START .slider-content h2 {
  max-width: none;
}
#START .slider-content .slider-text {
  padding-bottom: 80px;
}
#START .slider-content .slider-txt {
  margin: 0;
  min-height: 2lh;
}
#START .slider-content .slider-buttons {
  bottom: 40px;
}
#START .slider-content span.subtitle {
  margin-top: 0;
}

.PAGE {
  padding: 40px 0 80px 0;
}

.PAGE:has(.text_img) {
  padding: 40px 0 0 0;
}

.cookie-preferences-section p {
  font-size: 15px;
}

.onoffswitch-inner:after {
  color: #000;
  font-weight: 500;
}

.onoffswitch-inner:before {
  color: #000;
  font-weight: 500;
  background-color: #ffbf26;
}

.onoffswitch-label, .onoffswitch-switch {
  border: 0;
}/*# sourceMappingURL=theme.css.map */