@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: #1A1A1A;
  text-transform: none;
  margin: 5px 0;
  font-size: 16px;
}

.window label {
  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: 40px;
  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: 20px;
  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: 120px;
  max-width: 120px;
}

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

.input-number > span {
  height: 40px;
  width: 40px;
  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: 40px;
  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: #1A1A1A;
}

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

.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 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
  padding-left: 40px;
  position: relative;
}

input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=checkbox]:checked + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: #E50649;
  border-radius: 2px;
  border-color: #E50649;
}

input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  display: block;
  width: 12px;
  height: 10px;
  border-radius: 2px;
  background-image: url("graphics/svg/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
}

input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  display: block;
  width: 14px;
  height: 14px;
  background: #E50649;
  border-radius: 100%;
}

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;
}

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

@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: #1A1A1A;
  text-transform: none;
  margin: 5px 0;
  font-size: 16px;
}

.window label {
  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: 40px;
  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: 20px;
  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: 120px;
  max-width: 120px;
}

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

.input-number > span {
  height: 40px;
  width: 40px;
  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: 40px;
  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: #1A1A1A;
}

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

.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 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  cursor: pointer;
  margin: 0;
  line-height: 1.5;
  padding-left: 40px;
  position: relative;
}

input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  text-indent: 0.15em;
  line-height: 1;
  color: #fff;
  font-size: 20px;
}

input[type=checkbox]:checked + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: #E50649;
  border-radius: 2px;
  border-color: #E50649;
}

input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 6px;
  display: block;
  width: 12px;
  height: 10px;
  border-radius: 2px;
  background-image: url("graphics/svg/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 100%;
}

input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 4px;
  display: block;
  width: 14px;
  height: 14px;
  background: #E50649;
  border-radius: 100%;
}

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;
}

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

.plan_holder {
  position: relative;
}

.image-map-container {
  position: relative;
  display: inline-block;
}

.image-map-container2 {
  position: relative;
  left: 320px;
  margin-bottom: -300px;
  top: -170px;
}

.image-plan-wrapper .image-map-container {
  top: -230px;
  left: 230px;
  margin-bottom: -250px;
}

.image-plan-wrapper .image-coordsmap-container img {
  width: 100%;
  height: 100%;
}

.image-map-container img {
  display: block;
}

.image-map-container .map-selector {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #546e7a;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: top, left, right, bottom, color;
}

.image-map-container .map-selector.hover {
  color: #546e7a;
}

.map-selector:after {
  content: "";
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: inherit;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-property: top, left, right, bottom, background;
  pointer-events: none;
}

.image-plan-wrapper {
  display: flex;
  position: relative;
  background: #f9f9f9;
  align-items: stretch;
}

.plan_holder .image-plan-wrapper {
  background: #fff;
}

.image-plan-wrapper .navigate {
  position: absolute;
  left: 30px;
  top: 30px;
}

.image-plan-wrapper .side-navigation {
  width: 300px;
  min-width: 300px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #fff;
}

.image-map-holder {
  position: relative;
  overflow: hidden;
  padding-bottom: 60%;
  width: 100%;
  background: #fff;
  margin-left: 0;
}

.image-map-holder .image-map-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: 0;
  margin-right: 0;
}

.image-plan-wrapper .set-buttons-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
}

.image-map-holder.zoom-in {
  overflow: auto;
}

.image-coordsmap-holder {
  background: #f4f4f4;
  margin: 0 auto;
}

.image-coordsmap-holder.frame {
  padding: 10px;
  border: 0px solid #ddd;
}

.models-tooltip {
  position: absolute;
  background: rgb(255, 255, 255);
  opacity: 1;
  color: rgb(0, 0, 0);
  padding: 15px;
  font-weight: 400 !important;
  z-index: 1000;
  margin: 0;
  width: 230px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
}

.models-tooltip .comming-soon {
  color: #000;
}

.models-tooltip .sold-out {
  color: #e74124;
}

.models-tooltip .building_row {
  border-bottom: 0px solid rgb(187, 187, 187);
  font-size: 12px;
  padding-bottom: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.models-tooltip .content_row,
.models-tooltip.only-table .content_row {
  padding: 0;
  border-top: 1px solid rgb(187, 187, 187);
  padding-top: 5px;
}

.models-tooltip.only-table .content_row {
  border: 0;
}

.models-tooltip .building_row > div {
  flex: 1;
}

.models-tooltip .building_row > div:first-child {
  flex: 2;
}

.models-tooltip .content_row > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 15px;
}

.models-tooltip .content_row > div > p {
  flex: 2;
  color: #000;
  font-size: 13px !important;
  text-align: left !important;
}

.models-tooltip .content_row > div > span {
  flex: 1;
  color: #000;
  font-size: 15px;
  white-space: nowrap;
}

/*Mobile Tooltip*/
.models-tooltip.mobileTooltip {
  position: fixed;
}

.mobileTooltip .tooltip-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.mobileTooltip .button {
  margin: 5px 0;
}

.mobileScrollBlock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  z-index: 990;
  backdrop-filter: blur(20px);
  display: none;
}

.bulding-type-header {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.bulding-type-header .image {
  margin-bottom: 10px;
  display: flex;
}

.bulding-type-header .image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.models-tooltip h5 {
  font-size: 1.2rem;
  color: #000;
  line-height: 3.375rem;
  font-weight: 700;
  margin: 0;
}

.models-tooltip .content_row,
.building {
  padding-top: 10px;
  padding-bottom: 10px;
}

.models-tooltip .content_row p {
  position: relative;
  font-size: 12px;
  margin: 5px 0;
}

.models-tooltip .content_row p span {
  font-size: 14px;
  color: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

.navigate-apartments {
  width: 100%;
  padding: 15px;
}

.building {
  display: block;
  position: relative;
  padding-bottom: 30px;
}

.floor-list {
  padding-bottom: 30px;
}

.navigate-apartments h4 {
  margin-top: 0;
}

.building .btn-building {
  width: auto;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.875rem;
  font-weight: 700;
  box-sizing: border-box;
  border-bottom: 2px solid #000;
  color: #000;
  white-space: nowrap;
}

.floor-navigation {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.floor-navigation li {
  margin-right: 10px;
  margin-left: 0;
}

.floor-navigation li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: rgb(167, 163, 160);
  font-weight: 700;
  box-sizing: border-box;
  border-bottom: 2px solid rgb(255, 255, 255);
}

.floor-navigation li a:hover {
  color: rgb(0, 0, 0);
}

.floor-navigation li a.active {
  border-bottom: 2px solid rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

.floor-navigation li a:hover {
  text-decoration: none;
}

.apartment-lead-content {
  display: flex;
  align-items: flex-start;
  gap: 90px;
  justify-content: space-between;
}

.apartment-image-wrapper .apartment-image a::after {
  display: none;
}

.apartment-lead-wrapper .apartment-lead-content .apartment-image-wrapper .apartment-image img {
  max-height: 100%;
  max-width: 100%;
}

.apartment-cta .controls {
  text-align: left;
}

.apartment-cta-wrapper .apartment-cta .controls .button {
  margin: 0;
}

.apartment-cta .controls {
  text-align: left;
}

.apartment-cta-wrapper .apartment-cta .controls .button {
  margin: 0;
}

.apartment-price .price {
  position: relative;
  font-size: 2.25rem;
  font-weight: 400;
  font-family: Inter, tahoma, arial, sans-serif;
}

.apartment-price .old_price {
  position: relative;
  font-size: 20px;
  line-height: 1;
  margin-right: 15px;
  margin-bottom: 3px;
}

.apartment-price .old_price:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #1A1A1A;
}

.apartment-price .price .price-symbol {
  font-size: 1.2rem;
}

.apartment-price.promo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.apartment-price.promo .price,
.apartment-price.promo > span {
  color: #60c07b;
}

.apartment-price.promo .old_price {
  color: inherit;
}

.apartment-price-m2 {
  font-size: 1rem;
  color: #4d5155;
}

.apartment-price .price.is-promo {
  text-decoration: line-through;
}

.apartment-price-section {
  border: 0px solid rgb(221, 221, 221);
  text-align: left;
}

.apartment-price-wrapper {
  margin: 40px 0;
}

.apartment-price-section .controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.apartment-price-section .controls a.button {
  margin: 0;
  width: 100%;
}

.apartment-agent-wrapper {
  max-width: 460px;
  padding: 40px;
  background: #fff;
  border-radius: 5px;
}

.apartment-agent-wrapper .apartment-agent-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}

.apartment-agent-wrapper .apartment-agent-title .image-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
}

.apartment-agent-wrapper .apartment-agent-title .image-wrapper .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border: 1px solid #ddd;
}

.apartment-agent-wrapper .apartment-agent-title .content {
  padding-left: 20px;
}

.apartment-agent-wrapper .apartment-agent-title .content h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
}

.apartment-agent-wrapper .apartment-agent-title .content span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.apartment-agent-wrapper .controls {
  padding-top: 20px;
}

.apartment-agent-wrapper .controls .button {
  margin: 0;
  display: flex;
  width: 100%;
}

.apartment-agent-contact {
  padding-top: 20px;
}

.apartment-agent-contact .phone-wrapper a,
.apartment-agent-contact .phone-wrapper .phone-txt,
.apartment-agent-contact .email a {
  display: block;
  text-decoration: none;
  color: #1A1A1A;
  font-size: 1.4rem;
}

.apartment-agent-wrapper .ico-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 5px;
}

.apartment-agent-wrapper .ico-text .ico {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 8px;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartment-agent-wrapper .ico-text .ico img {
  width: 100%;
}

.side .apartment-agent-wrapper {
  padding: 20px;
}

.side .apartment-agent-wrapper h3 {
  font-size: 1rem;
  margin-top: 0;
}

.side .apartment-agent-wrapper .apartment-agent-title {
  margin-top: 0;
}

.side .apartment-agent-wrapper .apartment-agent-title .image-wrapper {
  width: 50px;
  height: 50px;
  min-width: 50px;
}

.side .apartment-agent-wrapper .apartment-agent-header {
  padding: 10px 20px;
  background: #f4f4f4;
  margin: -20px -20px 0 -20px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.side .apartment-agent-wrapper .apartment-agent-header h3 {
  text-align: center;
  margin: 0;
}

.side .apartment-agent-contact .phone-wrapper a,
.side .apartment-agent-contact .phone-wrapper .phone-txt,
.side .apartment-agent-contact .email a {
  font-size: 1.2rem;
}

#apartment-rezervation-window .window.window-success .window-content {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 80px;
  padding-bottom: 0;
}

#apartment-rezervation-window .window.window-success .window-content > div {
  flex: 1;
}

#apartment-rezervation-window .window.window-form .window-content,
#signup-available-window .window.window-form .window-content {
  top: 80px;
  padding-top: 0;
  bottom: 80px;
  padding-bottom: 0;
}

.bulding-type-wrapper {
  padding: 60px;
  background: #f4f4f4;
}

.bulding-type-wrapper .bulding-type {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.bulding-type-wrapper .bulding-type .image-wrapper {
  width: 35%;
  max-width: 400px;
}

.bulding-type-wrapper .bulding-type .content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 60px;
}

.bulding-type-wrapper .bulding-type .content h2 {
  margin-top: 0;
}

.link-file {
  border: 1px solid rgba(42, 42, 42, 0.1019607843);
  border-radius: 10px;
  max-width: none;
  font-size: 1rem;
}

.button.alt.link {
  gap: 10px;
}
.button.alt.link img {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

#detail .product-images {
  width: 100%;
  max-width: 800px;
  margin: 0;
  border: 1px solid #eee;
}

#detail .product-images li,
#detail .product-images figure,
#detail .product-images a,
#detail .product-images img {
  display: block;
  outline: none;
  border: none;
  width: 100%;
}

#detail .product-images .main-img-slider figure {
  margin: 0 auto;
  padding: 0 2em;
}

#detail .product-images .main-img-slider figure a {
  cursor: pointer;
  cursor: zoom-in;
}

#detail .product-images .main-img-slider figure a img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

#detail .product-images .thumb-nav {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

#detail .product-images .thumb-nav.slick-slider .slick-prev,
#detail .product-images .thumb-nav.slick-slider .slick-next {
  font-size: 1.2em;
  height: 20px;
  width: 26px;
  margin-top: -10px;
}

#detail .product-images .thumb-nav.slick-slider .slick-prev {
  margin-left: -30px;
}

#detail .product-images .thumb-nav.slick-slider .slick-next {
  margin-right: -30px;
}

#detail .product-images .thumb-nav li {
  display: block;
  margin: 0;
  padding: 0 !important;
  cursor: pointer;
}

#detail .product-images .thumb-nav li img {
  display: block;
  width: 100%;
  max-width: 255px;
  margin: 0;
  border: 2px solid transparent;
  transition: border-color 0.25s;
  box-sizing: border-box;
}

#detail .product-images .thumb-nav li:hover,
#detail .product-images .thumb-nav li:focus {
  border-color: #999;
}

#detail .product-images .thumb-nav li.slick-current img {
  border-color: #d12f81;
}

#detail .slick-list {
  overflow: hidden !important;
  margin: 0 !important;
}

#detail .slick-slide {
  padding: 0 !important;
}

.gal-area {
  padding-bottom: 60% !important;
  width: 400px;
}

.gal-area > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.main_img {
  width: 100%;
  margin: 0 auto;
}

.slick-slide {
  padding: 0 20px !important;
}

.slick-slider .slick-prev {
  left: -30px;
}

.slick-slider .slick-next {
  right: -30px;
}

.slick-slider .slick-prev,
.slick-slider .slick-next {
  border-radius: 50%;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#page-developer_apartment .apartment-lead-content .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
}

.realestate-search-wrapper {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  background: rgb(241, 241, 241);
  padding: 20px;
  box-sizing: border-box;
}

.realestate-search-wrapper .search-box-title {
  opacity: 0.4;
}

.realestate-search-wrapper select,
.realestate-search-wrapper .input-placeholder,
.realestate-search-wrapper input {
  margin: 0;
  border: none;
  border-radius: 0;
  background: rgb(0, 0, 0);
  height: 50px;
  line-height: 1;
  border-bottom: 3px solid rgb(0, 0, 0);
}

.realestate-search-wrapper .styledSelect {
  background-color: rgb(0, 0, 0);
  padding: 0px 40px 0 10px;
  font-weight: 500;
  border: none;
  border-radius: 0;
  font-size: 18px;
}

.realestate-search-wrapper .styledSelect:after {
  border: 5px solid transparent;
  border-color: rgb(0, 0, 0) transparent transparent transparent;
}

.realestate-search-wrapper .button {
  margin: 0;
}

.filter-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
}

.filter-container .filter-wrapper {
  margin-left: 10px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}

.filter-container .filter-wrapper label {
  margin-top: 0;
  cursor: pointer;
}

.filter-container .filter-wrapper label span,
.building-type-checkboxes label span {
  border: 1px solid #f5f5f5;
  padding: 10px 25px;
  position: relative;
}

.filter-container .filter-wrapper label.desc span:after,
.filter-container .filter-wrapper label.asc span:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 8px;
  width: 8px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("graphics/svg/select-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.filter-container .filter-wrapper label.asc span:after {
  transform: rotate(180deg);
}

.filter-container .filter-wrapper label span .filter-container .filter-wrapper label:hover,
.filter-container .filter-wrapper input:checked + span,
.building-type-checkboxes label:hover,
.building-type-checkboxes input:checked + span {
  border-color: #0b0b0b;
  color: #0b0b0b;
  cursor: pointer;
}

#appartments_table .columns.x2 > div {
  width: 100%;
}

.search-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-info p {
  margin: 0;
}

.building-type-checkboxes {
  display: flex;
  margin-bottom: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.main-properties-search-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-search-wrapper .input-wrapper {
  min-width: 300px;
}

.input-search-wrapper .input-search {
  padding-right: 40px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.input-search-wrapper .input-search input {
  border-color: #f5f5f5;
}

.input-search-wrapper .input-search .button.only-ico {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  margin: 0;
  border-radius: 0;
  background-color: white;
}

.input-search-wrapper .input-search .ico {
  padding: 12px;
}

.input-search-wrapper .input-search .ico img {
  filter: invert(100%);
}

.properties-search-wrapper {
  padding: 20px;
  display: flex;
  border: 1px solid rgba(42, 42, 42, 0.1019607843);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.properties-search-wrapper .search-box-title {
  opacity: 0.4;
  margin-left: 0;
}

.properties-search-items-wrapper {
  display: flex;
  align-content: center;
  min-width: -moz-max-content;
  min-width: max-content;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.properties-search-item {
  padding: 0 20px 0 20px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 10em;
  justify-content: flex-start;
}

.properties-search-item > div > .input-wrapper {
  padding-left: 0;
  padding-bottom: 0;
}

.properties-search-item .input-wrapper input[type=checkbox] + label,
.properties-search-item .input-wrapper input[type=radio] + label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.properties-search-item.btn-inside {
  flex: 0;
  text-align: right;
  align-self: center;
}

.properties-search-item > .button {
  margin: 0;
}

.properties-search-item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: #ddd;
}

.properties-search-item:nth-last-child(2):after,
.properties-search-item:last-child:after {
  display: none;
}

.properties-search-item > .search-input {
  padding-left: 0;
  padding-right: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #1A1A1A;
  text-decoration: none;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
}

.properties-search-item > .search-input > .comboTreeWrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.properties-search-item > .search-input .comboTreeArrowBtn {
  display: none;
}

.properties-search-item > .search-input > .comboTreeWrapper input,
.properties-search-item > .search-input > .comboTreeWrapper .comboTreeInputWrapper {
  height: 100%;
  cursor: pointer;
  background: transparent;
}

.comboTreeDropDownContainer .comboTreeItemTitle input {
  position: absolute;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle.comboTreeItemHover {
  background-color: #eee;
  color: #5c5e60;
}

.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input {
  padding-left: 0;
  padding-right: 40px;
  border: 0;
}

.comboTreeDropDownContainer li span.comboTreeItemTitle input[type=checkbox] + label::before {
  border: 1px solid #1A1A1A;
  width: 18px;
  max-width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  font-size: 14px;
}

.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1A1A1A;
  opacity: 1;
}
.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input::-moz-placeholder {
  /* Firefox 19+ */
  color: #1A1A1A;
  opacity: 1;
}
.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input:-ms-input-placeholder {
  /* IE 10+ */
  color: #1A1A1A;
  opacity: 1;
}
.properties-search-item > .search-input > .comboTreeWrapper > .comboTreeInputWrapper > input:-moz-placeholder {
  /* Firefox 18- */
  color: #1A1A1A;
  opacity: 1;
}

.properties-search-item > .search-input:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("graphics/svg/select-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.properties-search-item > .search-input:hover {
  text-decoration: none;
}

.properties-search-item > .filter-search-window .input-wrapper {
  padding-bottom: 10px;
}

.properties-search-item > .filter-search-window .input-wrapper input {
  height: 40px;
  font-size: 0.8rem;
}

.properties-search-item label {
  font-size: 0.8rem;
}

.properties-search-item > .filter-search-window {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px;
  display: none;
  border: 1px solid #ddd;
  width: calc(100% - 10px);
  box-sizing: border-box;
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
}

.properties-search-item > .filter-search-window.show-me {
  display: block;
}

.properties-search-area .additional-filers {
  padding: 10px 0;
}

.comboTreeInputBox {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comboTreeDropDownContainer li {
  margin-left: 0;
  padding-left: 0;
  font-size: 0.9rem;
}

.comboTreeDropDownContainer li.ComboTreeItemChlid {
  padding-left: 10px;
}

.map-search {
  position: absolute;
  left: 50%;
  margin-left: -640px;
  bottom: auto;
  top: 50px;
  width: 100%;
  min-width: 180px;
  max-width: 240px;
  background: #fff;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.map-search h3:first-child {
  margin-top: 0;
  margin-bottom: 0;
}

.map-search .search-box-section {
  border-bottom: 0 solid rgb(221, 221, 221);
  padding: 10px 0;
}

.map-search .search-box-section:last-child {
  border: 0;
}

.map-search .checkboxes-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 0;
  margin-left: -15px;
  margin-right: -15px;
}

.map-search .checkboxes-wrapper > div {
  width: 100%;
  padding: 6px 15px;
  box-sizing: border-box;
}

.map-search .checkboxes-wrapper .input-wrapper {
  padding-bottom: 0;
}

.map-search .checkboxes-wrapper .input-wrapper input[type=checkbox] + label,
.map-search .checkboxes-wrapper .input-wrapper input[type=radio] + label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  color: #1A1A1A;
}

.map-search .button.search-btn {
  margin-bottom: 0;
  margin-top: 10px;
}

.page-numbers {
  padding: 55px 0 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-numbers a,
.page-numbers span {
  display: block;
  margin: 0 20px;
  font-size: 20px;
}

.page-numbers span {
  font-size: 13px;
  min-width: 40px;
  text-align: center;
}

.page-numbers a.disabled,
.page-numbers a.disabled:hover {
  cursor: default;
  opacity: 0.6;
  filter: grayscale(100%);
}

.page-numbers a i {
  font-size: 26px;
}

.page-numbers a.page-prev,
.page-numbers a.page-next {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f1f1;
  background-image: url(graphics/arrow-slick-left.png);
  background-position: center;
  background-repeat: no-repeat;
}

.page-numbers a.page-next {
  background-image: url(graphics/arrow-slick-right.png);
}

.progress-wrapper {
  width: 180px;
  position: relative;
  height: 2px;
  background: #ddd;
}

.progress-wrapper .progress {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-left: -4px;
  margin-top: -4px;
  background: #E50649;
}

.progress-number > span {
  white-space: nowrap;
}

.page-numbers .progress-number {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #999;
}

.control-apartment-table {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.table_filters,
.table_sorting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  border: 1px solid rgba(42, 42, 42, 0.1019607843);
  border-radius: 10px;
  padding: 15px;
}
.table_filters .view-switch,
.table_sorting .view-switch {
  margin-left: 12px;
}
.table_filters p,
.table_sorting p {
  margin: 0 !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
}
.table_filters .filters_group_wrapper,
.table_filters .sorting_group_wrapper,
.table_sorting .filters_group_wrapper,
.table_sorting .sorting_group_wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.table_filters .filter_dropdown_wrapper,
.table_filters .sort_dropdown_wrapper,
.table_sorting .filter_dropdown_wrapper,
.table_sorting .sort_dropdown_wrapper {
  position: relative;
}
.table_filters .filter_dropdown_wrapper.active .filter_modal, .table_filters .filter_dropdown_wrapper.active .sort_modal,
.table_filters .sort_dropdown_wrapper.active .filter_modal,
.table_filters .sort_dropdown_wrapper.active .sort_modal,
.table_sorting .filter_dropdown_wrapper.active .filter_modal,
.table_sorting .filter_dropdown_wrapper.active .sort_modal,
.table_sorting .sort_dropdown_wrapper.active .filter_modal,
.table_sorting .sort_dropdown_wrapper.active .sort_modal {
  display: block;
}
.table_filters .filter_dropdown_wrapper.active .filter_arrow, .table_filters .filter_dropdown_wrapper.active .sort_arrow,
.table_filters .sort_dropdown_wrapper.active .filter_arrow,
.table_filters .sort_dropdown_wrapper.active .sort_arrow,
.table_sorting .filter_dropdown_wrapper.active .filter_arrow,
.table_sorting .filter_dropdown_wrapper.active .sort_arrow,
.table_sorting .sort_dropdown_wrapper.active .filter_arrow,
.table_sorting .sort_dropdown_wrapper.active .sort_arrow {
  transform: rotate(270deg);
}
.table_filters .filter_dropdown_wrapper.sort .filter_arrow,
.table_filters .sort_dropdown_wrapper.sort .filter_arrow,
.table_sorting .filter_dropdown_wrapper.sort .filter_arrow,
.table_sorting .sort_dropdown_wrapper.sort .filter_arrow {
  transform: rotate(180deg);
}
.table_filters .filter_dropdown_wrapper.sort.active .filter_arrow,
.table_filters .sort_dropdown_wrapper.sort.active .filter_arrow,
.table_sorting .filter_dropdown_wrapper.sort.active .filter_arrow,
.table_sorting .sort_dropdown_wrapper.sort.active .filter_arrow {
  transform: rotate(0deg);
}
.table_filters .filter_button,
.table_filters .sort_button,
.table_sorting .filter_button,
.table_sorting .sort_button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 6px 12px;
  padding-right: 2px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  background: white;
  white-space: nowrap;
}
.table_filters .filter_button > div,
.table_filters .sort_button > div,
.table_sorting .filter_button > div,
.table_sorting .sort_button > div {
  display: flex;
  gap: 5px;
}
.table_filters .filter_button .filter_label,
.table_filters .filter_button .sort_label,
.table_filters .sort_button .filter_label,
.table_filters .sort_button .sort_label,
.table_sorting .filter_button .filter_label,
.table_sorting .filter_button .sort_label,
.table_sorting .sort_button .filter_label,
.table_sorting .sort_button .sort_label {
  color: #4d5155;
  font-weight: 400;
}
.table_filters .filter_button .filter_value,
.table_filters .filter_button .sort_value,
.table_filters .sort_button .filter_value,
.table_filters .sort_button .sort_value,
.table_sorting .filter_button .filter_value,
.table_sorting .filter_button .sort_value,
.table_sorting .sort_button .filter_value,
.table_sorting .sort_button .sort_value {
  font-weight: 500;
  color: #2a2a2a;
  font-size: 1rem;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table_filters .filter_button .filter_arrow,
.table_filters .filter_button .sort_arrow,
.table_filters .sort_button .filter_arrow,
.table_filters .sort_button .sort_arrow,
.table_sorting .filter_button .filter_arrow,
.table_sorting .filter_button .sort_arrow,
.table_sorting .sort_button .filter_arrow,
.table_sorting .sort_button .sort_arrow {
  width: 30px;
  height: 30px;
  background-image: url("graphics/svg/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
  transform: rotate(90deg);
}
.table_filters .filter_modal,
.table_filters .sort_modal,
.table_sorting .filter_modal,
.table_sorting .sort_modal {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px;
  z-index: 10;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
}
.table_filters .filter_modal input[type=checkbox],
.table_filters .sort_modal input[type=checkbox],
.table_sorting .filter_modal input[type=checkbox],
.table_sorting .sort_modal input[type=checkbox] {
  margin-right: 6px;
  position: inherit;
  clip: inherit;
}
.table_filters .filter_modal label,
.table_filters .sort_modal label,
.table_sorting .filter_modal label,
.table_sorting .sort_modal label {
  display: block;
  margin: 4px;
  padding: 4px 4px 4px 7px;
  cursor: pointer;
}
.table_filters .filter_modal label:hover,
.table_filters .sort_modal label:hover,
.table_sorting .filter_modal label:hover,
.table_sorting .sort_modal label:hover {
  background-color: #f1f1f1;
  border-radius: 5px;
  color: #000;
}

.button.magicFormSubmit {
  margin-right: 0;
  margin-bottom: 0;
}

.table_sorting p {
  color: #4d5155 !important;
  font-weight: 400 !important;
}
.table_sorting .sorting_group_wrapper {
  gap: 0;
}
.table_sorting .sort_dropdown_wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 26px;
  background-color: rgba(42, 42, 42, 0.1019607843);
}
.table_sorting .sort_dropdown_wrapper:nth-child(2):after {
  display: none;
}
.table_sorting {
  border: 0;
  padding: 0;
}
.table_sorting .sort_button {
  border: 0;
}

.table_sorting .sort_button {
  padding: 6px 0px 6px 20px;
}

.sorting_group_wrapper .sort_dropdown_wrapper:first-child {
  padding-right: 10px;
}

.apartments-wrapper {
  overflow-y: auto;
}

table.transparent-table {
  max-width: 100%;
  border-left: none;
  border-top: none;
}

.apartments-wrapper tr td.ico {
  vertical-align: middle;
  text-align: center;
  width: 40px;
}

.apartments-wrapper tr td.ico img {
  width: 24px;
  margin: 0 auto;
}

table.transparent-table tr td,
table.transparent-table tr th {
  padding: 12px 10px;
  text-align: center;
  border-right: none;
  border-bottom: none;
  background: transparent;
  color: #4d5155;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}

table.transparent-table tr td:first-child,
table.transparent-table tr th:first-child {
  padding: 11px 21px;
}

table.transparent-table tr td {
  border-bottom: 1px solid rgb(226, 226, 226);
}

table.transparent-table tr th {
  background: transparent;
  color: #4d5155;
  font-size: 1rem;
  font-weight: 400;
}

table.transparent-table a:hover {
  color: #E50649;
}

table.transparent-table a.disabled {
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}

table.transparent-table-vertical {
  max-width: initial;
  border-left: none;
  border-top: none;
}

table.transparent-table-vertical tr td,
table.transparent-table-vertical tr th {
  padding: 6px;
  text-align: center;
  border-right: none;
  border-bottom: none;
  background: transparent;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
}

table.transparent-table-vertical tr td {
  border-bottom: 1px solid rgb(226, 226, 226);
}

table.transparent-table-vertical tr th {
  background: transparent;
  color: #888888;
  font-size: 1rem;
  font-weight: 500;
}

table.transparent-table-vertical a {
  color: #000000;
  text-decoration: underline;
}

table.transparent-table-vertical a:hover {
  color: #E50649;
}

table.transparent-table tr:hover td {
  background: #f9f9f9 !important;
}

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

table td a {
  font-weight: 500;
  color: #2a2a2a;
  display: flex;
  align-items: center;
}

table.transparent-table th.right,
table.transparent-table td.right {
  text-align: right;
}

table.transparent-table th.center,
table.transparent-table td.center {
  text-align: center;
}

.status-label {
  padding: 10px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 5px;
  font-weight: 400;
  font-size: 0.9rem;
}
.status-label .circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-label.rent {
  background-color: rgba(121, 23, 166, 0.08);
  color: #7917a6;
}

.status-label.available {
  background-color: rgba(218, 244, 235, 0.5019607843);
  color: #346352;
}

.status-label.reserved {
  background-color: #f3f5f6;
  color: #4d5155;
}

.status-label.sold {
  background-color: rgba(228, 0, 15, 0.0588235294);
  color: #e4000f;
}

table .price-wrapper {
  position: relative;
}

table .price {
  white-space: nowrap;
}

table tr.promo td {
  background: #f9f9f9 !important;
}

table tr.promo .price-wrapper {
  bottom: -8px;
}

table tr.promo .price {
  color: #055b1d;
}

table tr.promo td {
  position: relative;
}

table tr.promo td .promo-label {
  font-size: 11px;
  background-color: #d44040;
  padding: 4px 5px;
  position: absolute;
  top: 17px;
  left: -19px;
  line-height: 1;
  color: #fff;
  transform: rotate(-90deg);
  transform-origin: center;
  width: 53px;
  box-sizing: border-box;
}

table .old_price {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0.8;
  line-height: 1;
}

table .old_price:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, 0);
  height: 1px;
  background: #1A1A1A;
}

.apartment-section {
  min-width: 450px;
}

.apartment-section .specyfication-table-wrapper .key {
  text-align: left;
  font-weight: normal;
  padding-left: 0;
}

.apartment-section .specyfication-table-wrapper .value {
  text-align: right;
  padding-right: 0;
}

.apartment-section .specyfication-table-wrapper {
  margin-top: 40px;
}
.apartment-section .specyfication-table-wrapper .status-label {
  margin-left: auto;
}

.apartment-section > .controls {
  padding-top: 10px;
  text-align: right;
}

.table-section {
  padding-bottom: 80px;
  position: relative;
}

.pagination-wrapper {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  left: 0;
  bottom: 20px;
  height: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin-bottom: 0;
}
.pagination li {
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0;
  overflow: hidden;
}
.pagination li a,
.pagination li span {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  color: #4d5155;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li span.active {
  color: #2a2a2a;
  background: #f9fafb;
  padding: 5px 15px;
}
.pagination li a:hover {
  color: #2a2a2a;
  background: #f9fafb;
}
.pagination .pagination-arrow {
  border: 1px solid rgba(42, 42, 42, 0.2);
  margin-right: 10px;
}
.pagination .pagination-arrow img {
  width: auto;
  height: 30px;
}
.pagination .pagination-arrow.left {
  margin-left: 10px;
  margin-right: 0;
  transform: rotate(180deg);
}
.pagination .pagination-arrow.disabled {
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.apartments-wrapper thead,
.apartments-wrapper thead tr,
.apartments-wrapper thead tr th {
  height: 50px;
  box-sizing: border-box;
}

.apartments-wrapper thead tr th {
  padding: 0 10px;
  line-height: normal;
  vertical-align: middle;
  text-align: left;
}

.apartments-wrapper tbody tr td {
  padding: 15px 10px;
  line-height: normal;
  vertical-align: middle;
  text-align: left;
}

tr th.last::before {
  display: none;
}

tr th.last,
td.last {
  text-align: center !important;
  width: 110px;
}

table .last a {
  display: flex;
  align-items: center;
  width: -moz-min-content;
  width: min-content;
}
table .last a svg,
table .last a img {
  width: auto;
  height: 30px;
  min-width: 30px;
}
table .last a:hover {
  color: #E50649;
}
table .last a:hover .st0 {
  stroke: #E50649;
}

table .file a {
  min-width: 18px;
  justify-content: center;
}
table .file a:hover svg path {
  stroke: #E50649;
}

table .last,
table .file {
  position: relative;
}

table .last::before,
table .file::before {
  content: "";
  width: 1px;
  background-color: rgba(42, 42, 42, 0.1019607843);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
}

#page-developer_apartment .custom-gallery-grid .grid-item a.image {
  background-size: cover;
  background-repeat: no-repeat;
}
#page-developer_apartment .custom-gallery-grid .grid-item {
  background-color: white;
  border: 1px solid rgba(42, 42, 42, 0.1019607843);
}

#priceHistoryWindow h3 {
  font-size: 18px;
  font-weight: 500;
}
#priceHistoryWindow table tr th,
#priceHistoryWindow table tr td {
  color: #000;
  border-radius: 0;
  line-height: normal;
  text-align: left;
  width: 50%;
}

.apartment-lead-content .splide__arrow {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid rgba(42, 42, 42, 0.2);
}
.apartment-lead-content .splide__arrow svg {
  width: 12px;
  height: auto;
}
.apartment-lead-content .splide__arrow--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.apartment-lead-content .splide__arrow--next {
  right: 0;
  transform: translate(50%, -50%);
}

.price_history_label {
  background-color: rgba(82, 20, 23, 0.0509803922);
  color: rgba(82, 20, 23, 0.6666666667);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 5px;
  margin-left: 10px;
}

.additional_costs .costs_wrapper .cost_wrapper {
  border-bottom: 1px solid rgba(42, 42, 42, 0.1019607843);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.additional_costs .costs_wrapper .cost_wrapper .foot {
  display: inline-flex;
  gap: 10px;
}
.additional_costs .costs_wrapper .cost_wrapper .cost {
  min-width: 80px;
  text-align: right;
  color: #2a2a2a;
  font-weight: 500;
}
.additional_costs .costs_wrapper .cost_wrapper .status {
  background-color: #f3f5f6;
  color: #4d5155;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 5px;
  text-box-trim: trim-both;
}
.additional_costs .costs_wrapper .cost_wrapper .status.red {
  color: #e4000f;
  background-color: rgba(228, 0, 15, 0.0588235294);
}
.additional_costs .costs_wrapper .cost_wrapper:first-child {
  padding-top: 0;
}
.additional_costs .price_history_label {
  display: block;
  text-align: right;
  margin: 30px 0 30px auto;
  width: -moz-max-content;
  width: max-content;
}

.apartment-section {
  flex: 1;
}

.apartment-lead-content .uk-sticky-placeholder {
  flex: 2;
}

.apartment-lead-content .apartment-image-section {
  border: 1px solid rgba(42, 42, 42, 0.1019607843);
  border-radius: 10px;
  box-sizing: border-box;
}
.apartment-lead-content .apartment-image-section img {
  border-radius: 10px;
}

html, body {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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: 2.5rem;
  font-weight: 500;
}

h2 {
  font-size: 2.25rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5em;
  line-height: 1.4;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2em;
}

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

#START h1 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

#START h2 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 3rem;
  font-weight: 500;
}

#START p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

span.subtitle {
  color: #1A1A1A;
}

a {
  text-decoration: none;
}

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

.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%;
}

.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;
}

.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 h2 {
  text-align: center;
}

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

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

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

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

.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: #1A1A1A;
  font-family: Inter, tahoma, arial, sans-serif;
}

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

.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;
}

.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-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;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  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;
}

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

#SYSTEM-FOOT .footer-section {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#SYSTEM-FOOT .footer-section .links ul li {
  margin-bottom: 20px;
}

.right-footer-section {
  display: flex;
  gap: 80px;
}

#SYSTEM-FOOT .footer-section a,
#SYSTEM-FOOT .footer-section div,
#SYSTEM-FOOT .footer-section li,
#SYSTEM-FOOT .footer-section span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

#SYSTEM-FOOT .footer-section a:hover,
#SYSTEM-FOOT .footer-section span.phone-txt:hover,
#SYSTEM-FOOT .footer-section li:hover {
  color: white;
}

#SYSTEM-FOOT .footer-section .links ul li {
  margin-bottom: 10px;
}

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

.footer-section .contact_data {
  display: flex;
  gap: 80px;
}
.footer-section .contact_data .image-wrapper {
  border-radius: 0;
  position: relative;
}
.footer-section .contact_data .image-wrapper img {
  max-height: 50px;
}

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

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

.social-links .social-icon img {
  width: 100%;
  height: 100%;
}

.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: " ⠴";
  }
}
.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;
}

.contact-box-form-window-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}

.contact-data-form-window-section .buttons > div {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 24px;
}
.contact-data-form-window-section .buttons > div:last-child {
  margin-bottom: 0;
}

.img_links {
  gap: 100px;
  display: flex;
  align-items: center;
}
.img_links .right {
  text-align: left;
  width: 100%;
  max-width: 700px;
}
.img_links .right .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.img_links .right p {
  margin-bottom: 2em;
}
.img_links .right .link {
  display: block;
  padding: 25px 0;
  border-top: 1px solid rgba(42, 42, 42, 0.1019607843);
}
.img_links .right .link h4 {
  margin: 0;
  font-weight: 500;
}
.img_links .right .link:last-of-type {
  border-bottom: 1px solid rgba(42, 42, 42, 0.1019607843);
}

.start_slider .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.start_slider .header h2 {
  margin-bottom: 0 !important;
}
.start_slider .splide__arrows {
  display: flex;
  gap: 12px;
  position: static;
}
.start_slider .splide__arrow {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border: 1px solid #1a1a1a;
  position: relative;
  transform: none;
  left: auto;
  right: auto;
}
.start_slider .splide__arrow--prev img {
  transform: rotate(180deg);
}/*# sourceMappingURL=theme.css.map */