@charset "UTF-8";
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(./../../fonts/Satoshi-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(./../../fonts/Satoshi-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(./../../fonts/Satoshi-Bold.woff2) format("woff2");
}
/*-- reset --*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select:focus,
textarea:focus {
  outline: none;
}

select:active,
textarea:active {
  outline: none;
}

input[type=submit],
button {
  cursor: pointer;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

a:active {
  outline: none;
  outline-style: none;
}

a:focus {
  outline: none;
  outline-style: none;
}

a:visited {
  outline: none;
  outline-style: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

body {
  overflow-x: clip;
}

/*-- /reset --*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
  color: #202b37;
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.tooltip {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("./../../images/project_cart/project-cart-tooltip.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  max-width: 16px !important;
  min-width: 16px !important;
}
.tooltip.gray {
  background-image: url("./../../images/project_parameters/project-parameters-tooltip.svg");
}
.tooltip.white {
  background-image: url("./../../images/project_parameters/project-parameters-tooltip-white.svg");
}
.tooltip .tooltip-content {
  display: none;
}
.tooltip:hover .tooltip-content {
  position: absolute;
  background: #637083;
  width: 265px;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  color: #f9fafb !important;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23px;
  font-size: 12px !important;
  font-weight: 400 !important;
  z-index: 1;
}
.tooltip:hover .tooltip-content:after {
  width: 0;
  height: 0;
  border-left: 10px solid rgba(255, 255, 255, 0);
  border-right: 10px solid rgba(255, 255, 255, 0);
  border-top: 10px solid #637083;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.tooltip-no-icon {
  position: relative;
}
.tooltip-no-icon:hover .tooltip-content {
  position: absolute;
  background: #637083;
  width: 265px;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  color: #f9fafb !important;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23px;
  white-space: pre-line;
  font-size: 12px !important;
  font-weight: 400 !important;
}
.tooltip-no-icon:hover .tooltip-content:after {
  width: 0;
  height: 0;
  border-left: 10px solid rgba(255, 255, 255, 0);
  border-right: 10px solid rgba(255, 255, 255, 0);
  border-top: 10px solid #637083;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.tooltip-content.parameters {
  pointer-events: auto;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 265px;
  padding: 12px;
  border-radius: 8px;
  background-color: #637083;
  color: #f9fafb !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}
.tooltip-content.parameters::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: inherit;
  transform: rotate(45deg);
}
.tooltip-content.parameters.is-top::after {
  bottom: -5px;
  left: var(--arrow-x, 50%);
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-content.parameters.is-bottom::after {
  top: -5px;
  left: var(--arrow-x, 50%);
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-content.parameters.is-right::after {
  left: -5px;
  top: var(--arrow-y, 50%);
  transform: translateY(-50%) rotate(45deg);
}
.tooltip-content.parameters.is-left::after {
  right: -5px;
  top: var(--arrow-y, 50%);
  transform: translateY(-50%) rotate(45deg);
}

.version {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.version .version-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.28px;
  color: #344051;
}
.version .version-checkbox input[type=checkbox] {
  visibility: hidden;
  display: none;
}
.version .version-checkbox *,
.version .version-checkbox::after,
.version .version-checkbox::before {
  box-sizing: border-box;
}
.version .version-checkbox {
  display: flex;
  height: 20px;
  margin-right: 8px;
}
.version .version-checkbox.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.version .version-checkbox .switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.version .version-checkbox .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.version .version-checkbox .switch input:checked + .slider {
  background-color: #cf4008;
  border: 1px solid #cf4008;
}
.version .version-checkbox .switch input:checked + .slider::before {
  transform: translateX(16px);
  background-color: #ffffff;
}
.version .version-checkbox .switch input:focus + .slider {
  box-shadow: 0 0 1px #cf4008;
}
.version .version-checkbox .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ced2da;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.4s;
  border-radius: 30px;
}
.version .version-checkbox .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 20px;
  left: 1px;
  bottom: 1px;
  background-color: #ffffff;
  transition: 0.4s;
}

.striked {
  text-decoration: line-through;
}

.image-loupe {
  background: rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 32px;
  background-image: url("./../../images/accordion/image-loup.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  border-radius: 48px;
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  padding: 4px 12px;
  background-position: center;
  cursor: pointer;
}

.mirrorSpanCard {
  display: none;
}
.mirrorSpanCard.active {
  display: inline-block;
}

.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.custom-checkbox--text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #ced2da;
}
.custom-checkbox--text span {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  color: #97a1af;
  margin-left: 4px;
}
.custom-checkbox--text sup {
  font-size: 9px;
}
.custom-checkbox--input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox--input:disabled ~ .custom-checkbox--checkmark, .custom-checkbox--input:disabled ~ .custom-checkbox--text {
  filter: brightness(0.7);
  -webkit-filter: brightness(0.7);
  pointer-events: none;
}
.custom-checkbox--input:checked ~ .custom-checkbox--checkmark {
  background-color: #cf4008 !important;
  border: 1px solid #cf4008 !important;
}
.custom-checkbox--input:checked ~ .custom-checkbox--checkmark::after {
  display: block;
}
.custom-checkbox--checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #e4e7ec;
  border-radius: 8px;
}
.custom-checkbox--checkmark::after {
  content: "";
  position: absolute;
  display: none;
  width: 3px;
  height: 6px;
  left: 7px;
  top: 4px;
  border: solid #ffffff;
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

sup {
  vertical-align: super;
  font-size: 9px;
  line-height: normal;
}

.link-with-arrow {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #202b37;
  flex-direction: row;
}
.link-with-arrow:after {
  background-image: url("./../../images/documentation_section/doc-arrow-right.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
}
.link-with-arrow-white:after {
  background-image: url("./../../images/documentation_section/link-with-arrow-white.svg");
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 17px;
  height: 24px;
  display: inline-block;
}

.container {
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.container.fluid {
  padding: 0;
  max-width: 100%;
}

.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.input-file > span {
  color: #e4e7ec;
  font-size: 14px;
  font-weight: 500;
}
.input-file .custom-file-label {
  background: #344051;
  border: 1px solid #ced2da;
  padding: 10px 20px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 500 !important;
  font-size: 14px !important;
  border-radius: 48px;
  display: inline-block !important;
  color: #e4e7ec !important;
  margin-top: 8px;
}
.input-file input#attachments {
  position: absolute;
  transform: translateX(-1000%);
  opacity: 0;
}
.input-file #attachments-message {
  color: #637083;
  font-size: 14px;
  font-weight: 500;
}

#callpage .cp-button-section.cp-callpage__button {
  z-index: 99 !important;
}

.loader {
  width: 187px;
  height: 187px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: inline-block;
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 11px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

.loader-sm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: inline-block;
  margin-right: 8px;
}
.loader-sm::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
@keyframes fadeIn {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.popup-video-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.popup-video-container.visible {
  display: block;
}
.popup-video-container .popup-video {
  width: 100%;
  height: 100%;
}
.popup-video-container .popup-video .popup-close-button {
  font-size: 0;
  width: 64px;
  min-width: 64px !important;
  height: 64px;
  background-color: #414e62;
  border-radius: 100%;
  cursor: pointer;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-close-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 24px;
  top: 24px;
}
.popup-video-container .popup-video #video-player {
  width: 100%;
  height: 100%;
}
.popup-video-container .popup-video #video-player .vjs-big-play-button {
  width: 56px;
  height: 56px;
  border-radius: 130px;
  background-color: #141c24;
  border: none;
}
.popup-video-container .popup-video #video-player .vjs-play-control,
.popup-video-container .popup-video #video-player .vjs-volume-panel,
.popup-video-container .popup-video #video-player .vjs-remaining-time,
.popup-video-container .popup-video #video-player .vjs-picture-in-picture-control,
.popup-video-container .popup-video #video-player .vjs-fullscreen-control {
  display: none;
}
.popup-video-container .popup-video #video-player .vjs-icon-placeholder::before {
  content: url("./../../images/project_video_player/project-video-player-play.svg");
  line-height: 1.6em;
}
.popup-video-container .popup-video #video-player .vjs-control-bar {
  background-color: transparent;
}
.popup-video-container .popup-video #video-player .vjs-load-progress {
  background-color: #141c24;
}
.popup-video-container .popup-video #video-player .vjs-progress-holder {
  background-color: #141c24;
  height: 5px;
  border-radius: 25px;
}
.popup-video-container .popup-video #video-player .vjs-progress-control {
  padding: 0 40px;
}
.popup-video-container .popup-video #video-player .vjs-play-progress {
  background-color: #dd460a;
  border-radius: 25px 0 0 25px;
}
.popup-video-container .popup-video #video-player .vjs-play-progress::before {
  line-height: 0.6em;
}

.gallery-videos {
  position: relative;
}
.gallery-videos .video-play {
  position: absolute;
  bottom: calc(50% - 28px);
  left: calc(50% - 28px);
  background-color: #141C24;
  width: 56px;
  height: 56px;
  border-radius: 130px;
  cursor: pointer;
}
.gallery-videos .video-play::before {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  height: 100%;
  content: url("./../../images/project_video_player/project-video-player-play.svg");
}

.projects-gallery {
  min-width: 100%;
  margin-bottom: 24px;
}
.projects-gallery .custom-slider__big-photo {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}
.projects-gallery .custom-slider__big-photo .video-play {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: #141c24;
  width: 56px;
  height: 56px;
  border-radius: 130px;
  cursor: pointer;
}
.projects-gallery .custom-slider__big-photo .video-play::before {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  height: 100%;
  content: url("./../../images/project_video_player/project-video-player-play.svg");
}
.projects-gallery .custom-slider__big-photo img {
  width: 100%;
  height: 520px;
  border-radius: 16px;
  object-fit: cover;
  object-position: left;
  user-select: none;
  cursor: pointer;
}
.projects-gallery .custom-slider__big-photo img.plans {
  width: auto;
  margin-left: 25%;
  margin-right: 25%;
}
.projects-gallery .custom-slider__big-photo img.cross_section {
  width: auto;
  margin-left: 25%;
  margin-right: 25%;
}
.projects-gallery .custom-slider__big-photo .info-bar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.projects-gallery .custom-slider__big-photo .info-bar > div {
  color: #141c24;
  font-weight: 500 !important;
  cursor: default;
}
.projects-gallery .custom-slider__big-photo .info-bar .promotion {
  display: flex;
  height: 26px;
  padding: 5px 5px 5px 8px;
  justify-content: center;
  align-items: center;
  width: max-content;
  border-radius: 25px;
  background-color: #ffb257;
  color: #141c24;
  margin-right: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}
.projects-gallery .custom-slider__big-photo .info-bar .promotion .discount {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  border-radius: 10px;
  padding: 2px 6px;
  background: #cf4008;
  margin-left: 4px;
}
.projects-gallery .custom-slider__big-photo .info-bar .new {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  background: #9fdfbf;
  width: 87px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
}
.projects-gallery .custom-slider__big-photo .info-bar .oze {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  width: 57px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
}
.projects-gallery .custom-slider__big-photo .info-bar .info-label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
  padding: 0 8px;
  cursor: default;
}
.projects-gallery .custom-slider__big-photo .info-bar .info-label a {
  color: #141c24;
  cursor: pointer;
}
.projects-gallery .custom-slider__big-photo .info-bar .hit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  width: 51px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
}
.projects-gallery .custom-slider__big-photo .icon-bar {
  display: inline-flex;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
}
.projects-gallery .custom-slider__big-photo .icon-bar .projects-similar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 32px;
  border-radius: 38px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.projects-gallery .custom-slider__big-photo .icon-bar .projects-similar p {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #ffffff;
  text-align: center;
}
.projects-gallery .custom-slider__big-photo .icon-bar .project-print {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-print.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-left: 8px;
}
.projects-gallery .custom-slider__big-photo .icon-bar .favorites {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-favourites.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-left: 8px;
}
.projects-gallery .custom-slider__big-photo .icon-bar .favorites.active {
  background-image: url("./../../images/project_gallery/project-gallery-favourites-active-state.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.projects-gallery .custom-slider__big-photo .icon-bar .project-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-compare.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-left: 8px;
}
.projects-gallery .custom-slider__big-photo .icon-bar .project-compare.active {
  background-color: #ffffff;
  background-image: url("./../../images/project_gallery/project-gallery-compare-active-state.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.projects-gallery .custom-slider__big-photo .gallery-bar {
  display: inline-flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  bottom: 17px;
  right: 12px;
  z-index: 0;
  border-radius: 48px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  width: 297px;
  height: 32px;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .version-text {
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 500 !important;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .gallery-bar__arrows {
  display: inline-flex;
  align-items: center;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .gallery-bar__arrows .custom-slider__arrow.custom_slider__arrow--left {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("./../../images/project_gallery/project-gallery-chevron-left.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .gallery-bar__arrows .custom-slider__arrow.custom_slider__arrow--right {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("./../../images/project_gallery/project-gallery-chevron-right.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .gallery-bar__arrows .counter-gallery {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #ffffff;
  margin: 0 4px;
  min-width: 25px;
  display: flex;
  justify-content: center;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .vertical-short-line {
  display: block;
  width: 1.5px;
  height: 12px;
  background-color: #e4e7ec;
}
.projects-gallery .custom-slider__big-photo .gallery-bar .zoom-in-gallery {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("./../../images/project_gallery/project-gallery-zoom.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.projects-gallery .thumbnails {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.projects-gallery .thumbnails img {
  width: 100%;
  height: 100px;
  margin: 0 2px;
  cursor: pointer;
  border-radius: 16px;
  object-fit: cover;
  user-select: none;
}
.projects-gallery .thumbnails img:last-child {
  width: auto;
  max-width: 100%;
}
.projects-gallery .thumbnails .thumbnail-wrapper {
  position: relative;
  width: 20%;
  height: 100px;
  margin: 0 6px;
  cursor: pointer;
  border-radius: 16px;
  object-fit: cover;
  user-select: none;
}
.projects-gallery .thumbnails .thumbnail-wrapper.active-thumbnail img {
  border: 2px solid #cf4008;
}
.projects-gallery .thumbnails .thumbnail-wrapper img {
  width: 100%;
}
.projects-gallery .thumbnails .video-play__placeholder {
  position: absolute;
  background: linear-gradient(#344054, #475467);
  width: 48px;
  height: 48px;
  border-radius: 130px;
  cursor: pointer;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.projects-gallery .thumbnails .video-play__placeholder::before {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  height: 100%;
  content: url("./../../images/project_video_player/project-video-player-play.svg");
}
.projects-gallery .thumbnails .custom-slider__arrow.custom_slider__arrow_small--left {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("./../../images/project_gallery/project-gallery-carousel-arrow-right.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  transform: rotate(180deg);
  background-color: #202B37;
  border-radius: 100%;
  margin-top: 30px;
  position: absolute;
  left: 8px;
  z-index: 10;
}
.projects-gallery .thumbnails .custom-slider__arrow.custom_slider__arrow_small--right {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("./../../images/project_gallery/project-gallery-carousel-arrow-right.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  background-color: #202B37;
  border-radius: 100%;
  margin-top: 30px;
  right: 8px;
  position: absolute;
}

.project-header__symbol {
  display: inline-flex;
  padding: 2px 12px;
  border-radius: 20px;
  background-color: #ffe0bc;
  height: max-content;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid #f7941e;
}
.project-header__symbol span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #414e62;
}
.project-header .project-header__title {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 32px;
}
.project-header .project-header__title span {
  display: none;
  color: #637083;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.project-header .project-header__title span.active {
  display: inline-block;
}
.project-header .project-header__title h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
}

.gallery-cart-parameters-container {
  display: flex;
  flex-direction: row;
}
.gallery-cart-parameters-container .left-gallery-container {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-right: 16px;
  max-width: 912px;
}
.gallery-cart-parameters-container .right-cart-parameters-container {
  display: flex;
  flex-direction: column;
  width: 30%;
  max-width: 449px;
}

#inside_1 {
  min-height: 207px;
  margin-bottom: 16px;
  margin-top: 24px;
}
#inside_1 iframe {
  max-width: 100%;
  border-radius: 16px;
}

.project-card {
  position: relative;
  background: #202b37;
  border-radius: 16px 0px 16px 16px;
  color: #ced2da;
  padding: 8px 16px;
  padding-bottom: 0;
  margin-bottom: 16px;
}
.project-card #project_cart__state__concept,
.project-card #project_cart__state__discontinued,
.project-card .project-card-header__price,
.project-card .project-card-header__info,
.project-card .project-card-header__omnibus {
  display: none;
}
.project-card .striked {
  text-decoration: line-through;
}
.project-card .benefits {
  width: 100%;
  color: #ffffff;
}
.project-card .benefits__more {
  border-top: 1px solid #ffffff;
}
.project-card .benefits__more-btn {
  margin: 8px auto 0;
  color: #ffffff;
}
.project-card .benefits div:not(#product-show-more-btn) {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.project-card .benefits div:not(#product-show-more-btn)::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  background: url("./../../images/project_cart/project-cart-arrow-right-light.svg") no-repeat center/contain;
}
.project-card .project-card-header {
  flex-direction: column;
}
.project-card .project-card-header__box {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.project-card .project-card-header__delivery {
  margin-top: 12px;
}
.project-card .project-card-header__delivery #project_cart__availability__message {
  display: flex;
  gap: 6px;
  align-items: center;
}
.project-card .project-card-header__delivery #project_cart__availability__message .tooltip {
  width: 20px !important;
}
.project-card .project-card-header__availability-days {
  display: flex;
  color: #ffffff;
  margin-top: 2px;
  gap: 6px;
  align-items: center;
}
.project-card .project-card-header__delivery-information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ced2da;
}
.project-card .project-card-header__delivery-information > span:first-child:not(.tooltip) {
  width: 100%;
  display: block;
}
.project-card .project-card-header__call {
  color: #ced2da;
}
.project-card .project-card-header__call .telephone-number {
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
}
.project-card .project-card-header__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #ced2da;
  margin-bottom: 8px;
}
.project-card .project-card-header__contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .project-card .project-card-header__contact-info {
    flex-direction: column;
  }
}
.project-card .project-card-header__contact-info .hours {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #97a1af;
  padding-left: 16px;
  padding-top: 2px;
}
.project-card .project-card-header__contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1100px) {
  .project-card .project-card-header__contact {
    margin-bottom: 16px;
  }
}
.project-card .project-card-header__link {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  text-decoration-line: underline;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  cursor: pointer;
  margin-top: 3px;
  text-underline-offset: 3px;
}
.project-card .project-card-header__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #344051;
  border-radius: 100%;
  margin-right: 12px;
}
.project-card .project-card-header__icon.calendar span::before {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  cursor: pointer;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("./../../images/project_cart/project-cart-calendar.svg");
}
.project-card .project-card-header__price {
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  color: #f7941e;
}
.project-card .project-card-header__price > span {
  margin-right: 16px;
  font-size: 24px;
}
.project-card .project-card-header__price.featured {
  font-size: 24px;
  font-weight: 700;
  line-height: 44px;
  white-space: nowrap;
  flex-direction: column;
}
@media (max-width: 1380px) {
  .project-card .project-card-header__price.featured {
    font-size: 31px;
    white-space: nowrap;
  }
}
.project-card .project-card-header__price.common {
  font-size: 24px;
  flex-direction: column;
  color: #ffffff;
}
.project-card .project-card-header__price.common > span {
  margin-bottom: 7px;
}
.project-card .project-card-header__price.common .project-card-header__price-wrapper {
  color: #ffffff;
}
.project-card .project-card-header__price.common .project-card-header__bubble {
  background-color: #414e62;
  color: #ffffff;
}
.project-card .project-card-header__price.common .project-card-header__bubble::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./../../images/project_cart/project-cart-alarm-white.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 6px;
  margin-top: 2px;
  content: "";
}
.project-card .project-card-header__price.common .project-card-header__bubble::after {
  width: 0;
  height: 0;
  border-top: 10px solid rgba(255, 255, 255, 0);
  border-bottom: 10px solid rgba(255, 255, 255, 0);
  border-right: 10px solid #414e62;
  content: "";
  position: absolute;
  left: 24px;
  top: -12px;
  transform: rotate(90deg);
}
.project-card .project-card-header__omnibus {
  margin: 4px 0 12px;
  font-size: 12px;
  font-weight: 500;
}
.project-card .project-card-header__omnibus > span {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ced2da;
}
.project-card .project-card-header__omnibus > span:first-child {
  margin-right: 1px;
  min-width: 50px;
}
.project-card .project-card-header__info {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 8px;
  margin-bottom: 16px;
  min-height: 27px;
}
.project-card .project-card-header__counter {
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  line-height: 120%;
  position: relative;
  min-width: 300px;
}
.project-card .project-card-header__price-wrapper {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  color: #141c24;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 4px;
  margin-bottom: 2px;
  white-space: nowrap;
  flex-wrap: wrap;
}
.project-card .project-card-header__bubble {
  background: #f7941e;
  border-radius: 8px;
  padding: 8px;
  position: relative;
  display: none;
  flex-direction: row;
  min-width: 215px;
  margin-bottom: 6px;
  align-items: center;
}
.project-card .project-card-header__bubble::after {
  width: 0;
  height: 0;
  border-top: 10px solid rgba(255, 255, 255, 0);
  border-bottom: 10px solid rgba(255, 255, 255, 0);
  border-right: 10px solid #f7941e;
  content: "";
  position: absolute;
  left: 24px;
  top: -12px;
  transform: rotate(90deg);
}
.project-card .project-card-header__bubble::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("./../../images/project_cart/project-cart-alarm.svg");
  background-size: 19px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 6px;
  margin-top: 2px;
  content: "";
}
.project-card .project-card-header__catalogue {
  display: flex;
  align-items: center;
}
.project-card .project-card-header__catalog-price {
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: #ffffff;
  margin-right: 29px;
}
.project-card .project-card-header__catalog-price.striked {
  font-size: 12px;
  line-height: 120%;
  color: #ced2da;
  margin-right: 6px;
}
.project-card .project-card-header__catalog-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  color: #ced2da;
}
.project-card .project-card-header__button {
  margin: 12px 0 16px;
}
.project-card .project-card-header__button button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cf4008;
  width: 100%;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 28px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
.project-card .project-card-header__button button::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/project_cart/project-cart-cart.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 8px;
}
.project-card .project-card-header__button button.waiting {
  position: relative;
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.project-card .project-card-header__button button.waiting::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 8px;
  left: calc(50% - 100px);
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("./../../images/filters/spinner-white.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  animation: spinner-rotate 2s infinite linear;
  z-index: 15;
}
.project-card .project-card-content {
  padding: 12px 0 16px 0;
}
.project-card .project-card-content__availability-days {
  display: flex;
  color: #ffffff;
  margin-top: 2px;
}
.project-card .project-card-content #project_cart__availability__message {
  display: flex;
  gap: 6px;
}
.project-card .project-card-content #project_cart__availability__message .tooltip {
  width: 20px !important;
}
.project-card .project-card-content__box {
  display: flex;
}
.project-card .project-card-content__product-information {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ced2da;
  flex-grow: 1;
}
.project-card .project-card-content__product-information > span:first-child:not(.tooltip) {
  width: 100%;
  display: block;
}
.project-card .project-card-content__info {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  font-size: 12px;
}
.project-card .project-card-content__call {
  color: #ced2da;
}
.project-card .project-card-content__call .telephone-number {
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
}
.project-card .project-card-content__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #ced2da;
  margin-bottom: 8px;
}
.project-card .project-card-content__contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1100px) {
  .project-card .project-card-content__contact-info {
    flex-direction: column;
  }
}
.project-card .project-card-content__contact-info .hours {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #97a1af;
  padding-left: 16px;
  padding-top: 2px;
}
.project-card .project-card-content__contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1100px) {
  .project-card .project-card-content__contact {
    margin-bottom: 16px;
  }
}
.project-card .project-card-content__link {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  text-decoration-line: underline;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  cursor: pointer;
  margin-top: 3px;
  text-underline-offset: 3px;
}
.project-card .project-card-content__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #344051;
  border-radius: 100%;
  margin-right: 12px;
}
.project-card .project-card-content__icon.phone span::before {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/project_cart/project-cart-phone.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-card .project-card-footer {
  margin-left: -16px;
  margin-right: -16px;
  background: #344051;
  color: #f9fafb;
  border-radius: 0 0 16px 16px;
  padding-bottom: 16px;
  display: flex;
  padding: 12px 24px;
  justify-content: space-between;
}
.project-card .project-card-footer a {
  text-decoration: underline;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ffffff;
  text-underline-offset: 3px;
}
.project-card .project-card-footer__credit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 12px;
  font-weight: 500;
}
.project-card .project-card-footer__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: #f7941e;
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-right: 12px;
}
.project-card .project-card-footer__icon.home {
  background-image: url("./../../images/project_cart/project-cart-home.svg");
  background-size: contain;
}
.project-card .project-card-footer__icon.money {
  background-image: url("./../../images/project_cart/project-cart-money.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.project-card .project-card-footer__box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.project-card .project-card-inner-state {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project-card .project-card-inner-state .conecept-desc {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
  padding: 12px 53px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 16px;
}
.project-card .project-card-inner-state .conecept-title {
  margin-bottom: 16px;
}
.project-card .project-card-inner-state .conecept-title p {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: #ffffff;
}
.project-card .project-card-inner-state .light-orange-btn {
  background: #f7941e;
  width: 100%;
  color: #141c24;
  padding: 10px 20px;
  border-radius: 28px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.benefits {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding-bottom: 16px;
}
.benefits__item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.benefits__item::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("./../../images/project_cart/project-cart-check-icon-orange.svg") no-repeat center/contain;
}
.benefits__item div {
  width: 100%;
}
.benefits__more-btn {
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-family: "Satoshi";
  font-weight: 500;
}

.card-tab-build {
  padding: 16px;
  padding-bottom: 0;
  background: #fbf1e5;
  border-radius: 16px 0 16px 16px;
  margin-bottom: 16px;
}
.card-tab-build .benefits {
  color: #410319;
}
.card-tab-build .benefits__more {
  border-top: 1px solid #410319;
}
.card-tab-build .benefits__more-btn {
  margin: 8px auto 16px;
  color: #410319;
  font-weight: 500;
}
.card-tab-build .benefits div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.card-tab-build .benefits div::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
  background: url("./../../images/project_cart/project-cart-arrow-right-dark.svg") no-repeat center/contain;
}
.card-tab-build .project-card-footer__credit span {
  font-weight: 500;
}
.card-tab-build .info-bar-header__symbol {
  color: #410319 !important;
  border: 1px solid #410319 !important;
  font-weight: 500;
}
.card-tab-build .info-bar-header {
  border-bottom: 0 !important;
}
.card-tab-build .info-bar-header h2 {
  color: #410319 !important;
}
.card-tab-build .project-card__mirror {
  color: #410319 !important;
}
.card-tab-build .card-tab-build-header {
  margin-bottom: 16px;
}
.card-tab-build .card-tab-build-header__symbol {
  margin-bottom: 16px;
  border: 1px solid #410319;
  border-radius: 16px;
  padding: 1px 4px;
}
.card-tab-build .card-tab-build-header span {
  font-size: 12px;
  font-weight: 500;
  margin-right: 3px;
}
.card-tab-build .card-tab-build-waiting {
  font-size: 12px;
  text-align: center;
  margin: 8px 0;
  font-weight: 500;
}
.card-tab-build .card-tab-build-info {
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
}
.card-tab-build .card-tab-build-info__more a {
  font-weight: 700;
  text-decoration: underline;
  margin-top: 16px;
  font-size: 12px;
  cursor: pointer;
  color: #410319;
}
.card-tab-build .card-tab-build-info p {
  font-size: 12px;
  font-weight: 500;
}
.card-tab-build .card-tab-build-button {
  margin-bottom: 12px;
}
.card-tab-build .card-tab-build-button button {
  background: #cf4008;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  height: 44px;
  width: 100%;
  border: 0;
}
.card-tab-build .project-card-content {
  padding: 12px 0 16px 0;
  padding-bottom: 0;
  padding-top: 0;
}
.card-tab-build .project-card-content__box {
  display: flex;
}
.card-tab-build .project-card-content__info {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  font-size: 12px;
}
.card-tab-build .project-card-content__call {
  color: #ced2da;
}
.card-tab-build .project-card-content__call .telephone-number {
  font-weight: 700;
  line-height: 120%;
  color: #410319;
}
.card-tab-build .project-card-content__call__title {
  color: #410319;
}
.card-tab-build .project-card-content__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #ced2da;
  margin-bottom: 8px;
}
.card-tab-build .project-card-content__contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1100px) {
  .card-tab-build .project-card-content__contact-info {
    flex-direction: column;
  }
}
.card-tab-build .project-card-content__contact-info .hours {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: #410319;
  padding-left: 16px;
  padding-top: 2px;
}
.card-tab-build .project-card-content__contact {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1100px) {
  .card-tab-build .project-card-content__contact {
    margin-bottom: 16px;
  }
}
.card-tab-build .project-card-content__link {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  text-decoration-line: underline;
  color: #410319;
  display: flex;
  align-items: flex-end;
  justify-content: end;
  cursor: pointer;
  margin-top: 3px;
  text-underline-offset: 3px;
}
.card-tab-build .project-card-content__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 100%;
  margin-right: 12px;
  background-color: #e7d8cd;
}
.card-tab-build .project-card-content__icon.phone span::before {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/project_cart/project-cart-phone-brown.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.card-tab-build .project-card-footer {
  margin-left: -16px;
  margin-right: -16px;
  background: #e4e7ec;
  color: #141c24;
  border-radius: 0 0 16px 16px;
  padding-bottom: 16px;
  display: flex;
  padding: 12px 24px;
  justify-content: space-between;
}
.card-tab-build .project-card-footer a {
  text-decoration: underline;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #141c24;
  text-underline-offset: 3px;
}
.card-tab-build .project-card-footer__credit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 12px;
}
.card-tab-build .project-card-footer__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: #f7941e;
  width: 32px;
  min-width: 32px;
  height: 32px;
  margin-right: 12px;
}
.card-tab-build .project-card-footer__icon.home {
  background-image: url("./../../images/project_cart/project-cart-home.svg");
  background-size: contain;
}
.card-tab-build .project-card-footer__icon.money {
  background-image: url("./../../images/project_cart/project-cart-money.svg");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.card-tab-build .project-card-footer__box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.project-card-tabs {
  display: flex;
  justify-content: flex-end;
  z-index: 100;
  gap: 4px;
  font-weight: 500;
}
.project-card-tabs__build {
  background-color: #e4e7ec;
  border-radius: 16px 16px 0 0;
  color: #141c24;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  gap: 2px;
}
.project-card-tabs__build.active {
  background-color: #fbf1e5;
}
.project-card-tabs__build::before {
  display: block;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background-image: url("./../../images/project_cart/project-cart-home-black.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}
.project-card-tabs__project {
  border-radius: 16px 16px 0 0;
  font-size: 12px;
  color: #141c24;
  padding: 8px 12px;
  cursor: pointer;
  background: #e4e7ec;
  box-shadow: 0px -5px 6px -4px rgba(0, 0, 0, 0.2509803922) inset;
}
.project-card-tabs__project.active {
  background: #202b37;
  box-shadow: none;
  color: #ced2da;
}

.right-cart-parameters-container .tabs-wrapper {
  margin-top: -35px;
}
.right-cart-parameters-container .tabs-wrapper.no-tabs {
  margin-top: 0;
}
.right-cart-parameters-container .tabs-wrapper.no-tabs .project-card {
  border-radius: 16px;
}

.sections-container .project-card-footer {
  display: none;
}
.sections-container .card-tab-build {
  padding-bottom: 16px !important;
}

.project-parameters {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: auto;
  padding: 8px 16px 16px 16px;
  align-items: flex-start;
  background-color: #f2f4f7;
  border-radius: 16px;
}
@media (max-width: 1100px) {
  .project-parameters {
    flex-direction: column-reverse;
  }
}
.project-parameters.withTitle .project-parameters-content__line:first-child span {
  min-width: 100% !important;
  max-width: 100% !important;
}
.project-parameters sup {
  font-size: xx-small;
  vertical-align: super;
}
.project-parameters .tooltip-content {
  display: none;
  min-width: 240px !important;
  max-width: 240px !important;
  white-space: pre-line;
}
.project-parameters .project-parameters-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin-right: 17px;
}
.project-parameters .project-parameters-container .project-parameters-content {
  display: flex;
  flex-direction: column;
  padding-top: 9px;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
}
.project-parameters .project-parameters-container .project-parameters-content .expandable_container {
  display: none;
}
.project-parameters .project-parameters-container .project-parameters-content .expandable_container.active {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.project-parameters .project-parameters-container .project-parameters-content .expandable_container.active > span {
  font-weight: 600;
  text-align: right;
}
.project-parameters .project-parameters-container .project-parameters-content__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
  gap: 8px;
}
.project-parameters .project-parameters-container .project-parameters-content__items > span {
  padding: 4px 12px;
  border-radius: 38px;
  font-size: 12px;
  border: 1px solid #ced2da;
  color: #637083;
  display: inline-flex;
}
.project-parameters .project-parameters-container .project-parameters-content__line {
  padding: 8px 0;
  border-bottom: 1px solid #ced2da;
}
.project-parameters .project-parameters-container .project-parameters-content__line:first-child {
  color: #202b37;
  padding: 10px 0;
}
.project-parameters .project-parameters-container .project-parameters-content__line .order-pricing {
  color: #202b37;
  white-space: nowrap;
  font-weight: 700;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline {
  display: flex;
  justify-content: flex-start;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline span:first-child {
  color: #414e62;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .project-parameters .project-parameters-container .project-parameters-content__line-headline {
    flex-wrap: wrap;
  }
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline span + span.tooltip + span {
  font-weight: 700;
  min-width: 100px;
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}
@media (max-width: 1300px) {
  .project-parameters .project-parameters-container .project-parameters-content__line-headline span + span.tooltip + span {
    min-width: 65px;
  }
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline .expandable_icon {
  height: 20px;
  width: 20px;
  position: relative;
  margin-left: 10px !important;
  margin-top: -4px;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline .expandable_icon:after {
  background-image: url("./../../images/project_parameters/project-parameters-arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline .expandable_icon.active {
  transform: rotate(180deg);
  transition: all 1s ease;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline .tooltip {
  min-width: 60px;
  margin-right: 24px;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline > span:first-child {
  min-width: 146px;
  max-width: 146px;
}
.project-parameters .project-parameters-container .project-parameters-content__line-headline > span:last-child:not(.tooltip) {
  max-width: 160px;
  margin-left: auto;
  font-weight: 700;
  color: #202b37;
}
.project-parameters .project-parameters-container .project-parameters-content__more {
  display: flex;
  justify-content: flex-start;
  padding-top: 9px;
}
.project-parameters .project-parameters-container .project-parameters-content__more a {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #202b37;
  text-decoration: underline;
}
.project-parameters .project-parameters-sidebar {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .tooltip-content {
  left: 50% !important;
  transform: translate(-112%, -50%) !important;
  bottom: initial !important;
  top: 50% !important;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .tooltip-content:after {
  width: 0;
  transform: translate(-50%, -50%) rotate(272deg) !important;
  bottom: initial !important;
  right: 0 !important;
  top: 50% !important;
  left: 102% !important;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .project-parameters .project-parameters-sidebar .project-parameters-sidebar__box:last-of-type {
    margin-bottom: 16px;
  }
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  filter: invert(22%) sepia(35%) saturate(450%) hue-rotate(176deg) brightness(90%) contrast(88%);
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.floors {
  background-image: url("./../../images/project_parameters/project-parameters-floors.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.djp {
  background-image: url("./../../images/project_parameters/project-parameters-djp-image.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.backroom {
  background-image: url("./../../images/project_parameters/project-parameters-backroom.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.horses {
  background-image: url("./../../images/project_parameters/project-parameters-horses.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.boxes {
  background-image: url("./../../images/project_parameters/project-parameters-cows.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.bedrooms {
  background-image: url("./../../images/project_parameters/project-parameters-bedrooms.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.bathrooms {
  background-image: url("./../../images/project_parameters/project-parameters-bathrooms.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.garage_spots {
  background-image: url("./../../images/project_parameters/project-parameters-garage_spots.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-sidebar__icon.sun {
  background-image: url("./../../images/project_parameters/project-parameters-light-sun.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-parameters .project-parameters-sidebar .project-parameters-sidebar__box .project-parameters-quantity {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #141c24;
  margin: 0;
}

.parameters-teaser {
  display: flex;
  color: #414e62;
  margin-bottom: 40px;
  padding-bottom: 10px;
  overflow-x: auto;
}
.parameters-teaser__definition-list {
  display: flex;
  gap: 16px;
  margin-right: 16px;
  border-right: 1px solid #202b37;
  padding-right: 16px;
}
.parameters-teaser__content {
  display: flex;
  align-items: center;
  gap: 5px;
  max-height: 20px;
}
.parameters-teaser__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.parameters-teaser__name {
  display: flex;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}
.parameters-teaser__name .tooltip {
  white-space: normal;
}
.parameters-teaser__value {
  color: #202b37;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  max-width: 178px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.parameters-teaser__link {
  font-size: 14px;
  text-decoration: underline !important;
  text-underline-offset: 4px;
  color: #202b37 !important;
  font-weight: 700;
}
.parameters-teaser__unit {
  font-size: 14px;
}
.parameters-teaser__more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  font-size: 12px;
  background-color: transparent;
}
.parameters-teaser__more-label {
  font-family: "Satoshi";
  font-weight: 500;
  font-size: 12px;
  color: #414e62;
}
.parameters-teaser__more-icon {
  display: block;
  width: 20px;
  height: 20px;
  background: url("./../../images/project_new_parameters/project-new-parameters-more.svg") no-repeat;
}
.parameters-teaser__icon {
  display: none;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.parameters-teaser__item--surface .parameters-teaser__icon, .parameters-teaser__item--rooms .parameters-teaser__icon, .parameters-teaser__item--bathrooms .parameters-teaser__icon, .parameters-teaser__item--garage .parameters-teaser__icon, .parameters-teaser__item--plot .parameters-teaser__icon, .parameters-teaser__item--roof .parameters-teaser__icon, .parameters-teaser__item--barn-rooms .parameters-teaser__icon, .parameters-teaser__item--living-area .parameters-teaser__icon, .parameters-teaser__item--seasonality .parameters-teaser__icon, .parameters-teaser__item--floors .parameters-teaser__icon, .parameters-teaser__item--horse .parameters-teaser__icon {
  display: inline-block;
}
.parameters-teaser__item--surface .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-surface.svg");
}
.parameters-teaser__item--rooms .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-rooms.svg");
}
.parameters-teaser__item--bathrooms .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-bathroom.svg");
}
.parameters-teaser__item--garage .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-garage.svg");
}
.parameters-teaser__item--plot .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-plot.svg");
}
.parameters-teaser__item--roof .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-roof-angle.svg");
}
.parameters-teaser__item--barn-rooms .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-barn-rooms.svg");
}
.parameters-teaser__item--living-area .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-living-area.svg");
}
.parameters-teaser__item--seasonality .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-seasonality.svg");
}
.parameters-teaser__item--horse .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-horse.svg");
}
.parameters-teaser__item--floors .parameters-teaser__icon {
  background-image: url("./../../images/project_new_parameters/project-new-parameters-floors.svg");
}

.project-zoom-gallery-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #202b37;
  z-index: 99;
  padding-top: 12px;
}
.project-zoom-gallery-container.active {
  display: flex;
  color: white;
}
.project-zoom-gallery-container .project-zoom-gallery {
  width: 1440px;
  margin: 0 auto;
}
.project-zoom-gallery-container .project-zoom-gallery__icon-bar {
  display: flex;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 100px;
  margin-top: 16px;
  position: fixed;
  bottom: 32px;
  width: 1000px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 !important;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-right_container .version-text {
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-right_container .version {
  border-radius: 48px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  padding: 4px 16px 4px 12px;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-right_container .favorites {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-favourites.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin: 0 8px;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-right_container .favorites.active {
  background-image: url("./../../images/project_gallery/project-gallery-favourites-active-state.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-right_container .project-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-compare.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-left: 8px;
  margin-right: 8px;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-right_container .project-compare.active {
  background-color: #ffffff;
  background-image: url("./../../images/project_gallery/project-gallery-compare-active-state.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container {
  display: flex;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .counter {
  border-radius: 48px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-right: 12px;
  min-width: 50px;
  justify-content: center;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types {
  display: flex;
  border-radius: 48px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  padding: 4px 12px 4px 4px;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types > div:nth-last-child(2) {
  display: none;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types .vertical-short-line {
  height: 65%;
  width: 1px;
  background: #ced2da;
  align-self: center;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types .gallery-types__chevron--left {
  font-size: 0;
  width: 24px;
  height: 24px;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-types-chevron-left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types .gallery-types__chevron--right {
  font-size: 0;
  width: 24px;
  height: 24px;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-types-chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types__element {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  opacity: 0.7;
  margin: 0 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types__element.active, .project-zoom-gallery-container .project-zoom-gallery__bottom-left_container .gallery-types__element:hover {
  opacity: 1;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.slide-right {
  animation: slideRightAnimation 0.5s forwards;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.slide-left {
  animation: slideLeftAnimation 0.5s forwards;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 16px;
  transition: all 1s ease;
}
@media (max-width: 1300px) {
  .project-zoom-gallery-container .project-zoom-gallery .gallery-container {
    max-height: 400px;
  }
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper {
  position: relative;
  width: 1000px;
  margin: 0 20px;
  min-width: 1000px;
  background: #414e62;
  border-radius: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper .left {
  display: flex;
  justify-content: center;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper .zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #32363a;
  width: 32px;
  height: 32px;
  border-radius: 24px;
  justify-content: center;
  display: flex;
  align-items: center;
  background-image: url("./../../images/project_gallery/project-gallery-zoom.svg");
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table {
  display: flex;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .left {
  max-width: 660px !important;
  width: 660px !important;
  min-width: 660px !important;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .right {
  background: #344051;
  height: 70vh;
  max-height: 695px;
  margin-left: 16px;
  padding: 24px;
  border-radius: 16px;
  overflow-y: scroll;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .right::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 48px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .right::-webkit-scrollbar-track {
  border-radius: 48px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .right::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 0;
  background-color: #e4e7ec;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 70vh;
  max-height: 520px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body.plans__variant__Parter .plans-body__table-line, .project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body.plans__variant__Poddasze .plans-body__table-line {
  padding-left: 0;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body.plans__variant__Parter .plans-body__table-line:last-of-type, .project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body.plans__variant__Poddasze .plans-body__table-line:last-of-type {
  border-radius: 0 0 16px 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body.plans__variant__Parter .plans-body__table-line > span:first-child, .project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body.plans__variant__Poddasze .plans-body__table-line > span:first-child {
  border-right: 1px solid #637083;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  display: flex;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table {
  border: 0 !important;
  background-color: #344051;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-content {
  border: 1px solid #637083;
  border-top: 0;
  border-radius: 0 0 16px 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__name-wrapper {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0 8px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__name-wrapper span::first-letter {
  text-transform: capitalize;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__name-wrapper .netto {
  color: #97a1af;
  margin-left: 4px;
  display: flex;
  align-items: center;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-description {
  margin-bottom: 24px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-description p {
  color: #e4e7ec;
  font-size: 12px;
  font-weight: 400;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-header {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background: #637083;
  border-radius: 16px 16px 0 0;
  border: 1px solid #637083;
  border-bottom: 0;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-header > span {
  line-height: 36px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-header > span:last-child {
  border-left: 1px solid #637083;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__information {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #f2f4f7;
  margin-bottom: 24px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__information p {
  font-size: 14px;
  font-weight: 500;
  color: #637083;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__bottom-buttons {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__bottom-buttons .buttonw-with-arrow {
  max-width: 250px;
  margin-bottom: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__information {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #f2f4f7;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__information p {
  font-size: 14px;
  font-weight: 500;
  color: #637083;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__bottom-buttons {
  display: flex;
  justify-content: space-between;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table {
  border: 1px solid #637083;
  border-radius: 16px;
  margin-bottom: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table span {
  color: #e4e7ec;
  font-size: 12px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.36px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  padding-right: 12px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line:last-of-type {
  border-radius: 0 0 16px 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line > span:first-of-type {
  text-align: center;
  height: 36px;
  line-height: 36px;
  border-right: 1px solid #637083;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line > span:last-of-type {
  text-align: center;
  height: 36px;
  line-height: 36px;
  white-space: pre;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line span {
  color: #e4e7ec;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line span:first-child {
  min-width: 32px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.no-counter {
  background: #637083;
  border-bottom: 1px solid #637083;
  justify-content: flex-start;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.no-counter span {
  font-weight: 700;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.no-counter span:last-child {
  margin-left: auto;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line:not(:last-child) {
  border-bottom: 1px solid #637083;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.group-header {
  padding: 0 12px !important;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.group-header span {
  font-size: 12px;
  line-height: 120%;
  color: #e4e7ec;
  border-left: 0;
  font-weight: 700;
  border-right: 0 !important;
  display: flex;
  align-items: center;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.groups-summary {
  background: var(--gradient-warning, linear-gradient(80deg, #faa638 0%, #ffb219 100%));
  padding: 0 1.2rem !important;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__table-line.groups-summary span {
  border-right: none !important;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__thumbnails img {
  width: 158px;
  height: 97px;
  object-fit: cover;
  border-radius: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__thumbnails .active img {
  border: 3px solid #f7941e;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__image {
  border-radius: 16px;
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #e4e7ec;
  padding: 15px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__image .image-loupe {
  right: 12px;
  top: 12px;
  position: absolute;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__left-column {
  width: 100%;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper.with-table .plans-body__right-column {
  width: 100%;
  margin-bottom: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper:first-child {
  margin-left: 202px;
}
@media (max-width: 1350px) {
  .project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper:first-child {
    margin-left: 135px;
  }
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper:last-child {
  margin-right: 202px;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container .gallery-item-wrapper .zoomed-picture-label {
  position: absolute;
  left: 32px;
  top: 12px;
  border-radius: 25px;
  background: #ffffff;
  color: #141c24;
  font-size: 12px;
  padding: 4px 8px;
  font-weight: 500;
  z-index: 2;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img {
  height: 70vh;
  border-radius: 16px;
  width: auto !important;
  min-width: initial !important;
  cursor: grab;
  max-width: 100% !important;
  object-fit: contain;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img:not(.light) {
  opacity: 0.4;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.middle.first-slide {
  margin-left: 70vw !important;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.middle.last-slide {
  margin-right: 80vw !important;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.first-slide:not(.middle) {
  opacity: 0.4;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.last-slide:not(.middle) {
  opacity: 0.4;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.slide-left {
  opacity: 0.4;
}
.project-zoom-gallery-container .project-zoom-gallery .gallery-container img.slide-right {
  opacity: 0.4;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top {
  display: flex;
  width: 100%;
  height: 64px;
  justify-content: space-between;
  align-items: center;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top .gallery-container__arrow_gallery--left {
  font-size: 0;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 130px;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-swiper-chevron-left.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 24px;
  position: fixed;
  left: 40px;
  z-index: 101;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  top: 50%;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top .gallery-container__arrow_gallery--right {
  font-size: 0;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 130px;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-swiper-chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 24px;
  position: fixed;
  right: 40px;
  z-index: 101;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  top: 50%;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 100px;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container .thumbnail {
  width: 69px;
  height: 39px;
  border-radius: 8px;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container .title {
  margin-left: 16px;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container .title p {
  width: 320px;
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
  color: #ced2da;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container .title p span {
  display: none;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-left_container .title p span.active {
  display: inline-block;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-right_container .close-gallery-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: #414e62;
  border-radius: 100%;
  position: fixed;
  top: 16px;
  right: 30px;
  cursor: pointer;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-right_container .close-gallery-icon span {
  display: block;
  width: 32px;
  height: 32px;
}
.project-zoom-gallery-container .project-zoom-gallery .project-zoom-gallery__top-right_container .close-gallery-icon span::before {
  display: block;
  width: 32px;
  height: 32px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-close-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
}

body.open-popup {
  position: relative;
}

.parameters_with_list_box {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-sizing: border-box;
  box-shadow: 0px 6px 12px 0px rgba(28, 39, 49, 0.05);
  border: 1px solid neutral-gray-300;
  border-radius: 16px;
}
.parameters_with_list_box.with-orange-shape {
  overflow: hidden;
}
.parameters_with_list_box.with-orange-shape::after {
  position: absolute;
  right: -12px;
  top: 0;
  display: block;
  content: "";
  width: 114px;
  height: 93px;
  background-image: url("./../../images/project_parameters/project-parameters-box-orange-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.parameters_with_list_box__text .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
  margin: 0 0 16px 0;
}
.parameters_with_list_box__text .desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #637083;
  margin: 0 0 16px 0;
}
.parameters_with_list_box__text .unordered-list {
  padding-left: 18px;
  margin: 0 0 24px 0;
  list-style: none;
}
.parameters_with_list_box__text .unordered-list li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #637083;
  margin: 0 0 4px 0;
}
.parameters_with_list_box__text .unordered-list li::before {
  position: absolute;
  left: -18px;
  top: 2px;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("./../../images/project_parameters/project-parameters-thumb-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.parameters_with_list_box__btn {
  display: flex;
  height: 36px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  width: max-content;
  border-radius: 48px;
  background-color: #ffffff;
  cursor: pointer;
  border: 1px solid #ced2da;
}
.parameters_with_list_box__btn span {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #344051;
}

.materials_box {
  display: flex;
  padding: 40px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  background-color: #344051;
  background-color: #344051;
  box-sizing: border-box;
  margin: 4px 0 40px 0;
}
.materials_box.with-orange-shape {
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0px 1.00875px 3.02626px 0px rgba(28, 39, 49, 0.08);
  margin: 0 0 24px 0;
}
.materials_box.with-orange-shape .materials_box__text .title {
  width: 80%;
}
.materials_box.with-orange-shape .materials_box__btn {
  margin-top: 24px;
  padding: 10px 32px;
}
.materials_box.with-orange-shape::after {
  position: absolute;
  right: -12px;
  top: 0;
  display: block;
  content: "";
  width: 114px;
  height: 93px;
  background-image: url("./../../images/project_parameters/project-parameters-box-orange-shape.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.materials_box__text .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  margin: 0 0 24px 0;
}
.materials_box__text .desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #e4e7ec;
}
.materials_box__btn {
  display: flex;
  height: 36px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  width: max-content;
  border-radius: 28px;
  background-color: #ffffff;
  cursor: pointer;
}
.materials_box__btn span {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
}

.popup-content-inner {
  position: fixed;
  background: #ffffff;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 111;
  width: 100vw;
  background: rgba(20, 28, 36, 0.6);
  display: none;
  justify-content: flex-end;
}
.popup-content-inner.popup-contact-wrapper {
  overflow-y: initial;
}
.popup-content-inner.center {
  justify-content: center;
  align-items: center;
}
.popup-content-inner.center .popup {
  height: auto;
  border-radius: 8px;
  overflow-y: hidden !important;
}
.popup-content-inner .popup {
  text-align: left;
  width: 600px;
  padding: 40px;
  right: 0;
  background: #ffffff;
  position: relative;
}
.popup-content-inner .popup__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.popup-content-inner .popup__button {
  display: flex;
  gap: 8px;
  color: #ffffff !important;
  text-decoration: none !important;
  background-color: #cf4008;
  border-radius: 28px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 600px) {
  .popup-content-inner .popup__button {
    justify-content: center;
    width: 100%;
  }
}
.popup-content-inner .popup__body {
  overflow-y: auto;
  max-height: 90vh;
  padding-right: 16px;
  padding-bottom: 300px;
}
.popup-content-inner .popup__body::-webkit-scrollbar {
  width: 6px;
}
.popup-content-inner .popup__body::-webkit-scrollbar-track {
  background-color: #e4e7ec;
  border-radius: 48px;
}
.popup-content-inner .popup__body::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid #202b37;
  border-left: 0;
  border-right: 0;
  background-color: #202b37;
}
.popup-content-inner .popup::-webkit-scrollbar {
  width: 6px;
}
.popup-content-inner .popup::-webkit-scrollbar-track {
  background-color: #e4e7ec;
  border-radius: 48px;
}
.popup-content-inner .popup::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #202b37;
}
.popup-content-inner .popup .delivery {
  position: flex;
}
.popup-content-inner .popup .delivery p {
  font-size: 16px;
}
.popup-content-inner .popup .delivery__wrapper {
  display: flex;
  flex-direction: column;
}
.popup-content-inner .popup .delivery__banner {
  display: flex;
  font-size: 26px;
  padding: 8px 32px;
  gap: 10px;
  background-color: #ffe0bc;
  border: 1px solid #f7941e;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  margin: 4px 0 24px;
}
.popup-content-inner .popup .delivery__banner h4 {
  width: 120px;
}
.popup-content-inner .popup .delivery__list {
  display: flex;
  flex-direction: column;
  background-color: #f2f4f7;
  padding: 24px;
  gap: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.popup-content-inner .popup .delivery__slot {
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 24px;
  gap: 8px;
}
.popup-content-inner .popup .payments p {
  font-size: 16px;
}
.popup-content-inner .popup .payments__logos-banner {
  display: flex;
  width: 100%;
  background-color: #f2f4f7;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin: 24px 0;
}
.popup-content-inner .popup .payments__slot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-content-inner .popup .grey-light-blue-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  margin: 24px 0;
}
.popup-content-inner .popup .grey-light-blue-container__top {
  width: 100%;
  line-height: 1.6;
}
.popup-content-inner .popup .grey-light-blue-container__top .text-box {
  margin: 0 0 18px 0;
  font-size: 16px;
}
.popup-content-inner .popup .grey-light-blue-container__top .text-box strong {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #202b37;
}
.popup-content-inner .popup .grey-light-blue-container__top .text-box p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #202b37;
}
.popup-content-inner .popup .grey-light-blue-container__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: rgba(204, 237, 239, 0.5333333333);
  border-radius: 8px;
  padding: 10px;
  line-height: 1.6;
  box-sizing: border-box;
}
.popup-content-inner .popup .grey-light-blue-container__bottom .text-box {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}
.popup-content-inner .popup .grey-light-blue-container__bottom .text-box:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.popup-content-inner .popup .grey-light-blue-container__bottom .text-box strong {
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #202b37;
}
.popup-content-inner .popup-close-button {
  font-size: 0;
  width: 64px;
  min-width: 64px !important;
  height: 64px;
  background-color: #202b37;
  border-radius: 100%;
  cursor: pointer;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-close-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 24px;
  top: 24px;
}
.popup-content-inner .popup__title {
  font-weight: 700;
  font-size: 28px;
  width: 80%;
  margin-bottom: 32px;
}
.popup-content-inner.popup-contact .popup__description {
  overflow-y: initial !important;
  max-height: initial;
}
.popup-content-inner .popup__description {
  font-size: 18px;
  width: 100%;
  overflow-y: auto;
  max-height: 70vh;
}
.popup-content-inner .popup__description ul,
.popup-content-inner .popup__description ol {
  padding-left: 30px;
  margin-bottom: 16px;
}
.popup-content-inner .popup__description ol {
  padding-left: 0;
}
.popup-content-inner .popup__description ol li {
  padding-left: 30px;
}
.popup-content-inner .popup__description li {
  list-style-type: disc;
}
.popup-content-inner .popup__description a {
  color: #f7941e;
  text-decoration: underline;
  margin-right: 4px;
  position: relative;
  z-index: 1;
}
.popup-content-inner .popup__description > p {
  margin-bottom: 24px;
}
.popup-content-inner .popup__description > p a {
  color: #f7941e;
  text-decoration: underline;
}
.popup-content-inner .popup__call {
  background-color: #f2f4f7;
  padding: 24px;
  border-radius: 16px;
}
.popup-content-inner .popup__call-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background-color: #ffffff;
  padding: 24px;
}
@media (max-width: 800px) {
  .popup-content-inner .popup__call-content {
    padding: 24px 64px;
  }
}
.popup-content-inner .popup__call-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #202b37;
  margin-bottom: 16px;
}
.popup-content-inner .popup__call-link {
  font-family: "Satoshi";
  text-decoration: none !important;
  color: #202b37 !important;
  font-size: 18px;
  line-height: 1.2;
}
.popup-content-inner .popup__call-number {
  font-weight: 700;
}
.popup-content-inner .popup__call-button {
  background-color: #cf4008;
  border: none;
  padding: 9px 20px;
  border-radius: 28px;
  margin-top: 8px;
  color: #ffffff;
  font-weight: 700;
  font-family: "Satoshi";
  font-size: 16px;
}
.popup-content-inner .popup__icon--phone {
  display: block;
  width: 18px;
  height: 18px;
  background: url("./../../images/project_cart/project-cart-phone-dark.svg") no-repeat;
  margin-right: 8px;
}

.price_description {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #ccedf8;
  margin-bottom: 24px;
}
.price_description a {
  color: #f7941e;
}

.accordion__body {
  display: flex;
  flex-direction: column;
  animation: accordion-animation 0.4s linear;
}
.accordion__body.collapsed {
  display: none;
}
.accordion__item {
  border-bottom: 1px solid #e4e7ec;
  padding-bottom: 16px;
}
.accordion__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 24px;
}
.accordion__arrow {
  font-size: 0;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  background: #f2f4f7;
  border-radius: 100%;
  cursor: pointer;
  background-image: url("./../../images/accordion/accordion-arrow.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: 0.4s;
  transform: rotate(0);
}
.accordion__arrow.active {
  transform: rotate(180deg);
}
.accordion__arrow.disabled {
  display: none;
}
.accordion.bg-dark {
  background: #202b37;
  border-radius: 16px !important;
  margin-top: 40px !important;
}
.accordion.bg-dark .accordion__header {
  margin: 0 !important;
  padding: 40px 24px 0 40px !important;
}
.accordion.bg-dark .accordion__title {
  color: #ffffff !important;
}
.accordion.bg-dark .accordion__item {
  padding-bottom: 0 !important;
}

.sections-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.sections-container .section-right-column .right-cart-parameters-container {
  width: 380px;
  max-width: 380px;
  flex-direction: column !important;
  position: sticky !important;
  top: 94px !important;
  display: flex !important;
  margin-top: 30px;
}
.sections-container .section-right-column .right-cart-parameters-container .info-bar-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #414e62;
  padding-bottom: 8px;
}
.sections-container .section-right-column .right-cart-parameters-container .info-bar-header h2 {
  font-weight: 500;
  font-size: 12px;
  color: #ced2da;
}
.sections-container .section-right-column .right-cart-parameters-container .info-bar-header span {
  font-weight: 500;
  font-size: 12px;
  color: #ced2da;
  position: relative;
  right: 2px;
}
.sections-container .section-right-column .right-cart-parameters-container .info-bar-header img {
  width: 69px;
  height: 41px;
  object-fit: cover;
  border-radius: 8px;
}
.sections-container .section-right-column .right-cart-parameters-container .info-bar-header__symbol {
  font-size: 12px;
  border: 1px solid #f7941e;
  padding: 0 6px;
  border-radius: 16px;
  max-height: 22px;
}

.sections {
  width: 912px;
}
@media (max-width: 1350px) {
  .sections {
    width: 810px;
  }
  .sections .plot .plot-footer__contact a {
    padding: 10px 18px !important;
  }
}

.tabs__tab-line {
  display: flex;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 12px;
  align-items: stretch;
  min-height: 36px;
  height: auto;
}
.tabs__tab-line > span {
  font-size: 12px;
  font-weight: 500;
  line-height: 132%;
  letter-spacing: 0.36px;
  color: #202b37;
}
.tabs__tab-line > span.parameter_name {
  width: 60%;
  padding: 12px 12px 12px 0;
}
.tabs__tab-line > span.parameter_value {
  width: 30%;
  text-align: right;
  padding: 12px 0 12px 12px;
}
.tabs__tab-line .tooltip__wrapper {
  width: 10%;
  min-height: 36px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-left: 1px solid #f2f4f7;
  border-right: 1px solid #f2f4f7;
}
.tabs__tab-line .tooltip__wrapper .tooltip {
  width: 16px;
  height: 16px;
  max-width: 16px !important;
  min-width: 16px !important;
}
.tabs__tab-line:not(:last-child) {
  border-bottom: 1px solid #f2f4f7;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item {
  border: none;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item:nth-of-type(1) {
  width: calc(70% - 24px);
  margin-right: 24px;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item:nth-of-type(2) {
  border: 0;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line {
  align-items: stretch;
  height: auto;
  padding: 0;
  border-left: 1px solid #f2f4f7;
  border-right: 1px solid #f2f4f7;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line:nth-child(2) {
  border-top: 1px solid #f2f4f7;
  border-radius: 16px 16px 0 0;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line:last-child {
  border-radius: 0 0 16px 16px;
  border-bottom: 1px solid #f2f4f7;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line:first-child {
  border-top: 1px solid #f2f4f7;
  border-radius: 16px;
  margin-bottom: 24px;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line .parameter_name {
  display: flex;
  align-items: flex-start;
  width: 45%;
  padding: 12px;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line .parameter_value {
  align-items: center;
  width: 60%;
  text-align: left;
  padding: 12px;
  border-left: 1px solid #f2f4f7;
}
.tabs__tab-content-technology_and_materials .tabs__tab-item .tabs__tab-line .parameter_value > a {
  color: #202b37;
  font-weight: 700;
  text-decoration: underline;
}
.tabs__tab-content-thermal_parameters .tabs__tab-item .tabs__tab-line {
  align-items: stretch;
  height: auto;
  padding: 0;
}
.tabs__tab-content-thermal_parameters .tabs__tab-item .tabs__tab-line .parameter_name {
  display: flex;
  align-items: flex-start;
  width: 55%;
  padding: 12px;
}
.tabs__tab-content-thermal_parameters .tabs__tab-item .tabs__tab-line .parameter_value {
  display: flex;
  align-items: center;
  width: 60%;
  text-align: left;
  padding: 12px;
  border-left: 1px solid #f2f4f7;
}
.tabs__tab-content-thermal_parameters .tabs__tab-item .tabs__tab-line .parameter_value sup {
  margin-bottom: 4px;
}
.tabs__tab-item {
  border: 1px solid #f2f4f7;
  width: 49%;
  border-radius: 16px;
  height: 100%;
}
.tabs__tab-content {
  display: flex;
  justify-content: space-between;
}
.tabs__tab-header {
  display: flex;
  border-radius: 0px 0px 16px 16px;
  background: #f2f4f7;
  padding: 10px 24px;
  padding-bottom: 0;
  margin-bottom: 24px;
}
.tabs__tab-trigger {
  border-radius: 18px 18px 0px 0px;
  border-top: 1px solid #ced2da;
  border-right: 1px solid #ced2da;
  border-left: 1px solid #ced2da;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #344051;
  cursor: pointer;
}
.tabs__tab-trigger.active {
  background: #ffffff;
}

.section-parameters {
  width: 100%;
}
.section-parameters .section-parameters-header__text {
  padding: 16px 24px;
  background: #f2f4f7;
}
.section-parameters .section-parameters-header__text p {
  display: flex;
  padding: 16px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #637083;
  background-color: #ffffff;
  border-radius: 16px;
}
.section-parameters .section-parameters-header__tags {
  padding: 16px 24px;
  background: #f2f4f7;
}
.section-parameters .section-parameters-header__tags > span {
  margin-right: 8px;
  padding: 4px 12px;
  border-radius: 150px;
  border: 1px solid rgba(92, 105, 112, 0.3);
  font-size: 14px;
  font-weight: 700;
}
.section-parameters .section-parameters-header__tags > span.gray {
  color: #5c6970;
  border: 1px solid #5c6970;
}
.section-parameters .section-parameters-header__tags > span.green {
  color: #788a42;
  border: 1px solid #788a42;
}
.section-parameters .section-parameters-header__tags > span.brown {
  color: #8f663d;
  border: 1px solid #8f663d;
}
.section-parameters .section-parameters-header__tags > span.blue {
  color: #07c;
  border: 1px solid #07c;
}

.plot {
  border-radius: 16px;
}
.plot .plot-header {
  padding: 40px;
  background: #202b37;
  border-radius: 16px 16px 0 0;
}
.plot .plot-header__content {
  display: flex;
  justify-content: space-between;
}
.plot .plot-header__content-item {
  width: 46%;
}
.plot .plot-header__content-item p {
  font-size: 14px;
  color: #e4e7ec;
  font-weight: 400;
  line-height: 160%;
}
.plot .plot-header__title h2 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 24px;
}
.plot .plot-body {
  padding: 0 40px;
  padding-bottom: 40px;
  background: #202b37;
  display: flex;
  justify-content: space-between;
}
.plot .plot-body__download-buttons > a {
  color: #202b37;
}
.plot .plot-body__download-buttons > a > span {
  color: #202b37;
  background: #ffffff;
  padding: 2px 25px 2px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
}
.plot .plot-body__download-buttons > a > span:after {
  content: "";
  width: 17px;
  height: 17px;
  right: 2px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  border-radius: 100%;
  cursor: pointer;
  background: #e4e7ec;
  background-image: url("./../../images/accordion/download-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.plot .plot-body__download-buttons > span {
  color: #202b37;
  background: #ffffff;
  padding: 2px 25px 2px 8px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  margin-right: 8px;
}
.plot .plot-body__download-buttons > span:after {
  content: "";
  width: 17px;
  height: 17px;
  right: 2px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  border-radius: 100%;
  cursor: pointer;
  background: #e4e7ec;
  background-image: url("./../../images/accordion/download-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.plot .plot-body__buttons {
  display: flex;
  justify-content: space-around;
}
.plot .plot-body__buttons .version .version-text {
  color: #ffffff;
}
.plot .plot-body__table-line {
  display: flex;
  padding-left: 12px;
  padding-right: 12px;
  align-items: stretch;
  min-height: 40px;
}
.plot .plot-body__table-line .tooltip {
  width: 16px;
  height: 16px;
  min-width: 16px !important;
}
.plot .plot-body__table-line > span:nth-child(3) {
  padding-left: 8px;
  display: flex;
  align-items: center;
}
.plot .plot-body__table-line > span:first-child {
  max-width: 200px;
  width: 200px;
  min-width: 200px;
  display: flex;
  align-items: center;
}
.plot .plot-body__table-line span {
  color: #e4e7ec;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.36px;
}
.plot .plot-body__table-line .tooltip__wrapper {
  height: auto;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-left: 1px solid #637083;
  border-right: 1px solid #637083;
}
.plot .plot-body__table-line:not(:last-child) {
  border-bottom: 1px solid #637083;
}
.plot .plot-body__table {
  border: 1px solid #637083;
  border-radius: 16px;
}
.plot .plot-body__image {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.plot .plot-body__image img {
  width: 380px;
  border-radius: 16px;
  height: 345px;
  object-fit: contain;
}
.plot .plot-body__left {
  width: 46%;
}
.plot .plot-body__right {
  width: 47%;
}
.plot .plot-footer {
  padding: 40px;
  background: #344051;
  border-radius: 0 0 16px 16px;
}
.plot .plot-footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.plot .plot-footer__contact a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 28px;
  padding: 10px 32px;
  background: #cf4008;
}
.plot .plot-footer__header {
  margin-bottom: 24px;
}
.plot .plot-footer__header p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
.plot .plot-footer__header + span {
  font-weight: 700;
  line-height: 120%;
}
.plot .plot-footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plot .plot-footer__list {
  width: 60%;
}
.plot .plot-footer__list > span {
  font-size: 14px;
  color: #e4e7ec;
  margin-bottom: 8px;
}
.plot .plot-footer__list ul {
  list-style-type: circle;
  margin-left: 16px;
}
.plot .plot-footer__list ul li {
  color: #e4e7ec;
  font-size: 14px;
  margin-bottom: 8px;
  list-style-type: disc;
}
.plot .plot-footer__contact {
  width: 37%;
  height: 43px;
}

.section-description .section-description-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-description .section-description-content__col-left {
  width: 100%;
  color: #202b37;
  font-size: 16px;
}
.section-description .section-description-content__col-left a {
  color: #f7941e;
  text-decoration: underline;
}
.section-description .section-description-content__col-left h2 {
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.section-description .section-description-content__col-left p {
  color: #202b37;
  font-size: 16px;
  margin-bottom: 16px;
}
.section-description .section-description-content__col-left p a {
  color: #f7941e;
  text-decoration: underline;
}
.section-description .section-description-footer {
  border-radius: 16px;
}
.section-description .section-description-footer__content {
  display: flex;
  justify-content: space-between;
  padding: 0 24px 24px 24px;
  background: #f2f4f7;
  border-radius: 0 0 16px 16px;
  margin-bottom: 16px;
}
.section-description .section-description-footer__content p {
  width: 100%;
  column-count: 2;
  font-size: 14px;
  column-fill: balance;
}
.section-description .section-description-footer__header {
  display: flex;
  background: #f2f4f7;
  border-radius: 16px 16px 0 0;
}
.section-description .section-description-footer__header.without-content {
  border-radius: 16px;
  margin-bottom: 16px;
}
.section-description .section-description-footer__author-image {
  display: flex;
  align-items: center;
  margin-left: 24px;
  background: #f2f4f7;
  border-radius: 16px 16px 0 0;
}
.section-description .section-description-footer__author-image img {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  object-fit: cover;
}
.section-description .section-description-footer__author-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  padding: 24px;
  padding-bottom: 0;
}
.section-description .section-description-footer__author-info span:first-child {
  font-weight: 700;
  font-size: 16px;
  color: #202b37;
}
.section-description .section-description-footer__author-info span:nth-child(2) {
  font-size: 16px;
  color: #202b37;
}
.section-description .section-description-footer__author-info a {
  color: #414e62;
  text-decoration: underline;
  font-size: 12px;
}

.plans .plans-tabs {
  border-radius: 0px 0px 16px 16px;
  border-bottom: 1px solid #e4e7ec;
  background: #f2f4f7;
  display: flex;
  padding: 10px 24px 0px 24px;
  margin-bottom: 24px;
}
.plans__gruoped-tabs-item {
  border-radius: 8px;
  border: 1px solid #e4e7ec;
  padding: 8px 16px;
  margin-right: 8px;
  cursor: pointer;
}
.plans__gruoped-tabs-item.active {
  background: #ffffff;
}
.plans__gruoped-tabs-item span {
  font-size: 14px;
  font-weight: 700;
  color: #344051;
}
.plans__tab span {
  font-weight: 700;
  font-size: 14px;
  color: #344051;
  cursor: pointer;
}
.plans__grouped-tabs > span {
  margin-right: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #344051;
}
.plans__tab, .plans__grouped-tabs {
  border-radius: 18px 18px 0px 0px;
  border-top: 1px solid #ced2da;
  border-right: 1px solid #ced2da;
  border-left: 1px solid #ced2da;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  height: 50px;
}
.plans__tab.active, .plans__grouped-tabs.active {
  background: #ffffff;
}
.plans .plans-section {
  margin-bottom: 24px;
}
.plans .plans-section__header {
  margin-bottom: 24px;
}
.plans .plans-section .plans-footer .plans-banner {
  margin: 64px 0;
  padding: 40px 40px 40px 200px;
  background: #344051;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.plans .plans-section .plans-footer .plans-banner:before {
  background-image: url("./../../images/plans_section/plans_section_rysunki_szczegolowe.png");
  background-size: 280px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
  width: 280px;
  height: 180px;
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}
.plans .plans-section .plans-footer .plans-banner:after {
  background: #f7941e;
  content: "";
  width: 280px;
  height: 280px;
  position: absolute;
  right: 60px;
  border-radius: 100%;
  top: -20px;
}
.plans .plans-section .plans-footer .plans-banner__button {
  font-weight: 700;
  color: #202b37;
  padding: 12px 32px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  border-radius: 28px;
  z-index: 2;
  cursor: pointer;
}
.plans .plans-section .plans-footer .plans-banner__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.plans .plans-section .plans-footer .plans-banner__title:after {
  background: #f7941e;
  content: "";
  width: 63px;
  height: 63px;
  position: absolute;
  right: 6px;
  top: -20px;
  border-radius: 100%;
  z-index: 1;
}
.plans .plans-section .plans-footer .plans-banner__description {
  font-size: 14px;
  font-weight: 700;
  color: #e4e7ec;
  width: 80%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}
.plans .plans-section .plans-body {
  display: flex;
  justify-content: space-between;
}
.plans .plans-section .plans-body__name-wrapper {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding: 0 8px;
}
.plans .plans-section .plans-body__name-wrapper span {
  font-size: 12px;
  font-weight: 500;
}
.plans .plans-section .plans-body__name-wrapper span::first-letter {
  text-transform: capitalize;
}
.plans .plans-section .plans-body__name-wrapper .netto {
  color: #637083 !important;
}
.plans .plans-section .plans-body.plans__variant__Piwnica .plans-body__table-line, .plans .plans-section .plans-body.plans__variant__Parter .plans-body__table-line, .plans .plans-section .plans-body.plans__variant__Piętro .plans-body__table-line, .plans .plans-section .plans-body.plans__variant__Poddasze .plans-body__table-line {
  padding-left: 0;
}
.plans .plans-section .plans-body.plans__variant__Piwnica .plans-body__table-line .netto, .plans .plans-section .plans-body.plans__variant__Parter .plans-body__table-line .netto, .plans .plans-section .plans-body.plans__variant__Piętro .plans-body__table-line .netto, .plans .plans-section .plans-body.plans__variant__Poddasze .plans-body__table-line .netto {
  color: #637083 !important;
}
.plans .plans-section .plans-body.plans__variant__Piwnica .plans-body__table-line > span:first-child, .plans .plans-section .plans-body.plans__variant__Parter .plans-body__table-line > span:first-child, .plans .plans-section .plans-body.plans__variant__Piętro .plans-body__table-line > span:first-child, .plans .plans-section .plans-body.plans__variant__Poddasze .plans-body__table-line > span:first-child {
  border-right: 1px solid #f2f4f7;
  align-self: stretch;
  align-items: center;
}
.plans .plans-section .plans-body.plans__variant__Piwnica .plans-body__table-line span, .plans .plans-section .plans-body.plans__variant__Parter .plans-body__table-line span, .plans .plans-section .plans-body.plans__variant__Piętro .plans-body__table-line span, .plans .plans-section .plans-body.plans__variant__Poddasze .plans-body__table-line span {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #202b37;
}
.plans .plans-section .plans-body__bottom-buttons {
  margin-top: 16px;
  display: flex;
  justify-content: space-around;
}
.plans .plans-section .plans-body__table-header {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background: #f2f4f7;
  border-radius: 16px 16px 0 0;
}
.plans .plans-section .plans-body__table-header > span {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #202b37;
  line-height: 36px;
  padding: 0 16px;
}
.plans .plans-section .plans-body__table-header > span:last-child {
  border-left: 1px solid #e4e7ec;
}
.plans .plans-section .plans-body__information {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #f2f4f7;
}
.plans .plans-section .plans-body__information p {
  font-size: 14px;
  font-weight: 500;
  color: #637083;
  line-height: 20px;
  letter-spacing: 0.28px;
}
.plans .plans-section .plans-body__table {
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  margin-bottom: 16px;
}
.plans .plans-section .plans-body__table-description.plan-rooms-description p {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #637083;
}
.plans .plans-section .plans-body__table-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 12px;
  padding-left: 12px;
  min-height: 36px;
}
.plans .plans-section .plans-body__table-line.list-bullets span:first-of-type::before {
  content: "•";
  padding-right: 8px;
}
.plans .plans-section .plans-body__table-line.group-header {
  padding: 0 12px !important;
}
.plans .plans-section .plans-body__table-line.group-header span {
  color: #202b37;
  font-weight: 700;
  border-right: 0 !important;
}
.plans .plans-section .plans-body__table-line.groups-summary {
  background: linear-gradient(80deg, #faa638 0%, #ffb219 100%);
  padding: 0 1.2rem !important;
}
.plans .plans-section .plans-body__table-line.groups-summary span {
  border-right: none !important;
  font-weight: 700;
}
.plans .plans-section .plans-body__table-line > span {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
}
.plans .plans-section .plans-body__table-line > span:first-child {
  border-right: 1px solid #f2f4f7;
  min-width: 47px;
  display: flex;
  justify-content: center;
}
.plans .plans-section .plans-body__table-line.no-counter {
  background: #f2f4f7;
  border-bottom: 1px solid #e4e7ec;
  justify-content: flex-start;
}
.plans .plans-section .plans-body__table-line.no-counter span {
  font-weight: 700;
}
.plans .plans-section .plans-body__table-line.no-counter span:last-child {
  margin-left: auto;
}
.plans .plans-section .plans-body__table-line:not(:last-child) {
  border-bottom: 1px solid #e4e7ec;
}
.plans .plans-section .plans-body__table-line:last-child {
  border-radius: 0 0 16px 16px;
}
.plans .plans-section .plans-body__thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.plans .plans-section .plans-body__thumbnails .plans-body__thumbnail {
  width: 160px;
  height: 90px;
}
.plans .plans-section .plans-body__thumbnails .plans-body__thumbnail img {
  width: 160px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
}
.plans .plans-section .plans-body__thumbnails .plans-body__thumbnail.active img {
  border: 3px solid #f7941e;
}
.plans .plans-section .plans-body__image {
  border-radius: 16px;
  width: 564px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1350px) {
  .plans .plans-section .plans-body__image {
    width: 510px;
  }
}
.plans .plans-section .plans-body__image img {
  width: 564px;
  height: 338px;
  border-radius: 16px;
  object-fit: contain;
  border: 1px solid #e4e7ec;
  padding: 15px;
}
@media (max-width: 1350px) {
  .plans .plans-section .plans-body__image img {
    width: 470px;
  }
}
.plans .plans-section .plans-body__image .image-loupe {
  right: 8px;
  top: 8px;
  position: absolute;
}
.plans .plans-section .plans-body__left-column {
  width: 60%;
}
.plans .plans-section .plans-body__right-column {
  width: 37%;
}
@media (max-width: 1350px) {
  .plans .plans-section .plans-body__right-column {
    width: 39%;
  }
}
.plans .plans-section__title {
  color: #202b37;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}
.plans .plans-section__title span {
  color: #637083;
}
.plans .plans-section__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plans .plans-section__right-column {
  display: flex;
  gap: 16px;
}

.button-with-arrow {
  font-size: 14px;
  font-weight: 700;
  color: #344051;
  padding: 8px 40px 8px 16px;
  border-radius: 48px;
  border: 1px solid #ced2da;
  position: relative;
  align-self: start;
  cursor: pointer;
}
.button-with-arrow > span {
  font-size: 0;
  margin-left: 8px;
  cursor: pointer;
  background-image: url("./../../images/accordion/arrow-up-right.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.icons-section {
  margin-bottom: 40px;
}
.icons-section .title-section {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #202b37;
}
.icons-section__items {
  display: flex;
  justify-content: space-between;
}
.icons-section .icons-section-box {
  display: flex;
  flex-direction: column;
  width: 168px;
  align-items: center;
  text-align: center;
  position: relative;
}
.icons-section .icons-section-box:nth-last-child(2):after {
  display: none;
}
.icons-section .icons-section-box:after {
  content: "";
  height: 50%;
  position: absolute;
  right: -22px;
  width: 1px;
  background: #ced2da;
  top: 50%;
  transform: translateY(-78%);
}
.icons-section .icons-section-box:last-child:after {
  display: none;
}
.icons-section .icons-section-box__arrow {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background-color: #f2f4f7;
  border-radius: 100%;
  background-image: url("./../../images/icons_section/icons-section-arrow-up-right.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 0;
}
.icons-section .icons-section-box__icon {
  display: block;
  width: 80px;
  height: 80px;
  cursor: pointer;
  margin-right: 2px;
}
.icons-section .icons-section-box__icon.addons {
  background-image: url("./../../images/icons_section/icons-section-benefits.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__icon.disq {
  background-image: url("./../../images/icons_section/icons-section-disq.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__icon.support {
  background-image: url("./../../images/icons_section/icons-section-support.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__icon.guarant {
  background-image: url("./../../images/icons_section/icons-section-guarant.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__icon.shopping {
  background-image: url("./../../images/icons_section/icons-section-shopping.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__icon.changes {
  background-image: url("./../../images/icons_section/icons-section-changes.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__icon.documentation {
  background-image: url("./../../images/icons_section/icons-section-documentation.svg");
  background-size: 75px;
  background-repeat: no-repeat;
  background-position: center center;
}
.icons-section .icons-section-box__title {
  font-weight: 700;
  font-size: 15px;
  color: #414e62;
  width: 80%;
  margin: 0 auto;
  cursor: pointer;
}

.floating-bar-wrapper {
  height: 54px;
  width: 100%;
}

.floating-info-bar {
  background-color: #202b37;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 32px;
  z-index: 11;
}
.floating-info-bar.active {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}
.floating-info-bar .info-bar__circle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.floating-info-bar .info-bar__circle svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg) !important;
}
.floating-info-bar .info-bar__circle:after {
  background-image: url("./../../images/icons_section/icon-section-arrow-up.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.floating-info-bar__items {
  display: flex;
  flex-wrap: wrap;
}
.floating-info-bar__item {
  color: #97a1af;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin: 4px;
  white-space: nowrap;
  cursor: pointer;
}
.floating-info-bar__item:first-child {
  margin-left: 16px;
}
.floating-info-bar__item.active, .floating-info-bar__item:hover {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.floating-info-bar__item.active span, .floating-info-bar__item:hover span {
  color: #f7941e;
}

.popup-link-arrowUpRight {
  color: #ffffff !important;
  background-color: #cf4008;
  position: relative;
  padding: 8px 16px;
  border-radius: 48px;
  text-decoration: none !important;
  margin-bottom: 24px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.popup-link-arrowUpRight:after {
  content: "";
  background-image: url("./../../images/icons_section/icon-section-arrowUpRight.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 6px;
  width: 24px;
  height: 14px;
  display: inline-flex;
}

.icons.acc .popup__title p {
  font-size: 16px;
  font-weight: 500;
}

.accessories-boxes .accessories-box {
  padding: 16px 16px 16px 172px;
  background: #f2f4f7;
  border-radius: 8px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.accessories-boxes .accessories-box .accessories-icon-link {
  font-size: 14px;
  font-weight: 700;
  color: #202b37;
  text-decoration: none;
  position: relative;
}
.accessories-boxes .accessories-box .accessories-icon-link:after {
  content: "";
  background-image: url("./../../images/icons_section/icon-section-link.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 6px;
  width: 24px;
  height: 9px;
  display: inline-flex;
}
.accessories-boxes .accessories-box .accessories-icon-link {
  font-size: 14px;
  font-weight: 700;
  color: #202b37;
  text-decoration: none;
  position: relative;
}
.accessories-boxes .accessories-box .accessories-icon-link:after {
  content: "";
  background-image: url("./../../images/icons_section/icon-section-link.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 6px;
}
.accessories-boxes .accessories-box:nth-child(1)::before {
  top: 0;
  position: absolute;
  content: "";
  left: 0;
  width: 165px;
  height: 100%;
  background-image: url("./../../images/icons_section/Dziennik-budowy@2x.png");
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: center center;
}
.accessories-boxes .accessories-box:nth-child(2)::before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  width: 165px;
  height: 100%;
  background-image: url("./../../images/icons_section/Projekty-malej-architektury@2x.png");
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: center center;
}
.accessories-boxes .accessories-box:nth-child(3)::before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  width: 165px;
  height: 100%;
  background-image: url("./../../images/icons_section/Teczka-inwestora-new@2x.png");
  background-size: 136px;
  background-repeat: no-repeat;
  background-position: center center;
}
.accessories-boxes .accessories-box:nth-child(4)::before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  width: 165px;
  height: 100%;
  background-image: url("./../../images/icons_section/poradnik@2x.png");
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: center center;
}
.accessories-boxes .accessories-box:nth-child(5)::before {
  position: absolute;
  top: 0;
  content: "";
  left: 0;
  width: 165px;
  height: 100%;
  background-image: url("./../../images/icons_section/Kupony@2x.png");
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: center center;
}
.accessories-boxes .accessories-box.free {
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.accessories-boxes .accessories-box.free::before {
  display: none !important;
}
.accessories-boxes .accessories-box.free .accessories-box__teaser_content {
  display: flex;
  flex-direction: column;
}
.accessories-boxes .accessories-box.free .accessories-box__image {
  width: 160px;
  max-width: 160px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accessories-boxes .accessories-box.free .accessories-box__image img {
  max-width: 100%;
  height: auto;
}
.accessories-boxes .accessories-box__title {
  font-weight: 700;
  color: #202b37;
  margin-bottom: 8px;
}
.accessories-boxes .accessories-box__description {
  font-weight: 500;
  font-size: 14px;
  color: #344051;
}

.popup-download {
  width: 80%;
}
.popup-download__item {
  border-radius: 8px;
  background: #f2f4f7;
  padding: 24px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.popup-download__download-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  color: #202b37;
}
.popup-download .popup-download-label {
  border-radius: 8px;
  border: 1px solid #e4e7ec;
  background: #ffffff;
  padding: 2px 8px;
}
.popup-download__button {
  display: flex;
  align-items: flex-end;
}
.popup-download__button-icon {
  width: 17px;
  height: 17px;
  border-radius: 100%;
  cursor: pointer;
  background: #e4e7ec;
  background-image: url("./../../images/accordion/download-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
}
.popup-download .popup-download-headline__title {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 11px;
}
.popup-download .popup-download-headline__description {
  font-size: 14px;
  font-weight: 500;
}

.costs-section {
  min-width: 100%;
}
.costs-section .cost-description {
  background: #f2f4f7;
  border-radius: 16px;
  padding: 16px 12px;
  color: #637083;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 32px;
}
.costs-section .costs-section-tables .costs-tables-description {
  font-size: 12px;
  font-weight: 500;
}
.costs-section .costs-section-tables .costs-tables-description p > span {
  color: #dd460a;
}
.costs-section .costs-section-tables__headline {
  margin-bottom: 16px;
}
.costs-section .costs-section-tables__headline span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: #202b37;
}
.costs-section .costs-section-tables__headline span:last-child {
  font-size: 18px;
  color: #cf4008;
  font-weight: 700;
}
.costs-section .costs-section-tables__items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.costs-section .costs-section-tables__items .building-costs {
  align-self: start;
}
.costs-section .costs-section-tables__items .costs-right-table {
  width: 49%;
}
.costs-section .costs-section-tables__items .costs-right-table .costs-section-table {
  width: 100%;
  margin-bottom: 16px;
}
.costs-section .costs-section-table {
  border-radius: 16px;
  border: 1px solid #ced2da;
  width: 49%;
}
.costs-section .costs-section-table__line-content {
  display: none;
}
.costs-section .costs-section-table__line-content.active {
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.costs-section .costs-section-table__line-content span {
  font-weight: 500;
  font-size: 12px;
  color: #637083;
  margin-bottom: 4px;
}
.costs-section .costs-section-table__line-content p {
  font-weight: 500;
  font-size: 12px;
  color: #202b37;
}
.costs-section .costs-section-table__accordion-arrow {
  width: 20px;
  height: 20px;
  background: #f2f4f7;
  border-radius: 100%;
  cursor: pointer;
  background-image: url("./../../images/accordion/accordion-arrow.svg");
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
}
.costs-section .costs-section-table__accordion-arrow.active {
  transform: rotate(180deg);
}
.costs-section .costs-section-table__accordion {
  width: 55%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 16px;
  border-right: 1px solid #f2f4f7;
  min-height: 50px;
}
.costs-section .costs-section-table__accordion > span:first-child {
  font-size: 12px;
  font-weight: 500;
}
.costs-section .costs-section-table__line-info {
  display: flex;
  flex-direction: column;
  width: 42%;
}
.costs-section .costs-section-table__line-info > span {
  font-size: 12px;
  font-weight: 500;
}
.costs-section .costs-section-table__line-info > span:first-child {
  color: #637083;
}
.costs-section .costs-section-table__line-info > span:last-child {
  color: #202b37;
  display: flex;
}
.costs-section .costs-section-table__line-info > span:last-child p {
  margin-left: 3px;
  color: #f7941e;
}
.costs-section .costs-section-table__line-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  min-height: 50px;
}
.costs-section .costs-section-table__line--sum {
  background: #f2f4f7;
  border-radius: 0 0 16px 16px;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
}
.costs-section .costs-section-table__line--sum > span {
  font-weight: 500;
  color: #202b37;
  font-size: 12px;
}
.costs-section .costs-section-table__line--sum > span:first-child {
  width: 58%;
}
.costs-section .costs-section-table__line:not(:last-child) {
  border-bottom: 1px solid #e4e7ec;
}
.costs-section .costs-section-header {
  display: flex;
  justify-content: space-between;
}
.costs-section .costs-section-header__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.costs-section .costs-section-header__headline {
  font-size: 20px;
  font-weight: 700;
  color: #202b37;
  margin-bottom: 8px;
}
.costs-section .costs-section-header__description {
  font-size: 12px;
  color: #414e62;
  font-weight: 500;
}

.project-changes .button-with-arrow {
  margin-bottom: 24px;
  display: inline-block;
}
.project-changes__headline {
  margin-bottom: 16px;
}
.project-changes__headline span {
  font-size: 16px;
  color: #202b37;
  font-weight: 700;
  margin-bottom: 16px;
}
.project-changes__content p {
  font-size: 16px;
  color: #202b37;
  font-weight: 500;
  margin-bottom: 24px;
}

.documentation {
  display: flex;
  justify-content: space-between;
}
.documentation .documentation-list {
  width: 59%;
  padding: 16px;
  border: 1px solid #ced2da;
  border-radius: 16px;
}
.documentation .documentation-list__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 8px;
}
.documentation .documentation-list__icon.doc-normal {
  background-image: url("./../../images/documentation_section/doc-normal.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.documentation .documentation-list__icon.doc-plus {
  background-image: url("./../../images/documentation_section/doc-plus.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.documentation .documentation-list__icon.doc-energy {
  background-image: url("./../../images/documentation_section/doc-energy.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.documentation .documentation-list__icon.doc-ok {
  background-image: url("./../../images/documentation_section/doc-ok.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.documentation .documentation-list p {
  margin-bottom: 4px;
  font-size: 14px;
}
.documentation .documentation-list p .tooltip {
  display: inline-block;
}
.documentation .documentation-list__item {
  margin-bottom: 16px;
  display: flex;
}
.documentation .documentation-banner {
  width: 45%;
  height: 100%;
  background-image: url("./../../images/documentation_section/documentation-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 332px;
  max-height: 536px;
  border-radius: 16px;
  height: 536px;
}

.download-files {
  display: flex;
  justify-content: space-between;
}
.download-files .download-files-table {
  width: 49%;
  border: 1px solid #f2f4f7;
  border-radius: 16px;
}
.download-files .download-files-table__label {
  color: #637083;
  font-size: 14px;
  border-radius: 8px;
  padding: 2px 8px;
  border: 1px solid #e4e7ec;
  margin-left: 12px;
}
.download-files .download-files-table__line {
  justify-content: space-between;
  padding: 0 12px;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.download-files .download-files-table__line:not(:last-child) {
  border-bottom: 1px solid #f2f4f7;
}
.download-files .download-files-table__line > span {
  font-size: 14px;
  font-weight: 500;
}
.download-files .download-files-table__line > span:last-of-type {
  font-weight: 700;
  text-decoration: underline;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.download-files .download-files-table__line > span:last-of-type a {
  position: relative;
  color: #202b37;
  padding-right: 30px;
  margin-right: -30px;
  z-index: 2;
}
.download-files .download-files-table__line > span:last-of-type::after {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 100%;
  cursor: pointer;
  background: #e4e7ec;
  background-image: url("./../../images/accordion/download-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-left: 12px;
}

.section-inspiration .tabs__header {
  border-radius: 0px 0px 16px 16px;
  border-bottom: 1px solid #e4e7ec;
  background: #f2f4f7;
  display: flex;
  padding: 10px 24px 0px 24px;
  margin-bottom: 24px;
}
.section-inspiration .tabs__body .inside-tabs {
  display: flex;
  justify-content: center;
}
.section-inspiration .tabs__body .inside-tabs-wrapper {
  display: flex;
  justify-content: center;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  margin-bottom: 24px;
}
.section-inspiration .tabs__body .inside-tabs-wrapper__item {
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 700;
  color: #344051;
  background: #f2f4f7;
  cursor: pointer;
}
.section-inspiration .tabs__body .inside-tabs-wrapper__item:first-child {
  border-radius: 16px 0 0 16px;
}
.section-inspiration .tabs__body .inside-tabs-wrapper__item:last-child {
  border-radius: 0 16px 16px 0;
}
.section-inspiration .tabs__body .inside-tabs-wrapper__item.active {
  background: #f7941e;
}
.section-inspiration .tabs__tab-counter {
  background: #ffffff;
  border-radius: 150px;
  margin-left: 8px;
  padding: 2px 8px;
}
.section-inspiration .tabs__tab {
  border-radius: 18px 18px 0px 0px;
  border-top: 1px solid #ced2da;
  border-right: 1px solid #ced2da;
  border-left: 1px solid #ced2da;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  height: 50px;
  font-weight: 700;
  font-size: 14px;
  color: #344051;
  position: relative;
  top: 2px;
  cursor: pointer;
}
.section-inspiration .tabs__tab.active {
  background: #ffffff;
}
.section-inspiration .thumbnails {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.section-inspiration .thumbnails img {
  width: 19% !important;
  min-width: 170px;
  height: 100px;
  margin: 0 6px;
  cursor: pointer;
  border-radius: 16px;
  object-fit: cover;
  display: inline-block !important;
  user-select: none;
}
.section-inspiration .thumbnails img:last-child {
  width: auto;
  max-width: 100%;
}
.section-inspiration .thumbnails img.active-thumbnail {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border: 2px solid #cf4008;
}
.section-inspiration .thumbnails .custom-slider__arrow.custom_slider__arrow_small--left {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("./../../images/project_gallery/project-gallery-carousel-arrow-right.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  transform: rotate(180deg);
  background-color: #202b37;
  border-radius: 100%;
  margin-top: 30px;
  position: absolute;
  left: 8px;
}
.section-inspiration .thumbnails .custom-slider__arrow.custom_slider__arrow_small--right {
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("./../../images/project_gallery/project-gallery-carousel-arrow-right.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  background-color: #202b37;
  border-radius: 100%;
  margin-top: 30px;
  right: 8px;
  position: absolute;
}

.expired-discount-popup {
  font-size: 14px;
  font-weight: 700;
}
.expired-discount-popup__title {
  font-size: 28px;
}
.expired-discount-popup__information-paragraph {
  padding: 32px 0;
}
.expired-discount-popup__prev-price {
  text-align: end;
  font-size: 14px;
}
.expired-discount-popup__prev-price span {
  font-size: 20px;
  font-weight: 700;
}
.expired-discount-popup__curr-price {
  text-align: end;
  font-size: 20px;
}
.expired-discount-popup__curr-price span {
  font-size: 36px;
  font-weight: 700;
}
.expired-discount-popup__net-price {
  text-align: end;
  line-height: 2px;
  padding-bottom: 20px;
  font-size: 12px;
  color: #ced2da;
}
.expired-discount-popup__net-price span {
  color: #ffffff;
}
.expired-discount-popup__prices-wrapper {
  display: flex;
  flex-direction: column;
  background-color: #202b37;
  color: #ffffff;
  font-weight: 400;
  padding: 24px;
  border-radius: 10px;
}
.expired-discount-popup__buttons-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}
.expired-discount-popup__back-button {
  order: 0;
  font-size: 14px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
}
.expired-discount-popup__approve-button {
  order: 1;
  font-size: 16px;
  color: #ffffff;
  background-color: #cf4008;
  border: none;
  border-radius: 20px;
  padding: 12px 20px;
  font-family: "Satoshi", sans-serif;
}
.expired-discount-popup__approve-button a {
  padding: 12px 20px;
  color: #ffffff;
}
.expired-discount-popup__footer {
  order: 2;
  padding-top: 14px;
  text-align: right;
  width: 100%;
}

.basket-popup {
  font-size: 30px;
  font-weight: 700;
  width: 1124px;
  min-width: 1124px;
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup {
    padding: 16px !important;
  }
  .basket-popup .popup-close-button.basket.popup-button-close {
    top: 3px !important;
  }
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup.basket-popup-addons {
    height: 98vh !important;
  }
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup .paid-addition-teaser.swiper-slide {
    height: 259px !important;
  }
}
.basket-popup .basket-popup-catalog-price {
  color: #344051;
}
.basket-popup span#project_cart__promotion_price__label {
  display: none;
}
.basket-popup span#project_cart__promotion_price__counter {
  display: none;
}
.basket-popup .basket-title {
  margin-bottom: 16px;
  font-size: 30px;
  color: #202b37;
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup .basket-title {
    font-size: 24px;
  }
}
.basket-popup .basket-popup-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.basket-popup .basket-popup-buttons a {
  color: #202b37;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: underline;
  margin-right: 12px;
  cursor: pointer;
}
.basket-popup .basket-popup-buttons a:last-child {
  text-decoration: none;
}
.basket-popup .basket-popup-buttons button {
  display: flex;
  width: 315px;
  height: 60px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  background: #cf4008;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 28px;
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup .basket-popup-buttons button {
    height: 37px;
  }
}
.basket-popup .basket-popup-headline {
  display: flex;
  padding: 16px 0;
  border-top: 1px solid #ced2da;
  border-bottom: 1px solid #ced2da;
  margin-bottom: 16px;
}
.basket-popup .basket-popup-headline__price {
  display: flex;
  margin-left: auto;
  border-left: 1px solid #ced2da;
  padding-left: 24px;
  flex-direction: column;
  min-width: 240px;
  justify-content: center;
}
.basket-popup .basket-popup-headline__price .basket-popup-promotion-price.common {
  color: #344051;
}
.basket-popup .basket-popup-headline__price .basket-popup-promotion-price.featured {
  color: #f7941e;
  font-weight: 700;
}
.basket-popup .basket-popup-headline__price .basket-popup-catalog .basket-popup-catalog-price {
  font-size: 20px;
  font-weight: 700;
  color: #344051;
}
.basket-popup .basket-popup-headline__price .basket-popup-omnibus {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
}
.basket-popup .basket-popup-headline__price .basket-popup-catalog {
  display: flex;
  align-items: center;
  gap: 8px;
}
.basket-popup .basket-popup-headline__price .basket-popup-omnibus span {
  font-size: 12px;
  font-weight: 500;
}
.basket-popup .basket-popup-headline__price .basket-popup-catalog span.basket-popup-catalog-label {
  font-size: 12px;
  font-weight: 700;
  color: #344051;
}
.basket-popup .basket-popup-headline__price .project-card-header__catalog-price {
  font-size: 20px;
  font-weight: 700;
  color: #f7941e;
  white-space: nowrap;
}
.basket-popup .basket-popup-headline__price .project-card-header__catalog-label {
  font-size: 12px;
  font-weight: 700;
  color: #344051;
  margin-left: 8px;
}
.basket-popup .basket-popup-headline__picture {
  margin-right: 24px;
}
.basket-popup .basket-popup-headline__picture img {
  width: 160px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup .basket-popup-headline__picture img {
    width: 99px;
    height: 49px;
  }
}
.basket-popup .basket-popup-headline__picture.addon {
  margin-right: 24px;
}
.basket-popup .basket-popup-headline__picture.addon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
}
.basket-popup .basket-popup-headline__title {
  font-size: 26px;
  display: flex;
  flex-wrap: wrap;
  width: 65%;
}
@media (min-width: 1000px) and (max-width: 1350px) {
  .basket-popup .basket-popup-headline__title {
    font-size: 21px;
  }
}
.basket-popup .basket-popup-headline__title > span {
  color: #202b37;
}
.basket-popup .basket-popup-headline__title > span > span {
  color: #637083;
  display: flex;
  width: 100%;
}

.usp .section-header__actions > span {
  font-size: 18px;
  color: #637083;
  font-weight: 700;
}
.usp__media {
  margin-bottom: 64px;
}
.usp__media .usp-media-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.usp__media .usp-media-items {
  display: flex;
  gap: 8px;
}
.usp__media .usp-media-items > a {
  flex: 1 1 calc(33.3% - 16px);
  display: block;
}
.usp__media .usp-media-items > a .usp-media-item {
  display: flex;
  align-items: center;
  background: #344051;
  border-radius: 8px;
  gap: 8px;
  padding: 12px;
  height: 100%;
}
.usp__media .usp-media-items > a .usp-media-item__icon {
  background-image: url("./../../images/usp/usp-facebook.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
}
.usp__media .usp-media-items > a .usp-media-item__arrow {
  background-image: url("./../../images/usp/usp-white-arrow.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-left: auto;
}
.usp__media .usp-media-items > a .usp-media-item__content span {
  color: #f9fafb;
  font-weight: 500;
  font-size: 14px;
}
.usp__media .usp-media-items > a .usp-media-item__content p {
  color: #f7941e;
  font-size: 12px;
  font-weight: 500;
}
.usp__media .usp-media-items > a .usp-media-item__icon {
  min-width: 24px;
}
.usp__items {
  display: flex;
  margin-bottom: 32px;
}
.usp__items > a {
  flex: 1 1 25%;
  position: relative;
  margin: 0 70px 0 0;
  color: #202b37;
}
.usp__items > a:first-child {
  margin-left: 57px;
}
.usp__items > a::before {
  position: absolute;
  top: 0;
  left: -62px;
  content: "";
  display: flex;
  background: url("./../../images/usp/Right-edge.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 73px;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1300px) {
  .usp__items > a::before {
    width: 64px;
    left: -63px;
  }
}
.usp__items > a::after {
  position: absolute;
  top: 0;
  right: -57px;
  content: "";
  display: flex;
  background: url("./../../images/usp/Right-middle.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 64px;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1300px) {
  .usp__items > a::after {
    width: 75px;
    right: -61px;
  }
}
.usp__items .usp-item {
  background: #f2f4f7;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.usp__items .usp-item .link-with-arrow {
  flex-grow: 1;
  align-items: flex-end;
}
.usp__items .usp-item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
}
.usp__items .usp-item__list {
  list-style-type: none;
}
.usp__items .usp-item__list li {
  font-size: 14px;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}
.usp__items .usp-item__list li:before {
  background-image: url("./../../images/usp/usp-checkmark.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-left: auto;
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
}

@keyframes accordion-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.similar-projects-listing {
  margin-top: 16px;
}
.similar-projects-listing .filters_result_teaser {
  width: 100%;
}

.addon-detail.paid .popup__body {
  max-height: calc(100vh - 370px);
}
.addon-detail.popup {
  height: 100vh;
}
.addon-detail .popup__body {
  overflow-y: auto;
  max-height: calc(100vh - 180px);
  margin-bottom: 32px;
  padding-bottom: 0;
  font-size: 14px;
}
.addon-detail .popup__title {
  display: flex;
  gap: 16px;
  align-items: center;
}
.addon-detail .popup__title h2 {
  min-width: calc(100% - 80px);
  font-size: 28px;
  line-height: 36px;
}
.addon-detail .popup__title img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  min-width: 80px;
  object-fit: contain;
}
.addon-detail .addon-detail__image {
  margin-bottom: 32px;
}
.addon-detail .addon-detail__image img {
  max-width: 100%;
  border-radius: 8px;
}
.addon-detail .addon-detail__description {
  font-size: 14px;
  font-weight: 500;
}
.addon-detail .addon-detail__description li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  gap: 8px;
}
.addon-detail .addon-detail__description li:before {
  background-image: url("./../../images/cart/ok.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-block;
  content: "";
}
.addon-detail .addon-detail__price-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 157px;
  background-color: #f2f4f7;
  border-radius: 8px;
  font-size: 16px;
}
.addon-detail .addon-detail__price-container.active {
  background-color: #d9f2e5;
}
.addon-detail .addon-detail__price-container.active button {
  background-color: #9fdfbf;
  color: #202b37;
}
.addon-detail .addon-detail__price-container .addon-detail__price {
  color: #637083;
  font-weight: 700;
}
.addon-detail .addon-detail__price-container button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px 6px 8px;
  max-width: 168px;
  height: 36px;
  background-color: #cf4008;
  color: #ffffff;
  border: none;
  border-radius: 28px;
  font-weight: 700;
  margin-top: 16px;
}
.addon-detail .addon-detail__price-container button img {
  pointer-events: none;
}

.paid-addition-teaser {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 225px;
  background-color: #f2f4f7;
  height: 265px;
  border-radius: 8px;
  padding: 24px 0 16px;
}
.paid-addition-teaser.swiper-slide {
  display: flex;
  height: 265px;
}
.paid-addition-teaser.active {
  background-color: #d9f2e5;
}
.paid-addition-teaser.active button.remove-addon-from-cart {
  background-color: #9fdfbf;
}
.paid-addition-teaser button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px 6px 8px;
  max-width: 168px;
  height: 36px;
  background-color: #ffffff;
  border: none;
  border-radius: 28px;
  font-weight: 700;
  color: #202b37;
  font-size: 14px;
  font-family: "Satoshi", sans-serif;
}
.paid-addition-teaser button img {
  pointer-events: none;
}
.paid-addition-teaser_content {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  max-width: 168px;
  align-items: center;
  gap: 8px;
}
.paid-addition-teaser_text-wrapper {
  text-align: center;
  font-weight: 500;
}
.paid-addition-teaser_price {
  margin-top: 8px;
  font-weight: 700;
}
.paid-addition-teaser_image {
  width: 80px;
  height: 80px;
}
.paid-addition-teaser_image img {
  max-width: 100%;
}
.paid-addition-teaser span.paid-addition-teaser-question {
  position: absolute;
  top: 8px;
  right: 8px;
  max-height: 36px;
  cursor: pointer;
}

.visible {
  display: flex;
  animation: accordion-animation 0.4s linear;
}

.paid-addons-swiper {
  overflow: hidden;
}
.paid-addons-swiper__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid #ced2da;
}
.paid-addons-swiper__header h2 {
  font-size: 16px;
}
.paid-addons-swiper__header .addons-swiper-buttons {
  display: flex;
  gap: 12px;
}
.paid-addons-swiper__header .paid-addons-swiper-buttons__left, .paid-addons-swiper__header .paid-addons-swiper-buttons__right {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #202b37;
  width: 32px;
  height: 32px;
  border-radius: 40px;
  cursor: pointer;
}
.paid-addons-swiper__header .paid-addons-swiper-buttons__left img {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}
.paid-addons-swiper__header .paid-addons-swiper-buttons__right img {
  width: 16px;
  height: 16px;
}

.arrow-top-right {
  display: block;
  width: 20px;
  height: 20px;
  background: url("./../../images/project_cart/project-cart-arrow-top-right.svg") no-repeat;
}

.dot {
  width: 6px;
  height: 6px;
  background: #5eaa22;
  border-radius: 100%;
  margin-right: 4px;
  display: inline-block;
}

.additions-section-reminder {
  display: flex;
  flex-wrap: wrap;
  background-color: #F2F4F7;
  border-radius: 16px;
  padding: 12px;
  font-size: 14px;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.additions-section-reminder:after {
  background-image: url("./../../images/project_cart/addons-decoration.svg");
  background-size: 131px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 131px;
  height: 60px;
  display: inline-block;
  margin-right: 4px;
  content: "";
  position: absolute;
  right: -4px;
  bottom: -2px;
}
.additions-section-reminder__content-wrapper {
  display: flex;
  padding: 20px 8px 12px 8px;
}
.additions-section-reminder__header {
  width: 100%;
  border-bottom: 1px solid #E4E7EC;
  padding-bottom: 12px;
  font-weight: 700;
}
.additions-section-reminder__item {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
.additions-section-reminder__item__icon {
  width: 20%;
  background-color: #637083;
  width: 40px;
  height: 40px;
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.1411764706);
  backdrop-filter: blur(10px);
  border-radius: 38px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.additions-section-reminder__item__text {
  font-weight: 500;
  width: 80%;
}
.additions-section-reminder__item__link {
  width: 100%;
  margin-top: 12px;
}

.additions-section-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.additions-section-item {
  display: flex;
  gap: 16px;
  flex: 1 1 calc(50% - 16px);
  background: #F2F4F7;
  border-radius: 8px;
  max-width: calc(50% - 8px);
}

.additions-section-item__image {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  padding-left: 16px;
  display: flex;
  align-items: center;
}

.additions-section-item__image img {
  max-width: 100%;
  object-fit: contain;
}

.additions-section-item__title {
  color: #202B37;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

span.additions-section-item__header {
  width: calc(100% - 52px);
}

.additions-section-item__description {
  color: #637083;
  font-size: 14px;
  font-weight: 500;
}

.additions-section-item__link {
  margin-top: 16px;
}

.additions-section-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px 16px 12px;
  flex: 1;
}

span.additions-section-item-question {
  position: absolute;
  right: 16px;
  top: 12px;
  max-height: 36px;
  cursor: pointer;
}

.section.additions-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.additions-section-paid {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  width: 100%;
}
.additions-section-paid p {
  color: #344051;
  font-weight: 500;
  margin-bottom: 24px;
}
.additions-section-paid_moreBtn {
  display: flex;
  border: none;
  background-color: #cf4008;
  color: #ffffff;
  margin: 24px auto;
  padding: 7px 20px;
  line-height: 22px;
  font-weight: 700;
  border-radius: 28px;
  font-size: 14px;
  font-family: "Satoshi", sans-serif;
}

.additions-section-paid-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.calculator {
  position: relative;
  border: 1px solid #ced2da;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 40px;
}
.calculator__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.calculator__title {
  font-size: 18px;
}
.calculator__description {
  color: #ff6200;
  font-weight: 700;
  font-size: 18px;
}
.calculator__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 16px 0 24px;
  gap: 40px 20px;
}
@media (max-width: 1240px) {
  .calculator__form {
    gap: 40px 0;
  }
}
.calculator__form-group {
  display: flex;
  flex-direction: column;
}
.calculator__form-group.cost {
  width: 320px;
}
@media (max-width: 1370px) {
  .calculator__form-group.cost {
    width: 30%;
  }
}
@media (max-width: 1000px) {
  .calculator__form-group.cost {
    width: 240px;
  }
}
@media (max-width: 800px) {
  .calculator__form-group.cost {
    width: 100%;
  }
}
.calculator__form-group.range {
  height: 77px;
}
@media (max-width: 1000px) {
  .calculator__form-group.range {
    width: 200px;
  }
}
@media (max-width: 800px) {
  .calculator__form-group {
    width: 100%;
  }
}
.calculator__label {
  font-size: 14px;
  font-weight: 500;
  color: #344051;
  margin-bottom: 6px;
}
.calculator__input {
  padding: 16px 12px;
  border-radius: 8px;
  border: 1px solid #ced2da;
  outline: none;
  color: #637083;
}
.calculator__range {
  display: flex;
  align-items: end;
  height: 100%;
  width: 285px;
}
@media (max-width: 1240px) {
  .calculator__range {
    width: 240px;
  }
}
@media (max-width: 1200px) {
  .calculator__range {
    width: 200px;
  }
}
.calculator__range-label {
  font-family: "Satoshi";
  font-weight: 500;
  font-size: 14px;
}
.calculator__range-track {
  position: relative;
  width: 100%;
  margin: 3px 6px 3px 2px;
}
.calculator__range-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -25px;
  left: 0;
  transform: translateX(-50%);
  background: #344051;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  width: 32px;
  height: 26px;
  pointer-events: none;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1294117647);
}
.calculator__range-input {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  font-family: "Satoshi";
  background: linear-gradient(90deg, #344051 60%, #ced2da 60%);
  outline: none;
  border-radius: 12px;
}
.calculator__range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid #344051;
  border-radius: 50%;
}
.calculator__ad {
  position: absolute;
  font-family: "Satoshi";
  color: #414e62;
  top: 10px;
  right: 10px;
  font-size: 8px;
  letter-spacing: 0.4px;
  font-weight: 500;
  text-transform: uppercase;
}
.calculator__button {
  font-family: "Satoshi";
}
.calculator__button--primary {
  background-color: #ff6200;
  color: #ffffff;
  border: none;
  border-radius: 52px;
  height: fit-content;
  font-size: 16px;
  padding: 4px 20px;
  max-width: 213px;
  align-self: end;
}
@media (max-width: 1000px) {
  .calculator__button--primary {
    max-width: 160px;
  }
}
@media (max-width: 850px) {
  .calculator__button--primary {
    width: 100%;
    max-width: none;
  }
}
.calculator__button--secondary {
  background-color: #ffffff;
  border: 1px solid #202b37;
  color: #202b37;
  font-size: 14px;
  font-weight: 700;
  border-radius: 16px;
  padding: 3px 6px;
}
.calculator__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}
.calculator__rrso {
  color: #202b37;
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}
.calculator__bank-name {
  display: inline-block;
  margin-left: 12px;
}
@media (max-width: 810px) {
  .calculator__bank-name {
    margin-left: 0;
  }
}
.calculator__tooltip-wrapper {
  position: relative;
}
.calculator__tooltip {
  display: none;
  position: absolute;
  background-color: #141c24;
  bottom: 40px;
  left: 0;
  font-weight: 500;
  border-radius: 8px;
  width: 240px;
  max-height: 88px;
  color: #ffffff;
  font-size: 12px;
  padding: 0px 4px 6px 8px;
}
.calculator__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 40%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #141c24;
}
.calculator__tooltip-content {
  overflow-y: scroll;
  height: 56px;
}
.calculator__tooltip-content::-webkit-scrollbar {
  width: 4px;
}
.calculator__tooltip-content::-webkit-scrollbar-track {
  display: none;
}
.calculator__tooltip-content::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border-left: 0;
  border-right: 0;
  background-color: #d5d5d5;
}
.calculator__tooltip--visible {
  display: block;
}
.calculator__tooltip-close {
  top: 6px;
  right: 6px;
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/project_calculator/close.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  line-height: 1.2;
}

.filters__container {
  display: flex;
  width: 332px;
  padding: 32px 14px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  background-color: #344051;
  border-radius: 16px;
  box-sizing: border-box;
  margin-right: 15px;
  margin-bottom: 42px;
}
.filters__container_headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}
.filters__container_headline h2 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  color: #ffffff;
}
.filters__container_headline .clean-filters {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
}
.filters__container_headline .clean-filters::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("./../../images/filters/clean_filters_x_white.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  user-select: none;
}
.filters__container .horizontal-line {
  display: inline-flex;
  width: 100%;
  height: 1px;
  background-color: #637083;
}
.filters__container .clean-filters-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ffffff;
  padding: 0 10px;
  user-select: none;
  cursor: pointer;
}
.filters__container .clean-filters-btn::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("./../../images/filters/clean_filters_x_white.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 2px;
  user-select: none;
}
.filters__container .tooltip:hover .tooltip-content {
  transform: translateX(-20%);
  bottom: unset;
  top: 24px;
  z-index: 6;
}
.filters__container .tooltip:hover .tooltip-content::after {
  left: 20%;
  bottom: unset;
  top: -10px;
  border-top: unset;
  border-bottom: 10px solid #637083;
}

.filters__container_box {
  position: relative;
  display: flex;
  padding: 0 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
}
.filters__container_box.height_at_ridge .filters__container_box__content__wrapper__no-name {
  padding: 12px 10px;
  background-color: unset;
  margin-bottom: 0;
}
.filters__container_box.height_at_ridge .filters__container_box__content__wrapper__no-name {
  padding: 0;
  background-color: unset;
  margin-bottom: 0;
}
.filters__container_box.house_dimensions .filters__container_box__content__wrapper__no-name {
  padding: 12px 10px;
  margin-bottom: 0;
}
.filters__container_box.house_dimensions .filters__container_box__content {
  padding: 0;
}
.filters__container_box.house_dimensions .filters__container_box__content__wrapper {
  background-color: unset;
  padding: 4px 10px 4px 4px;
}
.filters__container_box.house_dimensions .filters__container_box__content .desc {
  margin-left: 12px;
}
.filters__container_box.house_dimensions .filters__container_box__content--input {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  gap: 10px;
  margin-left: 0;
}
.filters__container_box.house_dimensions .filters__container_box__content--input .input-wrapper {
  max-width: 48%;
  margin-bottom: 0;
}
.filters__container_box.house_dimensions .filters__container_box__content--input .input-slot {
  width: 100%;
}
.filters__container_box.house_dimensions .filters__container_box__content--input .input-slot .input-slot--input input {
  width: 100%;
}
.filters__container_box.entry_dimensions .filters__container_box__content__wrapper__no-name {
  padding: 12px 10px;
  margin-bottom: 0;
}
.filters__container_box.entry_dimensions .filters__container_box__content {
  padding: 12px 0;
}
.filters__container_box.entry_dimensions .filters__container_box__content__wrapper {
  background-color: unset;
  padding: 4px 10px 4px 4px;
}
.filters__container_box.entry_dimensions .filters__container_box__content .desc {
  margin-left: 12px;
}
.filters__container_box.entry_dimensions .filters__container_box__content--input {
  margin-left: 0;
}
.filters__container_box.entry_dimensions .filters__container_box__content--input .input-slot {
  width: 90%;
}
.filters__container_box.entry_dimensions .filters__container_box__content--input .input-slot .input-slot--input input {
  width: 100%;
}
.filters__container_box.plot_dimensions .filters__container_box__content {
  padding: 12px 0;
}
.filters__container_box.plot_dimensions .filters__container_box__content__wrapper {
  background-color: unset;
  padding: 4px 10px 4px 4px;
}
.filters__container_box.plot_dimensions .filters__container_box__content .desc {
  margin-left: 12px;
}
.filters__container_box.plot_dimensions .filters__container_box__content--input {
  margin-left: 0;
}
.filters__container_box.plot_dimensions .filters__container_box__content--input .input-slot {
  width: 90%;
}
.filters__container_box.plot_dimensions .filters__container_box__content--input .input-slot .input-slot--input input {
  width: 100%;
}
.filters__container_box.plot_dimensions .filters__container_box__content__wrapper__no-name {
  padding: 16px 10px;
  background-color: unset;
  margin-bottom: 0;
}
.filters__container_box.plot_dimensions .filters__container_box__content__wrapper__no-name .filters__container_box__content--checkbox {
  margin: -12px 0;
}
.filters__container_box.roof_angle .filters__container_box__content--input .input-slot--input p:first-of-type {
  padding: 12px 6px;
  font-size: 16px;
}
.filters__container_box.boxes_count .filters__container_box__content--input .input-slot--input input {
  width: 100%;
  border-radius: 8px;
}
.filters__container_box .desc {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.filters__container_box .desc.hidden {
  display: none;
}
.filters__container_box .desc .tooltip {
  display: inline-block;
  margin-left: 6px;
}
.filters__container_box__headline {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  width: 80%;
  cursor: pointer;
}
.filters__container_box__headline p {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  user-select: none;
}
.filters__container_box__headline .tooltip {
  margin-left: 8px;
  margin-top: 2px;
}
.filters__container_box__headline::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  top: 2px;
  right: 10px;
  background-image: url("./../../images/filters/expand_up.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(242, 244, 247, 0.8);
  border-radius: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.filters__container_box__headline.active::after {
  transition: 0.6s;
  transform: rotate(180deg);
}
.filters__container_box__content {
  width: 100%;
  border-radius: 16px;
  background-color: rgba(65, 78, 98, 0.5019607843);
  padding: 12px 10px;
  transition: 0.6s;
}
.filters__container_box__content .input-wrapper {
  margin-bottom: 31px;
}
.filters__container_box__content--boxes {
  width: 100%;
  border-radius: 16px;
}
.filters__container_box__content--boxes.hide {
  display: none;
}
.filters__container_box__content--boxes .desc {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.filters__container_box__content--boxes .desc.hidden {
  display: none;
}
.filters__container_box__content--boxes .desc .tooltip {
  display: inline-block;
  margin-left: 6px;
}
.filters__container_box__content--boxes .box-quantity {
  border-radius: 16px;
  box-sizing: border-box;
  width: 100%;
}
.filters__container_box__content--boxes .box-quantity-slot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 8px;
  min-width: 32px;
  height: 28px;
  text-align: center;
}
.filters__container_box__content--boxes .box-quantity-slot input[type=checkbox] {
  display: flex;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.filters__container_box__content--boxes .box-quantity-slot p,
.filters__container_box__content--boxes .box-quantity-slot label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0;
  color: #414e62;
  padding: 4px 12px;
  user-select: none;
}
.filters__container_box__content--boxes .box-quantity-slot.active {
  border: 1px solid #cf4008;
  background-color: #cf4008;
}
.filters__container_box__content--boxes .box-quantity-slot.active p,
.filters__container_box__content--boxes .box-quantity-slot.active label {
  color: #ffffff;
}
.filters__container_box__content--boxes .box-quantity-input {
  margin-top: 12px;
}
.filters__container_box__content--boxes .box-more {
  border-radius: 16px;
  padding: 12px 10px;
  background: #414e62;
  box-sizing: border-box;
  width: 100%;
}
.filters__container_box__content--boxes .box-more .more {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 12px 10px 0px;
  color: #97a1af;
  cursor: pointer;
  user-select: none;
}
.filters__container_box__content--boxes .box-more .more span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 4px 8px 6px 6px;
  box-sizing: border-box;
  background-color: #637083;
  color: #e4e7ec;
  border-radius: 8px;
  user-select: none;
}
.filters__container_box__content--boxes .box-more__content {
  display: none;
  width: 100%;
}
.filters__container_box__content--boxes .box-more__content--checkbox {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.filters__container_box__content--boxes .box-more__content--checkbox:last-of-type {
  margin-bottom: 0;
}
.filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox {
  width: 100%;
  font-size: inherit;
}
.filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox--text {
  width: 100%;
  display: inline-block;
  align-items: center;
  max-width: 97%;
}
.filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox--checkmark {
  top: 3px;
}
.filters__container_box__content--boxes .box-more .subbox-quantity {
  border-radius: 16px;
  padding: 12px 0;
  box-sizing: border-box;
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
  margin-bottom: 12px;
}
.filters__container_box__content--boxes .box-more .subbox-quantity.hidden {
  display: none;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-desc p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-slot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 8px;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-slot input[type=checkbox] {
  display: flex;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-slot label,
.filters__container_box__content--boxes .box-more .subbox-quantity-slot p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0;
  color: #414e62;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-slot.active {
  border: 1px solid #cf4008;
  background-color: #cf4008;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-slot.active p,
.filters__container_box__content--boxes .box-more .subbox-quantity-slot.active label {
  color: #ffffff;
}
.filters__container_box__content--boxes .box-more .subbox-quantity-input {
  margin-top: 12px;
}
.filters__container_box__content .more {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 6px 0;
  color: #97a1af;
  cursor: pointer;
  user-select: none;
}
.filters__container_box__content .more span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 4px 8px 6px 6px;
  box-sizing: border-box;
  background-color: #637083;
  color: #e4e7ec;
  border-radius: 8px;
  user-select: none;
}
.filters__container_box__content.hide {
  display: none;
}
.filters__container_box__content--checkbox {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.filters__container_box__content--checkbox .custom-checkbox {
  font-size: inherit;
  width: 100%;
}
.filters__container_box__content--checkbox .custom-checkbox--text {
  width: 100%;
  display: inline-block;
  align-items: center;
}
.filters__container_box__content--checkbox .custom-checkbox--text sup {
  margin-bottom: 6px;
}
.filters__container_box__content--checkbox .custom-checkbox--quantity {
  margin-left: 0;
}
.filters__container_box__content--checkbox .custom-checkbox--checkmark {
  top: 3px;
}
.filters__container_box__content--checkbox .tooltip {
  position: absolute;
  top: 10px;
  right: 0;
  margin-left: 10px;
}
.filters__container_box__content--checkbox:last-of-type {
  margin-bottom: 0;
}
.filters__container_box__content--checkbox.hidden {
  display: none;
}
.filters__container_box__content--input {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
}
.filters__container_box__content--input p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 6px 0 6px;
  color: #e4e7ec;
}
.filters__container_box__content--input .input-slot {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.filters__container_box__content--input .input-slot.plot-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
  width: 127px;
}
.filters__container_box__content--input .input-slot.plot-area .input-slot--input {
  display: flex;
  align-items: center;
}
.filters__container_box__content--input .input-slot.plot-area .input-slot--input input {
  width: 90px;
  margin-bottom: 10px;
  -moz-appearance: textfield;
}
.filters__container_box__content--input .input-slot.plot-area .input-slot--input p {
  margin-bottom: 10px;
}
.filters__container_box__content--input .input-slot--label label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #f9fafb;
}
.filters__container_box__content--input .input-slot--input {
  display: flex;
  align-items: center;
}
.filters__container_box__content--input .input-slot--input input {
  width: 70px;
  height: 40px;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #f9fafb;
  border-radius: 8px 0 0 8px;
  background-color: #414e62;
  border: 1px solid #637083;
  -moz-appearance: textfield;
}
.filters__container_box__content--input .input-slot--input input:hover, .filters__container_box__content--input .input-slot--input input:focus {
  border: 0;
  outline: 1px solid #4c94ff;
}
.filters__container_box__content--input .input-slot--input input::-webkit-inner-spin-button, .filters__container_box__content--input .input-slot--input input::-webkit-outer-spin-button {
  display: none;
}
.filters__container_box__content--input .input-slot--input p {
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0;
  color: #f9fafb;
  padding: 8px 6px;
  box-sizing: border-box;
  border: 1px solid #637083;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  width: max-content;
  height: 40px;
}
.filters__container_box__content--input .input-slot--input p:first-of-type {
  margin-left: 0;
  padding: 8px 6px 8px 0;
}
.filters__container_box__content--input .input-slot--input p sup {
  font-size: 8px;
}
.filters__container_box__content .desc {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.filters__container_box__content .desc.hidden {
  display: none;
}
.filters__container_box__content .desc .tooltip {
  display: inline-block;
  margin-left: 6px;
}
.filters__container_box__content__wrapper {
  background-color: #414e62;
  padding: 12px 10px;
}
.filters__container_box__content__wrapper, .filters__container_box__content__wrapper__no-name {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 16px;
  margin: 0 0 10px 0;
}
.filters__container_box__content__wrapper.hidden, .filters__container_box__content__wrapper__no-name.hidden {
  display: none;
}
.filters__container_box__content__wrapper .more, .filters__container_box__content__wrapper__no-name .more {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 6px 0;
  color: #97a1af;
  cursor: pointer;
}
.filters__container_box__content__wrapper .more span, .filters__container_box__content__wrapper__no-name .more span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 4px 8px 6px 6px;
  box-sizing: border-box;
  background-color: #637083;
  color: #e4e7ec;
  border-radius: 8px;
}
.filters__container_box__content__wrapper--checkbox, .filters__container_box__content__wrapper__no-name--checkbox {
  margin: 10px 0 10px 0;
}
.filters__container_box__content__wrapper--checkbox .custom-checkbox, .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox {
  font-size: inherit;
  width: 100%;
}
.filters__container_box__content__wrapper--checkbox .custom-checkbox--text, .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox--text {
  width: 100%;
  display: inline-block;
  align-items: center;
}
.filters__container_box__content__wrapper--checkbox .custom-checkbox--quantity, .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox--quantity {
  margin-left: 0;
}
.filters__container_box__content__wrapper--checkbox .custom-checkbox--checkmark, .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox--checkmark {
  top: 3px;
}
.filters__container_box__content__wrapper--checkbox.hidden, .filters__container_box__content__wrapper__no-name--checkbox.hidden {
  display: none;
}
.filters__container_box__content__wrapper__no-name .filters__container_box__content--input {
  margin-left: -8px;
}
.filters__container_box__content__wrapper__no-name .input-wrapper {
  margin-bottom: 8px;
}
.filters__container_box__content__wrapper__no-name .input-wrapper > p {
  margin: 0 0 2px 0;
}
.filters__container_box__content .plot-image {
  width: 100%;
}
.filters__container_box__content .plot-image img {
  width: 100%;
  height: auto;
}

.filters-title-desc__container {
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background-color: #f2f4f7;
  border-radius: 16px;
  margin-bottom: 24px;
}
.filters-title-desc__container--top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 0 16px 0;
}
.filters-title-desc__container--top .title {
  display: flex;
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
  margin: 0;
}
.filters-title-desc__container--top select#sort {
  border-radius: 8px;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  padding: 12px 8px 12px 12px;
  box-sizing: border-box;
  margin: 0 12px 0 27px;
  height: 44px;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  cursor: pointer;
}
.filters-title-desc__container--top .pagination_top {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.filters-title-desc__container--top .pagination_top__arrow-left {
  width: 20px;
  height: 20px;
  background-image: url("./../../images/filters/chevron_left.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-right: 16px;
}
.filters-title-desc__container--top .pagination_top__arrow-left.disabled {
  background-image: url("./../../images/filters/chevron_left_disabled.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: default;
  pointer-events: none;
}
.filters-title-desc__container--top .pagination_top__input--actual-page input {
  border-radius: 8px;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  padding: 12px 8px 12px 12px;
  width: 71px;
  height: 44px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  -moz-appearance: textfield;
}
.filters-title-desc__container--top .pagination_top__input--actual-page input::-webkit-inner-spin-button, .filters-title-desc__container--top .pagination_top__input--actual-page input::-webkit-outer-spin-button {
  display: none;
}
.filters-title-desc__container--top .pagination_top__input--actual-page input:hover, .filters-title-desc__container--top .pagination_top__input--actual-page input:focus {
  border: 0;
  outline: 1px solid #4c94ff;
}
.filters-title-desc__container--top .pagination_top__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  margin: 0 8px;
}
.filters-title-desc__container--top .pagination_top__last-page {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  margin: 0;
  width: 28px;
}
.filters-title-desc__container--top .pagination_top__arrow-right {
  width: 20px;
  height: 20px;
  background-image: url("./../../images/filters/chevron_right.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-left: 16px;
}
.filters-title-desc__container--top .pagination_top__arrow-right.disabled {
  background-image: url("./../../images/filters/chevron_right_disabled.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: default;
  pointer-events: none;
}
.filters-title-desc__container--bottom .filters-projects-quantity {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: #637083;
  margin: 0 0 12px 0;
}
.filters-title-desc__container--bottom .filters-projects-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #344051;
  margin: 0;
}

.filters-results__container {
  position: relative;
}
.filters-results__container__slots {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.filters-results__container.active-spinner .filters_result_teaser {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.filters-results__container.active-spinner::after {
  position: fixed;
  display: block;
  top: 480px;
  left: calc(50vw + 80px);
  content: "";
  width: 200px;
  height: 200px;
  background-image: url("./../../images/filters/spinner.svg");
  background-size: 200px 200px;
  background-repeat: no-repeat;
  background-position: center center;
  animation: spinner-rotate 2s infinite linear;
  z-index: 15;
}

@keyframes spinner-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1380px) {
  .filters-results__container.active-spinner::after {
    top: 50vh;
  }
}
a.filters_result_teaser {
  margin-right: 0;
}

.filters_result_teaser {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-right: 16px;
  margin-bottom: 14px;
  margin-top: 18px;
  box-shadow: 0px 6px 12px 0px rgba(28, 39, 49, 0.05);
  width: calc(33% - 16px);
  height: 410px;
  box-sizing: border-box;
  border-radius: 16px;
}
.filters_result_teaser:hover {
  box-shadow: 0px 0px 12px 0px #f7941e;
}
.filters_result_teaser__image {
  display: flex;
  position: relative;
  border-radius: 16px 16px 0 0;
  height: 214px;
  width: 100%;
}
.filters_result_teaser__image a {
  width: 100%;
}
.filters_result_teaser__image a img {
  width: 100%;
  height: 214px;
  min-height: 214px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.filters_result_teaser__image a img::after {
  display: block;
  background-image: url("./../../images/filters/teaser-plug.jpg");
  background-size: 100%;
  width: 100%;
  height: 214px;
  content: "";
  border-radius: 16px 16px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.filters_result_teaser__image .video-play__flat {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background-color: #141c24;
  width: 42px;
  height: 22px;
  border-radius: 97px;
  cursor: pointer;
  background-size: 18px 18px;
  background-image: url("./../../images/project_video_player/project-video-player-play.svg");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.filters_result_teaser__image .info-bar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  pointer-events: none;
}
.filters_result_teaser__image .info-bar > div {
  color: #141c24;
  font-weight: 500 !important;
}
.filters_result_teaser__image .info-bar .promotion {
  display: flex;
  height: 26px;
  padding: 5px 5px 5px 8px;
  justify-content: center;
  align-items: center;
  width: max-content;
  border-radius: 25px;
  background-color: #ffb257;
  color: #141c24;
  margin-right: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}
.filters_result_teaser__image .info-bar .promotion .discount {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  border-radius: 10px;
  padding: 2px 6px;
  background: #cf4008;
  margin-left: 4px;
}
.filters_result_teaser__image .info-bar .new {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  background: #9fdfbf;
  width: 60px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
}
.filters_result_teaser__image .info-bar .oze {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  width: 57px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
}
.filters_result_teaser__image .info-bar .info-label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
  padding: 0 8px;
}
.filters_result_teaser__image .info-bar .info-label a {
  color: #141c24;
}
.filters_result_teaser__image .info-bar .hit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  border-radius: 10px;
  padding: 2px;
  width: 51px;
  height: 26px;
  margin-right: 4px;
  border-radius: 25px;
  color: #141c24;
}
.filters_result_teaser__desc {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 213px;
  padding: 14px;
  box-sizing: border-box;
  background-color: #141c24;
  border-radius: 0 0 16px 16px;
}
.filters_result_teaser__desc--number p,
.filters_result_teaser__desc--number a {
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  margin: 0 0 4px 0;
  color: #97a1af;
  text-decoration: none;
}
.filters_result_teaser__desc--title {
  min-height: 52px;
}
.filters_result_teaser__desc--title p,
.filters_result_teaser__desc--title a {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  text-decoration: none;
}
.filters_result_teaser__desc--icons_and_area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.filters_result_teaser__desc--icons_and_area .teaser-area {
  display: flex;
  flex-direction: row;
}
.filters_result_teaser__desc--icons_and_area .teaser-area .area {
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ffffff;
}
.filters_result_teaser__desc--icons_and_area .teaser-area .area sup {
  font-size: 8px;
}
.filters_result_teaser__desc--icons_and_area .teaser-area .tooltip {
  margin-left: 4px;
}
.filters_result_teaser__desc--icons_and_area .teaser-area .tooltip:hover .tooltip-content {
  left: unset;
  right: -24px;
  transform: unset;
}
.filters_result_teaser__desc--icons_and_area .teaser-area .tooltip:hover .tooltip-content:after {
  left: unset;
  transform: unset;
  right: 22px;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box:hover .tooltip-content {
  display: flex;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .tooltip-content {
  display: none;
  left: 0 !important;
  bottom: 30px !important;
  width: 265px;
  transform: translate(0);
  z-index: 1;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .tooltip-content:after {
  width: 0;
  bottom: initial !important;
  right: 0 !important;
  top: 100% !important;
  left: 16px !important;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.floors {
  background-image: url("./../../images/project_parameters/project-parameters-floors-white.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.djp {
  background-image: url("./../../images/project_parameters/project-parameters-djp-image-white.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.backroom {
  background-image: url("./../../images/project_parameters/project-parameters-backroom-white.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.horses {
  background-image: url("./../../images/project_parameters/project-parameters-horses-white.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.boxes {
  background-image: url("./../../images/project_parameters/project-parameters-cows-white.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.bedrooms {
  background-image: url("./../../images/project_parameters/project-parameters-bedrooms-white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.bathrooms {
  background-image: url("./../../images/project_parameters/project-parameters-bathrooms-white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.garage_spots {
  background-image: url("./../../images/project_parameters/project-parameters-garage_spots-white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .teaser-icons__icon.sun {
  background-image: url("./../../images/project_parameters/project-parameters-light-sun-white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser__desc--icons_and_area .teaser-icons__box .project-parameters-quantity {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #e4e7ec;
  margin: 0;
}
.filters_result_teaser__desc--price_and_btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.filters_result_teaser__desc--price_and_btns .teaser-price {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top .price {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
  color: #ffffff;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top .price.discounted {
  color: #f7941e;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top .concept {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  padding: 11px 24px 13px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  width: 152px;
  white-space: pre;
  z-index: 5;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top .catalog-price {
  display: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 0 6px;
  color: #637083;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top .catalog-price s {
  color: #ffffff;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--top .catalog-price.show-catalog-price {
  display: flex;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--bottom .discount-price {
  display: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
  color: #637083;
}
.filters_result_teaser__desc--price_and_btns .teaser-price--bottom .discount-price.show-old-price {
  display: flex;
  flex-wrap: wrap;
}
.filters_result_teaser .teaser-btns {
  position: absolute;
  display: flex;
  flex-direction: row;
  z-index: 1;
  bottom: 14px;
  right: 14px;
}
.filters_result_teaser .teaser-btns .favorites {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-favourites.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-left: 8px;
}
.filters_result_teaser .teaser-btns .favorites.active {
  background-image: url("./../../images/favorite/favorite-heart-active.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.filters_result_teaser .teaser-btns .project-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 17px 20px -2px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  background-image: url("./../../images/project_gallery/project-gallery-compare.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  margin-left: 8px;
}
.filters_result_teaser .teaser-btns .project-compare.active {
  background-color: #ffffff;
  background-image: url("./../../images/project_gallery/project-gallery-compare-active-state.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}

.filters_result_banner {
  height: 143px;
  display: flex;
  margin: 24px 0;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  border: 1px solid #e4e7ec;
  border-radius: 16px;
}
.filters_result_banner__items--image {
  background-image: url("./../../images/filters/filters_banner.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  width: 425px;
  height: 143px;
}
.filters_result_banner__items--text {
  width: 80%;
}
.filters_result_banner__items--text h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 8px;
}
@media (max-width: 1400px) {
  .filters_result_banner__items--text h3 {
    font-size: 15px;
  }
}
.filters_result_banner__items--text p {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 1400px) {
  .filters_result_banner__items--text p {
    font-size: 14px;
  }
}
.filters_result_banner__items--content {
  padding: 24px;
  position: relative;
  width: 100%;
}
.filters_result_banner__items--content a {
  color: #202b37;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  display: flex;
  width: 85px;
  bottom: 24px;
  right: 24px;
  cursor: pointer;
}
.filters_result_banner__items--content a:after {
  background-image: url("./../../images/filters/banner-right-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  background-size: 24px;
  position: absolute;
  right: 0;
}

@media (min-width: 1480px) {
  .filters_result_teaser {
    width: 332px;
  }
}
@media (max-width: 1230px) {
  .filters_result_teaser {
    width: calc(50% - 16px);
  }
}
.active-filters-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.active-filters-container .title-box .title {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #637083;
  margin-bottom: 8px;
}
.active-filters-container .active-filters-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.active-filters-container .active-filters-box--slot {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #e4e7ec;
  cursor: pointer;
  white-space: pre;
}
.active-filters-container .active-filters-box--slot img {
  object-fit: contain;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.active-filters-container .active-filters-box--slot p {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  color: #344051;
  white-space: pre;
}
.active-filters-container .active-filters-box--title p {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  color: #344051;
  margin-right: 4px;
}
.active-filters-container .active-filters-box--clean_filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
.active-filters-container .active-filters-box--clean_filters img {
  object-fit: contain;
  width: 20px;
  height: 20px;
}
.active-filters-container .active-filters-box--clean_filters p {
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #dd460a;
}

.collection-seo-text-bottom__container {
  margin: 0 auto 48px auto;
  padding: 0 32px;
  max-width: 1440px;
}
.collection-seo-text-bottom__container--title h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
  margin: 0 0 24px 0;
}
.collection-seo-text-bottom__container--desc h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: #344051;
  margin: 32px 0 12px 0;
}
.collection-seo-text-bottom__container--desc ul {
  padding-left: 24px;
}
.collection-seo-text-bottom__container--desc ul li {
  margin: 0 0 6px 0;
}
.collection-seo-text-bottom__container--desc ul li:last-of-type {
  margin: 0 0 12px 0;
}
.collection-seo-text-bottom__container--desc p,
.collection-seo-text-bottom__container--desc li {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #344051;
  margin: 0 0 12px 0;
}
.collection-seo-text-bottom__container--desc p a,
.collection-seo-text-bottom__container--desc li a {
  color: #344051;
  text-decoration: underline;
}
.collection-seo-text-bottom__container--desc p a:hover,
.collection-seo-text-bottom__container--desc li a:hover {
  text-decoration: unset;
}
.collection-seo-text-bottom__container--desc p img,
.collection-seo-text-bottom__container--desc li img {
  margin: 0 32px 12px 0;
  object-fit: contain;
}

.filters_result_next_page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 16px;
  width: 100%;
  height: 410px;
  border: 1px solid #ced2da;
  background: #f2f4f7;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  overflow: hidden;
  cursor: pointer;
}
.filters_result_next_page--img img {
  position: absolute;
  left: calc(50% - 90px);
  bottom: calc(50% - 90px);
}
.filters_result_next_page--text span {
  position: absolute;
  right: 24px;
  bottom: 48px;
  display: inline-flex;
  flex-wrap: wrap;
  width: 80px;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
  text-align: right;
}
.filters_result_next_page--text svg {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.no-teasers-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 64px 0;
  width: 100%;
}
.no-teasers-message__content {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #344051;
  margin: 0;
  width: 50%;
  text-align: center;
}
.no-teasers-message__clean_filters_btn {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 0 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  width: 188px;
  height: 33px;
  box-sizing: border-box;
  cursor: pointer;
  color: #344051;
  background-color: #ffffff;
  border-radius: 48px;
  border: 1px solid #ced2da;
}

.filters-results__container__slots .contact-banner {
  margin-bottom: 30px;
}
.filters-results__container__slots .contact-banner__image {
  width: 440px;
}
.filters-results__container__slots .contact-banner__content {
  margin-left: -30px;
}

.main-filters-container {
  display: flex;
  flex-direction: row;
  margin-top: 34px;
  margin-bottom: 42px;
}
.main-filters-container__left-col {
  width: 332px;
  margin-right: 15px;
}
.main-filters-container__right-col {
  flex-grow: 1;
  width: 1029px;
  min-height: 2000px;
}

.pagination_bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.pagination_bottom__arrow-left {
  width: 40px;
  height: 40px;
  background-image: url("./../../images/filters/chevron_left.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-right: 14px;
}
.pagination_bottom__arrow-left.disabled {
  background-image: url("./../../images/filters/chevron_left_disabled.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: default;
  pointer-events: none;
}
.pagination_bottom__input--actual-page input {
  border-radius: 8px;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  padding: 12px 8px 12px 12px;
  width: 71px;
  height: 44px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  -moz-appearance: textfield;
}
.pagination_bottom__input--actual-page input::-webkit-inner-spin-button, .pagination_bottom__input--actual-page input::-webkit-outer-spin-button {
  display: none;
}
.pagination_bottom__input--actual-page input:hover, .pagination_bottom__input--actual-page input:focus {
  border: 0;
  outline: 1px solid #4c94ff;
}
.pagination_bottom__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  margin: 0 8px;
}
.pagination_bottom__last-page {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #202b37;
  margin: 0;
  width: 28px;
}
.pagination_bottom__arrow-right {
  width: 40px;
  height: 40px;
  background-image: url("./../../images/filters/chevron_right.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.pagination_bottom__arrow-right.disabled {
  background-image: url("./../../images/filters/chevron_right_disabled.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: default;
  pointer-events: none;
}

.container.cart-container {
  background: #f2f4f7;
  padding-bottom: 24px;
  position: relative;
}
.container.cart-container .paid-additional-items {
  display: none;
  flex-direction: column;
  width: 100%;
}
.container.cart-container .paid-additional-items .additions-section-paid_moreBtn {
  margin-left: 0;
  font-size: 14px;
  font-family: "Satoshi", sans-serif;
}
.container.cart-container .paid-additional-items > span {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  margin-bottom: 16px;
}
.container.cart-container .paid-additional-items .paid-additional-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 4px;
}
.container.cart-container .paid-additional-items .paid-addition-teaser {
  width: initial;
  flex: 1 1 calc(25% - 4px);
  max-width: calc(25% - 4px);
}
.container.cart-container .paid-additional-items .paid-addition-teaser button {
  font-family: "Satoshi", sans-serif;
}
.container.cart-container .paid-additional-items .paid-addition-teaser:not(.visible) {
  display: none !important;
}
.container.cart-container .featured span.cart_item__promotion_price {
  color: #f7941e;
  font-weight: 700;
  font-size: 20px;
}
.container.cart-container span.cart_item__promotion_price {
  font-weight: 700;
}
.container.cart-container .cart_item__future_price__counter {
  border-radius: 16px;
  background: #414e62;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  padding: 12px;
  margin-bottom: 8px;
  position: relative;
}
.container.cart-container .cart_item__future_price__counter .days_number {
  font-weight: 700 !important;
}
.container.cart-container .cart_item__future_price__counter::before {
  content: "";
  width: 21px;
  height: 21px;
  position: absolute;
  left: 28%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("./../../images/project_cart/project-cart-rise-price.svg");
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: center center;
}
.container.cart-container .cart_item__future_price__counter:empty {
  display: none;
}
.container.cart-container .featured .warning-info {
  border-radius: 16px;
  border: 1px solid #f7941e;
  background: #ffe0bc;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  min-width: 100%;
  font-size: 12px;
  font-weight: 500;
  height: 45px;
  color: #141c24;
  flex-wrap: wrap;
}
.container.cart-container .featured .warning-info .icon {
  position: relative;
  display: flex;
  align-items: center;
}
.container.cart-container .featured .warning-info .icon:before {
  background-image: url("./../../images/cart/Clock-color-black.svg");
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 21px;
  height: 21px;
  display: inline-block;
  margin-right: 4px;
  content: "";
}
.container.cart-container .featured .warning-info__left {
  display: flex;
  white-space: nowrap;
  min-width: 73px;
}
.container.cart-container .featured .warning-info__right {
  display: flex;
}
.container.cart-container .featured .warning-info__right p {
  display: flex;
  margin-right: 4px;
}
.container.cart-container .featured .warning-info__right p span {
  font-weight: 700;
  margin-right: 4px;
  margin-left: 4px;
}
.container.cart-container .featured .warning-info__content {
  display: flex;
  margin-left: 12px;
  align-items: center;
}
.container.cart-container .common .warning-info {
  border-radius: 16px;
  background: #344051;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  min-width: 100%;
  font-size: 12px;
  font-weight: 500;
  height: 45px;
  color: #141c24;
  flex-wrap: wrap;
}
.container.cart-container .common .warning-info .warning-info__headline.cart_item__promotion_price__label {
  color: #ffffff;
}
.container.cart-container .common .warning-info .icon {
  position: relative;
  display: flex;
  align-items: center;
}
.container.cart-container .common .warning-info .icon:before {
  background-image: url("./../../images/cart/Clock-white.svg");
  background-size: 21px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 21px;
  height: 21px;
  display: inline-block;
  margin-right: 4px;
  content: "";
}
.container.cart-container .common .warning-info__left {
  display: flex;
  white-space: nowrap;
  min-width: 73px;
  color: #ffffff;
}
.container.cart-container .common .warning-info__right {
  display: flex;
}
.container.cart-container .common .warning-info__right p {
  display: flex;
  margin-right: 4px;
  color: #ffffff;
}
.container.cart-container .common .warning-info__right p span {
  font-weight: 700;
  margin-right: 4px;
  margin-left: 4px;
}
.container.cart-container .common .warning-info__content {
  display: flex;
  margin-left: 12px;
  align-items: center;
  color: #ffffff;
}
.container.cart-container .additional-items {
  margin-top: 25px;
  border-top: 1px solid #ced2da;
  padding-top: 16px;
  margin-bottom: 24px;
  width: 100%;
}
.container.cart-container .additional-items__headline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.container.cart-container .additional-items__title {
  font-size: 20px;
  font-weight: 700;
}
.container.cart-container .additional-items__price {
  font-size: 20px;
  font-weight: 700;
}
.container.cart-container .additional-items__list ul {
  list-style-type: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.container.cart-container .additional-items__list ul li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.container.cart-container .additional-items__list ul li .icon {
  background-image: url("./../../images/cart/ok.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 4px;
}
.container.cart-container:after {
  width: 100vw;
  height: 100%;
  position: absolute;
  background: #f2f4f7;
  content: "";
  top: 0;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw + 520px);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  align-items: center;
}
.cart-header__logo {
  background-image: url("./../../images/cart/murator-logo.svg");
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 200px;
  height: 22px;
  margin-right: 4px;
}
.cart-header__items {
  display: flex;
  align-items: center;
}
.cart-header__link {
  display: flex;
  align-items: center;
  color: #202b37;
  font-size: 12px;
  font-weight: 500;
  margin: 0 16px 0 0;
}
.cart-header__link a {
  display: flex;
  align-items: center;
  color: #202b37;
}
.cart-header__link span {
  background-image: url("./../../images/cart/left-arrow.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: inline-block;
}
.cart-header__contact {
  border-radius: 16px;
  border: 1px solid #ced2da;
  background: #f9fafb;
  margin-left: 24px;
  text-align: center;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart-header__contact span:first-child {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
}
.cart-header__contact span:last-child {
  font-size: 10px;
  color: #637083;
  line-height: 12px;
  display: flex;
  align-items: center;
}
.cart-header__contact span:last-child p {
  width: 6px;
  height: 6px;
  background: #5eaa22;
  margin-right: 2px;
  border-radius: 100%;
}

.cart-wrapper {
  width: initial;
}
.cart-wrapper .right-cart-container > .errors-cart {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid #f20d0d;
  background: #fccfcf;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.cart-wrapper .right-cart-container > .errors-cart li:empty {
  display: none;
}
.cart-wrapper .right-cart-container > .errors-cart ul {
  padding-left: 16px;
  list-style-type: disc;
}
.cart-wrapper .right-cart-container > .errors-cart li {
  font-size: 14px;
  color: #202b37;
  font-weight: 700;
}
.cart-wrapper .right-cart-container > .errors-cart:empty {
  display: none;
}
.cart-wrapper .right-cart-container > .errors-cart > div {
  font-size: 14px;
  color: #202b37;
  width: 100%;
  font-weight: 700;
}
.cart-wrapper .error-message {
  color: #f64c4c;
  font-weight: 500;
  font-size: 14px;
}
.cart-wrapper .client-type-wrapper sup {
  font-size: 15px;
}
.cart-wrapper .client-type-wrapper .client-type-btn {
  border-radius: 8px;
  background: #f2f4f7;
  padding: 16px 24px;
  margin-bottom: 16px;
  display: flex;
}
.cart-wrapper .client-type-wrapper .client-type-btn > div {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #202b37;
  width: 50%;
  padding: 21px;
  cursor: pointer;
}
.cart-wrapper .client-type-wrapper .client-type-btn > div.active {
  background: #f7941e;
}
.cart-wrapper .client-type-wrapper .client-type-btn > div:first-child {
  border-radius: 16px 0px 0px 16px;
  border-left: 1px solid #e4e7ec;
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
}
.cart-wrapper .client-type-wrapper .client-type-btn > div:last-child {
  border-radius: 0px 16px 16px 0px;
  border-right: 1px solid #e4e7ec;
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
}
.cart-wrapper .client-type-wrapper > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cart-wrapper .client-type-wrapper > div:first-child p:first-child {
  font-size: 20px;
  font-weight: 700;
}
.cart-wrapper .client-type-wrapper > div:first-child p:last-child {
  font-size: 14px;
  font-weight: 500;
}
.cart-wrapper .right-summary {
  padding: 24px;
  border-radius: 16px;
  background: #202b37;
}
.cart-wrapper .right-summary .summary_item.summary_item__delivery {
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}
.cart-wrapper .right-summary .summary_item.summary_item__addons {
  flex-direction: row !important;
  align-items: center !important;
}
.cart-wrapper .right-summary .summary_price {
  font-weight: 700;
  color: #ffffff;
  font-size: 36px;
  line-height: 44px;
  align-items: flex-start !important;
  padding: 0 !important;
}
.cart-wrapper .right-summary .summary_buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cart-wrapper .right-summary .summary_buttons .return-icon {
  background-image: url("./../../images/cart/return.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.cart-wrapper .right-summary .summary_buttons a {
  margin-bottom: 8px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  background-color: #cf4008;
  border-radius: 28px;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.cart-wrapper .right-summary .summary_buttons div {
  color: #ced2da;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}
.cart-wrapper .right-summary .summary_item__discountResult {
  display: flex;
  justify-content: space-between;
}
.cart-wrapper .right-summary .summary_item__discountResult .summary_item__price {
  min-width: 0px;
  margin-left: 12px;
}
.cart-wrapper .right-summary .summary_item__discountResult .summary_item__price-wrapper {
  display: flex;
}
.cart-wrapper .right-summary .summary_item__discountResult .summary_item__removeDiscountIcon {
  background-image: url("./../../images/cart/remove-discount-bin.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.cart-wrapper .right-summary .summary_item__discountResult span {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}
.cart-wrapper .right-summary .summary_discounts {
  margin: 16px 0;
  border-bottom: 1px solid #414e62;
  border-top: 1px solid #414e62;
}
.cart-wrapper .right-summary .summary_discounts__content-wrapper {
  padding: 16px 0;
  width: 100%;
}
.cart-wrapper .right-summary .summary_discounts__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.cart-wrapper .right-summary .summary_discounts__text {
  font-size: 14px;
  font-weight: 500;
  color: #e4e7ec;
}
.cart-wrapper .right-summary .summary_discounts__arrow {
  font-size: 0;
  position: relative;
  background-image: url("./../../images/cart/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: all 500ms ease;
}
.cart-wrapper .right-summary .summary_discounts__input-wrapper {
  position: relative;
  display: none;
}
.cart-wrapper .right-summary .summary_discounts__input {
  width: 100%;
  height: 52px;
  background-color: #414e62;
  border: 1px solid #637083;
  outline: none;
  color: #fff;
  font-size: 14px;
  border-radius: 0.5rem;
  padding: 16px;
  margin-top: 6px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}
.cart-wrapper .right-summary .summary_discounts__apply {
  position: absolute;
  right: 5px;
  font-size: 16px;
  background-color: #000;
  border: none;
  color: #fff;
  top: 12px;
  border-radius: 2rem;
  height: 40px;
  width: 83px;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
}
.cart-wrapper .right-summary .summary_discounts__successIcon {
  display: none;
  background-image: url("./../../images/cart/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  width: 20px;
  height: 20px;
  right: 16px;
  top: 21px;
}
.cart-wrapper .right-summary .success .summary_discounts__apply {
  display: none;
}
.cart-wrapper .right-summary .success .summary_discounts__input {
  border: 1px solid #9fdfbf;
  color: #9fdfbf;
}
.cart-wrapper .right-summary .success .summary_discounts__successIcon {
  display: block;
}
.cart-wrapper .right-summary .error .summary_discounts__input {
  border: 1px solid #f98686;
  color: #f98686;
}
.cart-wrapper .right-summary .error .summary_discounts__errorMessage {
  font-size: 12px;
  margin-top: 2px;
  color: #f98686;
  font-family: "Satoshi", sans-serif;
}
.cart-wrapper .right-summary .visible .summary_discounts__input-wrapper {
  display: block;
}
.cart-wrapper .right-summary .visible .summary_discounts__arrow {
  transform: rotate(180deg);
  transition: all 500ms ease;
}
.cart-wrapper .right-summary .summary_sum {
  margin-bottom: 4px;
}
.cart-wrapper .right-summary .summary_sum .sum {
  font-size: 14px;
  font-weight: 500;
  color: #e4e7ec;
}
.cart-wrapper .right-summary .summary_sum .summary_availability {
  color: #ced2da;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
}
.cart-wrapper .right-summary .summary_sum .summary_netto .summary_price__netto {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}
.cart-wrapper .right-summary .summary_sum .summary_netto .summary_price__netto__label {
  color: #ced2da;
  margin-bottom: 12px;
}
.cart-wrapper .right-summary .summary_items > .summary_items_projects :first-child {
  border-radius: 8px 8px 0 0;
}
.cart-wrapper .right-summary .summary_items > .summary_item:last-child {
  border-radius: 0 0 8px 8px;
}
.cart-wrapper .right-summary .summary_item__top {
  width: 100%;
  align-items: center;
  display: flex;
}
.cart-wrapper .right-summary .summary_item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1px;
  padding: 8px;
  align-items: flex-start;
}
.cart-wrapper .right-summary .summary_item .summary_item__paid_addons {
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
.cart-wrapper .right-summary .summary_item .summary_item__paid_addons > div:last-child {
  border-radius: 0 0 8px 8px;
}
.cart-wrapper .right-summary .summary_item .summary_item__paid_addons .summary_item_addon-wrapper {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1019607843);
  padding: 8px;
  margin-bottom: 2px;
}
.cart-wrapper .right-summary .summary_item .summary_item__paid_addons .summary_item_addon-wrapper:only-child {
  border-radius: 8px !important;
}
.cart-wrapper .right-summary .summary_item:first-child {
  border-radius: 8px 8px 0 0;
}
.cart-wrapper .right-summary .summary_item__title {
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
}
.cart-wrapper .right-summary .summary_item__title a {
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
}
.cart-wrapper .right-summary .summary_item__version {
  color: #97a1af;
  font-size: 12px;
  font-weight: 700;
}
.cart-wrapper .right-summary .summary_item__price {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-left: auto;
  min-width: 46px;
  text-align: right;
  white-space: nowrap;
}
.cart-wrapper .right-summary .summary_item__photo {
  margin-right: 16px;
}
.cart-wrapper .right-summary .summary_item__photo img {
  width: 69px;
  height: 39px;
  border-radius: 8px;
  object-fit: cover;
}
.cart-wrapper .consent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-wrapper .consent .consent-item.information:not(.newsletter) .consent-item__group:first-child label {
  padding-left: 0;
  pointer-events: none;
}
.cart-wrapper .consent .custom-checkbox--checkmark {
  background-color: #ffffff;
  border: 1px solid #ced2da;
}
.cart-wrapper .consent .custom-checkbox--text {
  color: #637083 !important;
}
.cart-wrapper .consent .custom-checkbox--text.electr, .cart-wrapper .consent .custom-checkbox--text.tel {
  color: #344051 !important;
}
.cart-wrapper .consent .error-message {
  display: none;
}
.cart-wrapper .consent .info {
  font-size: 14px;
  color: #637083;
  font-weight: 500;
  margin-top: 12px;
}
.cart-wrapper .consent .info a {
  font-size: 14px;
  color: #637083;
  font-weight: 500;
  text-decoration: underline;
}
.cart-wrapper .consent-item {
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  border: 1px solid #e4e7ec;
  flex: 1;
}
.cart-wrapper .consent-item.not-valid {
  border: 1px solid #f64c4c;
}
.cart-wrapper .consent-item.not-valid label p {
  color: #f64c4c !important;
}
.cart-wrapper .consent-item.not-valid label p a {
  color: #f64c4c !important;
}
.cart-wrapper .consent-item.terms a {
  color: #637083;
  text-decoration: underline;
}
.cart-wrapper .consent-item__group {
  display: flex;
  align-items: flex-start;
}
.cart-wrapper .consent-item.newsletter .custom-checkbox--text a {
  color: #637083;
  font-weight: 500;
  text-decoration: underline;
}
.cart-wrapper .consent-item.newsletter > div {
  margin-bottom: 24px;
}
.cart-wrapper .consent-item.newsletter > p {
  width: 100%;
  margin-bottom: 12px;
}
.cart-wrapper .consent-item.newsletter > p a {
  color: #637083;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
}
.cart-wrapper .consent-item.newsletter p:not(:last-of-type) {
  margin-bottom: 24px;
}
.cart-wrapper .consent-item.information > div:first-child {
  width: 100%;
  margin-bottom: 32px;
}
.cart-wrapper .consent-item.information > div:nth-child(2) label {
  font-weight: 500;
}
.cart-wrapper .consent-item.information > div:last-child {
  margin-left: 32px;
}
.cart-wrapper .consent-item.information > div:last-child label {
  font-weight: 500;
}
.cart-wrapper .consent-item > p {
  color: #637083;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.cart-wrapper .consent-item.multiple {
  gap: 32px;
}
.cart-wrapper .consent-item input {
  margin-right: 12px;
}
.cart-wrapper .consent-item label {
  color: #637083;
  font-size: 14px;
}
.cart-wrapper .consent-item__single {
  margin-bottom: 32px;
}
.cart-wrapper .consent-item__multiple {
  display: flex;
  flex-wrap: wrap;
}
.cart-wrapper .consent-item__multiple.full {
  width: 100%;
}
.cart-wrapper .payment {
  margin-bottom: 32px;
  margin-top: 32px;
}
.cart-wrapper .payment .custom-checkbox--checkmark {
  background-color: #ffffff;
  border: 1px solid #ced2da;
  border-radius: 100%;
}
.cart-wrapper .payment .custom-checkbox--checkmark:after {
  top: 5px;
  left: 8px;
  width: 2px !important;
  height: 6px !important;
}
.cart-wrapper .payment .custom-checkbox--input:checked ~ .custom-checkbox--checkmark {
  border: none !important;
}
.cart-wrapper .payment .custom-checkbox--text {
  color: #202b37 !important;
  font-weight: 700 !important;
  width: 100%;
}
.cart-wrapper .payment__headline {
  margin-bottom: 16px;
}
.cart-wrapper .payment__headline span {
  font-size: 20px;
  font-weight: 700;
}
.cart-wrapper .payment #payment-error {
  color: #f64c4c;
  font-weight: 500;
  margin-top: 24px;
}
.cart-wrapper .payment__items {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.cart-wrapper .payment__items.not-valid {
  border: 1px solid #f64c4c;
  padding: 16px;
  border-radius: 8px;
}
.cart-wrapper .payment__icons {
  background-image: url("./../../images/cart/payments-basket-przelewy.svg");
  background-size: 257px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 257px;
  height: 40px;
  display: inline-block;
  margin-left: auto;
}
.cart-wrapper .payment__item {
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: flex-start;
  background: #f2f4f7;
  flex: 1;
}
.cart-wrapper .payment__item:first-child {
  align-items: center;
}
.cart-wrapper .payment__item:nth-child(2), .cart-wrapper .payment__item:nth-child(3) {
  padding: 26px 24px;
}
.cart-wrapper .payment__item .description-payment-white {
  width: 45%;
  text-align: left;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin-left: auto;
}
.cart-wrapper .payment__item .description-payment {
  width: 48%;
  margin-top: 24px;
  color: #414e62;
  font-size: 16px;
  padding-left: 16px;
}
.cart-wrapper .payment__item .description-payment span {
  font-weight: 700;
}
.cart-wrapper .payment__item label {
  font-size: 14px;
  font-weight: 500;
  color: #202b37;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 0;
  padding-left: 33px;
}
.cart-wrapper .payment__item label p {
  border-left: 1px solid #ced2da;
  padding-left: 16px;
}
.cart-wrapper .delivery {
  margin-bottom: 32px;
  margin-top: 32px;
}
.cart-wrapper .delivery .custom-checkbox--checkmark {
  background-color: #ffffff;
  border: 1px solid #ced2da;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.cart-wrapper .delivery .custom-checkbox--checkmark:after {
  top: 4px !important;
  left: 8px;
  width: 2px !important;
  height: 6px !important;
}
.cart-wrapper .delivery .custom-checkbox--text {
  color: #202b37;
  display: flex;
  align-items: center;
}
.cart-wrapper .delivery__headline {
  margin-bottom: 16px;
}
.cart-wrapper .delivery__headline span {
  font-size: 20px;
  font-weight: 700;
}
.cart-wrapper .delivery__items {
  display: flex;
  gap: 16px;
  background: none !important;
  flex-direction: row !important;
  padding: 0 !important;
}
.cart-wrapper .delivery__items.not-valid {
  border: 1px solid #f98686;
  padding: 16px 24px;
}
.cart-wrapper .delivery__price {
  font-size: 14px;
  font-weight: 700;
  margin-left: auto;
}
.cart-wrapper .delivery__item {
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f2f4f7;
  flex: 1;
}
.cart-wrapper .delivery__item label {
  font-size: 14px;
  font-weight: 500;
  color: #202b37;
  display: flex;
  align-items: center;
}
.cart-wrapper .delivery__item.inpost .delivery_image {
  background-image: url("./../../images/cart/inpost.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 60px;
  height: 35px;
  display: inline-block;
  margin-right: 16px;
  padding-left: 16px;
}
.cart-wrapper .delivery__item.dpd .delivery_image {
  background-image: url("./../../images/cart/dpd.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 60px;
  height: 35px;
  display: inline-block;
  margin-right: 16px;
  padding-left: 16px;
}
.cart-wrapper__items {
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
.cart-wrapper__items .cart_item .headline-photos {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  max-width: 100%;
}
.cart-wrapper__items .cart_item .headline-photos > div {
  width: 49%;
}
.cart-wrapper__items .cart_item .headline-photos > div > a {
  max-width: 100%;
}
.cart-wrapper__items .cart_item .headline-photos > div img {
  border-radius: 12px;
  object-fit: cover;
  max-width: 100%;
}
.cart-wrapper__items .cart_item .promotion-orange {
  border: 1px solid #f7941e;
  background: #ffe0bc;
  padding: 12px;
  border-radius: 16px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 8px;
}
.cart-wrapper__items .cart-headline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cart-wrapper__items .cart-headline .left {
  padding-bottom: 8px;
}
.cart-wrapper__items .cart-headline .left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #202b37;
  display: flex;
  flex-direction: column;
}
.cart-wrapper__items .cart-headline .left h2 a {
  color: #202b37;
}
.cart-wrapper__items .cart-headline .left h2 .cart_item__version {
  color: #637083;
}
.cart-wrapper__items .cart-headline .right {
  width: 290px;
  position: relative;
  padding-left: 16px;
  border-left: 1px solid #ced2da;
}
.cart-wrapper__items .cart-headline .right .cart_item__remove_icon {
  background-image: url("./../../images/cart/remove_icon.svg");
  background-size: 44px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 44px;
  height: 32px;
  display: inline-block;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.cart-wrapper__items .cart-headline .right span.cart_item__catalog_price__label {
  margin-left: 8px;
  font-size: 12px !important;
  align-items: center;
}
.cart-wrapper__items .cart-headline .right .catalog_price {
  display: flex;
}
.cart-wrapper__items .cart-headline .right .catalog_price .striked {
  font-size: 16px;
}
.cart-wrapper__items .cart-headline .right .catalog_price > span {
  font-weight: 700;
  color: #344051;
  font-size: 20px;
}
.cart-wrapper__items .cart-headline .right .cart_item__catalog_price {
  font-size: 20px;
  color: #f7941e;
  margin-bottom: 2px;
  font-weight: 700;
}
.cart-wrapper__items .cart-headline .right .cart_item__catalog_price.striked {
  text-decoration: line-through;
}
.cart-wrapper__items .cart-headline .right .cart_item__omnibus span {
  font-size: 12px;
  color: #637083;
  min-width: 50px;
}
.cart-wrapper__items .left-cart-container {
  width: 65%;
}
.cart-wrapper__items .left-cart-container .cart_item {
  background: #ffffff;
  margin-bottom: 4px;
  border-radius: 16px;
  border: 1px solid #ced2da;
  padding: 24px;
}
.cart-wrapper__items .left-cart-container .cart_item .cart-body {
  flex-direction: column;
  align-items: flex-start;
}
.cart-wrapper__items .left-cart-container .cart_items .left {
  display: flex;
  max-width: 80%;
  padding-left: 8px;
}
.cart-wrapper__items .left-cart-container .cart_items .cart-accordion-trigger {
  background-image: url("./../../images/cart/cart-accordion.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
  display: inline-block;
  left: 8px;
  margin-right: 16px;
  margin-top: 8px;
  min-width: 32px;
  cursor: pointer;
  transform: rotate(180deg);
}
.cart-wrapper__items .left-cart-container .cart_items .cart-accordion-trigger.active {
  transform: rotate(0deg);
}
.cart-wrapper__items .left-cart-container form .address .valid {
  position: relative;
}
.cart-wrapper__items .left-cart-container form .address .valid input,
.cart-wrapper__items .left-cart-container form .valid select {
  border: 1px solid #79d2a6;
}
.cart-wrapper__items .left-cart-container form .address .not-valid input,
.cart-wrapper__items .left-cart-container form .not-valid select {
  border: 1px solid #f98686;
}
.cart-wrapper__items .left-cart-container form .address .valid:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  top: 47px;
  right: 13px;
  background-image: url("./../../images/cart/success.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.cart-wrapper__items .left-cart-container form .address .phone .valid:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  top: 18px;
  right: 19px;
  background-image: url("./../../images/cart/success.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.cart-wrapper__items .left-cart-container form fieldset#delivery-comment {
  margin-top: -16px;
}
.cart-wrapper__items .left-cart-container form sup {
  font-size: 14px;
  vertical-align: text-top;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker.error .place-picker__items {
  border: 1px solid #f98686;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker {
  margin-top: 24px;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker__button > span {
  border: 1px solid #202b37 !important;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker__content:empty {
  display: none;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker__content p {
  font-size: 14px;
  color: #202b37;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker__content p span:first-child {
  font-weight: 700;
  font-size: 16px;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker__content p span:last-child {
  font-weight: 700;
  font-size: 16px;
  color: #637083;
}
.cart-wrapper__items .left-cart-container form fieldset .place-picker__items {
  background: #f2f4f7;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-wrapper__items .left-cart-container form fieldset textarea {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  border: 1px solid #ced2da;
  padding: 16px;
  resize: vertical;
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
}
.cart-wrapper__items .left-cart-container form div.error {
  font-size: 14px;
  color: #f64c4c;
  width: 100%;
  font-weight: 500;
}
.cart-wrapper__items .left-cart-container form .input.error {
  border: 1px solid #f7941e !important;
}
.cart-wrapper__items .left-cart-container form .delivery,
.cart-wrapper__items .left-cart-container form .address {
  display: none;
}
.cart-wrapper__items .left-cart-container form .delivery.active,
.cart-wrapper__items .left-cart-container form .address.active {
  display: block;
}
.cart-wrapper__items .left-cart-container form .address#another-address {
  margin-top: -16px;
}
.cart-wrapper__items .left-cart-container form .custom-checkbox-wrapper {
  border-radius: 8px;
  background: #f2f4f7;
  padding: 24px 16px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 4px;
}
.cart-wrapper__items .left-cart-container form .custom-checkbox-wrapper .custom-checkbox--checkmark {
  background-color: #ffffff;
  border: 1px solid #ced2da;
}
.cart-wrapper__items .left-cart-container form .custom-checkbox-wrapper .custom-checkbox--text {
  color: #344051 !important;
}
.cart-wrapper__items .left-cart-container form .custom-checkbox-wrapper label {
  margin-left: 12px;
  font-weight: 500;
  color: #344051;
  font-size: 14px;
}
.cart-wrapper__items .right-cart-container {
  width: 32%;
  max-width: 412px;
  margin-right: 16px;
  height: min-content;
  position: sticky;
  top: 0;
}
.cart-wrapper h1 {
  color: #202b37;
  margin-bottom: 0;
  font-weight: 700;
  padding-top: 16px;
  font-size: 30px;
}

.input-group {
  padding: 16px;
  margin-bottom: 4px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  background: #f2f4f7;
  gap: 24px;
}
.input-group__slash {
  display: flex;
  align-items: flex-start;
  font-size: 19px;
  padding-top: 38px;
}
.input-group.base-info {
  justify-content: space-between;
}
.input-group.base-info > div {
  width: 48%;
}
.input-group__multiple {
  display: flex;
  flex-wrap: wrap;
}
.input-group__item {
  display: flex;
  flex-direction: column;
  width: 250px;
}
.input-group__item.city, .input-group__item.email, .input-group__item.street {
  width: 48%;
}
.input-group__item.building {
  width: 20%;
}
.input-group__item.flat {
  width: 20%;
}
.input-group__item.phone select {
  border-radius: 8px 0px 0px 8px;
  border: 1px solid #ced2da;
  background: #f9fafb;
}
.input-group__item.phone input {
  border-radius: 0 8px 8px 0;
  flex-grow: 1;
}
.input-group__item label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #344051;
  letter-spacing: 0.02em;
}
.input-group__item input {
  padding: 16px 8px;
  border-radius: 8px;
  border: 1px solid #ced2da;
  color: #202b37;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.02em;
}
.input-group__item input::placeholder {
  color: #637083;
}

.empty-cart__headline h1 {
  font-size: 30px;
  font-weight: 700;
}
.empty-cart__icon {
  width: 70px;
  background-image: url("./../../images/cart/empty-basket.svg");
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 70px;
  height: 70px;
}
.empty-cart__top {
  background: #f2f4f7;
  padding: 24px;
  margin-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
}
.empty-cart__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
}
.empty-cart__content a {
  border-radius: 28px;
  background: #cf4008;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
}
.empty-cart__content span {
  font-size: 16px;
  font-weight: 700;
  margin: 21px 0;
}

.popup-content-inner.remove .popup__body {
  padding-bottom: 0;
}
.popup-content-inner.remove .popup-remove-buttons {
  display: flex;
  justify-content: center;
}
.popup-content-inner.remove .popup-remove-buttons > div {
  width: 147px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.popup-content-inner.remove .popup-remove-buttons > div.cancel {
  background-color: #cf4008;
  margin-right: 12px;
  color: #ffffff;
}
.popup-content-inner.remove .popup-remove-buttons > div.remove_project {
  background: #f2f4f7;
  padding-left: 19px;
  position: relative;
}
.popup-content-inner.remove .popup-remove-buttons > div.remove_project span {
  background-image: url("./../../images/cart/remove-bin.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  left: 8px;
  margin-right: 4px;
}
.popup-content-inner.remove .popup {
  width: 650px;
}
.popup-content-inner.remove .popup__title {
  width: 95%;
}
.popup-content-inner.remove .popup__description p {
  font-size: 14px;
  color: #202b37;
  font-weight: 500;
}

.summary-wrapper h1 {
  font-size: 30px;
  font-weight: 700;
  padding-top: 16px;
  color: #202b37;
}

.summary-container {
  padding: 16px 80px 40px 80px;
}
.summary-container .promotion_expiration_message {
  border-radius: 16px;
  border: 1px solid #f20d0d;
  background: #fccfcf;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}
.summary-container .discount-code-expiration-error {
  border: 1px solid #f20d0d;
  background-color: #fccfcf;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
}
.summary-container span.cart_item__omnibus_price__label.summary_item__omnibus_price__label {
  width: 56%;
  margin-left: auto;
  text-align: right;
}
.summary-container span.cart_item__omnibus_price__label.summary_item__omnibus_price__label span {
  margin-right: 4px;
}
.summary-container .catalog-price {
  display: flex;
}
.summary-container span.cart_item__promotion_price.summary_item__promotion_price {
  font-size: 20px;
  color: #f7941e;
  font-weight: 700;
}
.summary-container span.catalog_price.summary_item__catalog_price.striked {
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 700;
}
.summary-container span.cart_item__catalog_price__label.summary_item__catalog_price__label {
  margin-left: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.summary-container .cart_item__omnibus.summary_item__omnibus {
  font-size: 12px;
  color: #637083;
}
.summary-container .summary_item .right > div {
  display: flex;
  justify-content: flex-end;
}
.summary-container .summary_payment.online .summary_payment_method {
  position: relative;
}
.summary-container .summary_payment.online .summary_payment_method:before {
  position: absolute;
  content: "";
  left: -198%;
  background-image: url("./../../images/cart/payments-basket-przelewy.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 261px;
  height: 36px;
  display: inline-block;
  margin-left: auto;
  border-right: 1px solid #ced2da;
}
.summary-container span.summary_item__photo img {
  width: 70px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}
.summary-container .description-payment {
  display: none;
}
.summary-container .summary_payment {
  position: relative;
}
.summary-container .summary_payment.transfer {
  padding-bottom: 95px;
}
.summary-container .summary_payment .left {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
}
.summary-container .summary_payment .description-payment-white {
  position: absolute;
  bottom: 16px;
  background: #f2f4f7;
  color: #414e62;
  font-weight: 500;
  border-radius: 8px;
  font-size: 16px;
  padding: 16px 24px;
  width: 100%;
  max-width: 97%;
  left: 20px;
}
.summary-container .availability_message {
  border-radius: 16px;
  border: 1px solid #f7941e;
  background: #ffe0bc;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-right: 33%;
  position: relative;
}
.summary-container .availability_message::before {
  background-image: url("./../../images/cart/box.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  left: 8px;
  margin-right: 16px;
  margin-top: 8px;
  min-width: 20px;
  cursor: pointer;
  content: "";
}
.summary-container .summary_delivery,
.summary-container .summary_payment,
.summary-container .summary_address,
.summary-container .summary_discount,
.summary-container .delivery_comment {
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 4px;
}
.summary-container .summary_discount {
  display: none;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  flex-wrap: wrap;
}
.summary-container .summary_discount__code {
  background-color: #e4e7ec;
  border-radius: 5px;
  color: #344051;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
}
.summary-container .summary_discount__contentWrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.summary-container .summary_discount_error {
  display: flex;
  align-items: center;
  border: 1px solid #f20d0d;
  background-color: #fccfcf;
  padding: 10px 12px;
  border-radius: 16px;
  margin-top: 20px;
  font-weight: 700;
  width: 100%;
  font-size: 14px;
}
.summary-container .summary_discount_error span {
  background-color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 6px;
}
.summary-container .summary_delivery {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.summary-container .summary_delivery.inpost {
  padding-bottom: 165px;
}
.summary-container .summary_delivery .left {
  display: flex;
}
.summary-container .summary_delivery .summary_delivery_method {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.summary-container .summary_delivery .summary_delivery_method > .place-picker__content {
  margin-top: 24px;
  background: #f2f4f7;
  padding: 16px 24px;
  border-radius: 8px;
  position: absolute;
  width: 96%;
  bottom: 16px;
  left: 21px;
}
.summary-container .summary_delivery .summary_delivery_method > .place-picker__content p {
  font-weight: 400;
  font-size: 14px;
}
.summary-container .summary_delivery .summary_delivery_method > .place-picker__content p:first-child span {
  font-size: 16px;
  font-weight: 700;
}
.summary-container .summary_delivery .summary_delivery_method > .place-picker__content p:first-child span:last-child {
  color: #637083;
}
.summary-container .summary_delivery .inpost {
  background-image: url("./../../images/cart/inpost.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 60px;
  height: 35px;
  display: inline-block;
  margin-right: 16px;
  padding-left: 16px;
  margin-left: 24px;
}
.summary-container .summary_delivery .dpd {
  background-image: url("./../../images/cart/dpd.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 60px;
  height: 35px;
  display: inline-block;
  margin-right: 16px;
  padding-left: 16px;
  margin-left: 24px;
}
.summary-container .summary_delivery .place-picker__button {
  position: absolute;
  top: 106px;
  right: 41px;
}
.summary-container .summary_delivery .place-picker__button > span {
  border: 1px solid #344051;
}
.summary-container .summary_delivery .right {
  position: absolute;
  right: 16px;
}
.summary-container .summary_delivery .left {
  width: 100%;
}
.summary-container .summary_delivery .left,
.summary-container .summary_delivery .right {
  font-weight: 700;
  font-size: 20px;
}
.summary-container .delivery_comment:empty {
  display: none;
}
.summary-container .delivery_comment .left {
  font-size: 20px;
  font-weight: 700;
  color: #202b37;
  margin-bottom: 24px;
}
.summary-container .delivery_comment .delivery_comment__content {
  border-radius: 8px;
  padding: 16px 24px;
  border-radius: 8px;
  background: #f2f4f7;
  font-size: 14px;
  font-weight: 500;
  color: #202b37;
}
.summary-container .summary_address {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.summary-container .summary_address .summary_address__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.summary-container .summary_address .summary_address__header .button-with-arrow {
  font-weight: 700;
  font-size: 14px;
  color: #344051;
  border: 1px solid #202b37;
}
.summary-container .summary_address .summary_address__header div:first-child {
  font-size: 20px;
  font-weight: 700;
  color: #202b37;
}
.summary-container .summary_address .summary_address__content {
  display: flex;
  justify-content: space-between;
}
.summary-container .summary_address .summary_address__content > div {
  flex: 1;
}
.summary-container .summary_address .summary_address__content > div > div {
  font-size: 12px;
  font-weight: 700;
}
.summary-container .summary_address > div {
  flex: 1;
  padding: 16px 24px 24px 24px;
  background: #f2f4f7;
  border-radius: 8px;
}
.summary-container .summary_price {
  padding: 24px;
  background: #202b37;
  border-radius: 16px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.summary-container .summary_price .summary_button {
  margin-bottom: 24px;
}
.summary-container .summary_price .summary_button a {
  display: flex;
  border-radius: 28px;
  background: #cf4008;
  color: #ffffff;
  padding: 12px 20px 13px 20px;
  font-size: 16px;
  font-weight: 500;
}
.summary-container .summary_price .summary_info {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}
.summary-container .summary_price .summary_price_amount {
  font-size: 36px;
  color: #ffffff;
  font-weight: 400;
}
.summary-container .summary_price .summary_price_amount span {
  font-weight: 700;
  margin-left: 24px;
}
.summary-container .summary_price .netto {
  color: #ced2da;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}
.summary-container .summary_price .netto span {
  font-weight: 500;
  color: #ffffff;
}
.summary-container .summary_items {
  margin-bottom: 4px;
}
.summary-container .summary_items .addon_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid #ced2da;
}
.summary-container .summary_items .addon_item .catalog-price span {
  min-width: 70px;
  text-align: right;
  justify-content: flex-end;
  font-size: 20px !important;
}
.summary-container .summary_items .addon_item .left > span {
  margin-left: 0;
}
.summary-container .summary_items > .addon_item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ced2da;
  margin-bottom: 4px;
  padding: 24px !important;
}
.summary-container .summary_items .summary_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ced2da;
  margin-bottom: 4px;
}
.summary-container .summary_items .summary_item .additional-items {
  margin-top: 25px;
  border-top: 1px solid #ced2da;
  padding-top: 16px;
  margin-bottom: 24px;
  width: 100%;
}
.summary-container .summary_items .summary_item .additional-items__headline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.summary-container .summary_items .summary_item .additional-items__title {
  font-size: 20px;
  font-weight: 700;
}
.summary-container .summary_items .summary_item .additional-items__price {
  font-size: 20px;
  font-weight: 700;
}
.summary-container .summary_items .summary_item .additional-items__button a {
  border: 1px solid #344051;
}
.summary-container .summary_items .summary_item .additional-items__list ul {
  list-style-type: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  width: 70%;
}
.summary-container .summary_items .summary_item .additional-items__list ul li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.summary-container .summary_items .summary_item .additional-items__list ul li .icon {
  background-image: url("./../../images/cart/ok.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 4px;
}
.summary-container .summary_items .summary_item span.catalog_price.summary_item__catalog_price {
  font-weight: 700;
  white-space: nowrap;
}
.summary-container .summary_items .left {
  display: flex;
  align-items: center;
}
.summary-container .summary_items .left span {
  font-size: 20px;
  font-weight: 700;
  margin-left: 16px;
}

.thank-u-page {
  padding: 16px 80px 40px 80px;
}
.thank-u-page span.payment_transfer {
  flex-direction: column;
}
.thank-u-page span.payment_cash {
  display: flex;
  flex-direction: column;
}
.thank-u-page span.payment_cash span:first-child {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.thank-u-page span.payment_cash span:last-child {
  font-size: 36px;
  margin-bottom: 24px;
  font-weight: 400;
}
.thank-u-page span.payment_cash span:last-child > span {
  font-weight: 700;
  margin-left: 8px;
}
.thank-u-page span.payment_transfer span:first-child {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.thank-u-page span.description-payment-white {
  border-radius: 16px;
  border: 1px solid var(--orange-main, #F7941E);
  background: #FFE0BC;
  display: flex;
  margin-bottom: 24px;
  padding: 10px 12px;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
}
.thank-u-page span.description-payment {
  font-size: 16px;
}
.thank-u-page span.description-payment span {
  font-weight: 700;
}
.thank-u-page span.payment_transfer > span:last-child {
  display: flex;
  font-size: 36px;
  margin-top: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.thank-u-page span.payment_transfer > span:last-child span {
  margin-bottom: 0;
  font-size: 36px;
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.thank-u-page .delivery span {
  font-size: 14px;
  font-weight: 500;
  color: #202b37;
  display: flex;
  gap: 24px;
}
.thank-u-page .thank-u-page__info a {
  font-size: 14px;
  color: #202b37;
}
.thank-u-page .thank-u-page__info > a > div span:first-child {
  font-weight: 700;
  color: #202b37;
}
.thank-u-page .thank-u-page__info > a > div span:last-child {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #637083;
}
.thank-u-page p.dot {
  width: 6px;
  height: 6px;
  background: #5EAA22;
  border-radius: 100%;
  margin-right: 4px;
}
.thank-u-page.failure .thank-u-page__header {
  text-align: center;
}
.thank-u-page.retry .thank-u-page__wrapper .thank-u-page__info {
  margin-top: 24px;
}
.thank-u-page.retry .thank-u-page__header {
  text-align: center;
}
.thank-u-page.retry .left {
  border-radius: 8px;
  background: #f2f4f7;
  padding: 24px;
}
.thank-u-page.retry .left > div:first-child {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}
.thank-u-page.retry .left > div:nth-child(2) {
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 14px;
}
.thank-u-page.retry .left .back-to-summary a {
  background: #cf4008;
  padding: 12px 20px;
  border-radius: 28px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.thank-u-page.failure .thank-u-page__items {
  background: #f2f4f7;
  padding: 24px;
  border-radius: 8px;
  flex-direction: column;
}
.thank-u-page.failure .thank-u-page__info a {
  font-size: 14px;
  color: #202b37;
}
.thank-u-page.failure .thank-u-page__info > a > div span:first-child {
  font-weight: 700;
  color: #202b37;
}
.thank-u-page.failure .thank-u-page__info > a > div span:last-child {
  font-weight: 500;
  font-size: 10px;
  line-height: 12px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #637083;
}
.thank-u-page.failure .thank-u-page__wrapper .thank-u-page__info {
  width: 100%;
}
.thank-u-page.failure .thank-u-page__wrapper .thank-u-page__email {
  width: 100%;
}
.thank-u-page.failure .thank-u-page__info-wrapper {
  max-width: 340px;
  min-width: 340px !important;
}
.thank-u-page.failure .thank-u-page__failure-info > div:first-child {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #202b37;
}
.thank-u-page.failure .thank-u-page__failure-info > div:last-child {
  font-size: 14px;
  font-weight: 500;
  color: #202b37;
  margin-bottom: 12px;
}
.thank-u-page.failure .thank-u-page__failure-info > div:last-child > span.transaction_id {
  font-weight: 700;
}

.thank-u-page__wrapper {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ced2da;
}
.thank-u-page__wrapper .address {
  display: flex;
  gap: 16px;
}
.thank-u-page__wrapper .address > div {
  flex: 1;
  background: #f2f4f7;
  border-radius: 8px;
  padding: 12px;
}
.thank-u-page__wrapper .thank-u-page__email {
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  width: 70%;
}
.thank-u-page__wrapper .thank-u-page__email a {
  color: #202b37;
}
.thank-u-page__wrapper .thank-u-page__info {
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 70%;
}
.thank-u-page__wrapper .thank-u-page__info > div:last-child {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border: 1px solid #ced2da;
  color: #202b37;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.thank-u-page__wrapper .thank-u-page__info > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.thank-u-page__wrapper .thank-u-page__info > div:first-child span:first-child {
  font-weight: 700;
  font-size: 14px;
}
.thank-u-page__wrapper .thank-u-page__info > div:first-child span:last-child {
  font-size: 10px;
  color: #637083;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.thank-u-page__wrapper .thank-u-page__info > div:first-child p {
  width: 6px;
  min-width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #5EAA22;
  margin-right: 4px;
}
.thank-u-page__wrapper .back-to-homepage a {
  border-radius: 28px;
  background: #cf4008;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
}
.thank-u-page__wrapper .thank-u-page__items {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
  margin-bottom: 24px;
}
.thank-u-page__wrapper .thank-u-page__items > div {
  flex: 1;
}
.thank-u-page__wrapper .thank-u-page__items .right {
  padding: 12px 16px 24px 16px;
  background: #f2f4f7;
  border-radius: 8px;
}
.thank-u-page__wrapper .thank-u-page__items .right > div:first-child {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}
.thank-u-page__wrapper .thank-u-page__items .right > div:last-child {
  font-size: 14px;
  font-weight: 500;
}
.thank-u-page__wrapper .thank-u-page__items .right > div:last-child .transaction_id {
  font-weight: 700;
}
.thank-u-page__wrapper .thank-u-page__items .left {
  padding-left: 16px;
}
.thank-u-page__wrapper .thank-u-page__items .left ul li {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #202b37;
}
.thank-u-page__wrapper .address__delivery {
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-direction: column;
  background: #f2f4f7;
  width: 100%;
}
.thank-u-page__wrapper .address__delivery .left {
  width: 48%;
}
.thank-u-page__wrapper .address__delivery .address__header {
  display: flex;
  justify-content: space-between;
  border-radius: 8px 8px 0 0;
}
.thank-u-page__wrapper .address__delivery .address__header div:first-child {
  font-size: 20px;
  font-weight: 700;
  color: #202b37;
}
.thank-u-page__wrapper .address__delivery .address__content {
  display: flex;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
  gap: 16px;
}
.thank-u-page__wrapper .address__delivery .address__content__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.thank-u-page__wrapper .address__delivery .address__content > div {
  flex: 1;
  background: #f2f4f7;
  border-radius: 8px;
  padding: 12px;
}
.thank-u-page__wrapper .address__delivery .address__content > div > div {
  font-size: 12px;
  font-weight: 700;
}
.thank-u-page__wrapper .address__delivery > div {
  flex: 1;
  border-radius: 8px;
}
.thank-u-page__wrapper .delivery {
  padding: 24px 0;
  border-top: 1px solid #ced2da;
  border-bottom: 1px solid #ced2da;
  margin-bottom: 24px;
}
.thank-u-page__wrapper .delivery .delivery_inpost {
  font-size: 14px;
  font-weight: 500;
}
.thank-u-page__wrapper .delivery .delivery_inpost .icon {
  background-image: url("./../../images/cart/inpost.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 60px;
  height: 35px;
  display: inline-block;
  margin-right: 16px;
  padding-left: 16px;
}
.thank-u-page__wrapper .delivery .delivery_dpd {
  font-size: 14px;
  font-weight: 500;
}
.thank-u-page__wrapper .delivery .delivery_dpd .icon {
  background-image: url("./../../images/cart/dpd.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 60px;
  height: 35px;
  display: inline-block;
  margin-right: 16px;
  padding-left: 16px;
}
.thank-u-page__wrapper .delivery.cash > div:first-child {
  font-size: 20px;
  font-weight: 700;
  color: #202b37;
  margin-bottom: 24px;
}
.thank-u-page__wrapper .delivery.cash > div:last-child {
  font-size: 36px;
  font-weight: 400;
}
.thank-u-page__wrapper .delivery.cash > div:last-child > span {
  font-weight: 700;
  margin-left: 24px;
}
.thank-u-page__wrapper .thank-u-page__header h1 {
  font-size: 30px;
  font-weight: 700;
  color: #202b37;
  margin-bottom: 24px;
}
.thank-u-page__wrapper .thank-u-page__header div {
  font-size: 20px;
  font-weight: 700;
  color: #202b37;
  padding-bottom: 24px;
  border-bottom: 1px solid #ced2da;
}

.inpost-popup {
  background: rgba(20, 28, 36, 0.6) !important;
}
.inpost-popup .widget-modal {
  position: absolute !important;
  max-width: 770px !important;
  right: 0 !important;
  height: 100% !important;
  max-height: initial !important;
  padding-top: 67px !important;
  background: #ffffff;
}
.inpost-popup .widget-modal__topbar {
  background: #ffffff !important;
}
.inpost-popup .widget-modal__topbar:before {
  content: "Wybierz punkt odbioru";
  font-weight: 700;
  font-size: 28px;
  position: absolute;
  top: 37px;
  left: 16px;
}
.inpost-popup #widget-modal__map:not(.mobile) {
  padding-bottom: 30px !important;
  background: #ffffff;
  overflow-y: hidden !important;
  padding: 16px !important;
}
.inpost-popup .widget-modal__close {
  font-size: 0 !important;
  width: 64px !important;
  height: 64px !important;
  background-color: #202b37;
  border-radius: 100%;
  cursor: pointer;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-close-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 24px;
  top: 24px;
}

.popup-contact.popup {
  background: #344051;
}
.popup-contact.popup .g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.popup-contact.popup h2 {
  color: #ffffff;
}
.popup-contact.popup .custom-checkbox--additional-info {
  padding: 12px;
  background: #ffe0bc;
  border-radius: 16px;
  border: 1px solid #f7941e;
  font-size: 12px;
  font-weight: 500;
  color: #141c24;
  margin: 12px 0;
}
.popup-contact.popup .consent-item__group.not-valid .custom-checkbox {
  flex-direction: column;
}
.popup-contact.popup .consent-item__group.not-valid .custom-checkbox--text {
  color: #f98686 !important;
}
.popup-contact.popup .popup-form__item.input-file input {
  border: none !important;
  background: none !important;
}
.popup-contact.popup .files-list {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.popup-contact.popup .files-list__item {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.popup-contact.popup .files-list .file-name {
  color: #97a1af;
  font-size: 14px;
  font-weight: 500;
}
.popup-contact.popup .files-list .remove-file-icon {
  background-image: url("./../../images/cart/remove-file-bin.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: inline-block;
  cursor: pointer;
}
.popup-contact.popup input,
.popup-contact.popup textarea {
  font-family: "Satoshi", sans-serif;
}
.popup-contact.popup input:focus-visible,
.popup-contact.popup textarea:focus-visible {
  border: 1px solid #7fb2ff !important;
}
.popup-contact.popup .popup-form__item.input-file input {
  border: none !important;
  background: none !important;
}
.popup-contact.popup .modal-project-info + .popup__header .popup__title,
.popup-contact.popup .modal-project-info + .popup__header .popup__description {
  width: 100% !important;
}
.popup-contact.popup .popup-types {
  margin-bottom: 32px;
}
.popup-contact.popup .popup-types > span {
  font-size: 14px;
  font-weight: 500;
  color: #e4e7ec;
}
.popup-contact.popup .popup-types.not-valid > span {
  color: #f98686;
}
.popup-contact.popup .popup-types.not-valid .popup-types__items {
  border: 1px solid #f98686;
}
.popup-contact.popup .popup-types__items {
  border-radius: 16px;
  border: 1px solid #637083;
  padding: 24px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.popup-contact.popup .popup-types__items span.custom-checkbox--checkmark {
  border-radius: 100% !important;
}
.popup-contact.popup .modal-project-info {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #637083;
  margin-bottom: 24px;
}
.popup-contact.popup .modal-project-info__image img {
  width: 100px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}
.popup-contact.popup .modal-project-info__title {
  width: 66%;
  max-width: 66%;
}
.popup-contact.popup .modal-project-info__title p {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.popup-contact.popup .custom-checkbox {
  display: flex;
}
.popup-contact.popup .popup__title {
  margin-bottom: 12px;
}
.popup-contact.popup .popup__title h2 {
  color: #ffffff;
  line-height: 36px;
}
.popup-contact.popup select {
  height: 52px;
  padding-left: 8px;
  border-radius: 8px;
  margin-top: 8px;
  border-radius: 8px;
  background: #414e62;
  color: #f9fafb;
  border: 1px solid #637083;
  appearance: none;
  background-image: url("./../../images/cart/select-arrow.svg");
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  margin-bottom: 12px;
  background-position-x: 96%;
}
.popup-contact.popup textarea {
  border-radius: 8px;
  border: 1px solid #637083;
  background: #414e62;
  height: 180px;
  padding: 16px 8px 16px 12px;
  margin-top: 8px;
  width: 100%;
  color: #f9fafb;
  resize: vertical;
  font-family: "Satoshi", sans-serif !important;
  font-size: 16px;
}
.popup-contact.popup textarea:focus-visible {
  border: 1px solid #7fb2ff !important;
}
.popup-contact.popup .error-message {
  color: #f98686;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  display: flex;
}
.popup-contact.popup #loanFormCaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.popup-contact.popup .consent-item.information > div:nth-child(3) {
  margin-left: 32px;
}
.popup-contact.popup .consent-item.information > div:nth-child(1) {
  margin-bottom: 32px;
}
.popup-contact.popup .popup-contact-form__footer p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #ced2da;
  font-weight: 500;
}
.popup-contact.popup .popup-contact-form__footer p a {
  text-decoration: underline;
  color: #ced2da;
}
.popup-contact.popup .required-field-item {
  display: flex;
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #f9fafb;
  font-weight: 500;
}
.popup-contact.popup .popup-contact-form__submit {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.popup-contact.popup .popup-contact-form__submit button {
  border-radius: 28px;
  background: #cf4008;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 32px;
  outline: none;
  border: none;
  font-family: "Satoshi", sans-serif !important;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}
.popup-contact.popup .consent-item.information.newsletter .information:last-child {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.popup-contact.popup .consent-item.information.newsletter .information {
  margin: 0 0 24px 0 !important;
}
.popup-contact.popup .consent-item {
  border-radius: 16px;
  border: 1px solid #637083;
  padding: 24px;
  margin-bottom: 12px;
}
.popup-contact.popup .consent-item.not-valid {
  border: 1px solid #f98686;
}
.popup-contact.popup .consent-item.information {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 14px;
}
.popup-contact.popup .consent-item.information .information {
  margin: 32px 0;
  color: #ced2da;
  font-size: 14px;
}
.popup-contact.popup .consent-item.information .information a {
  color: #ced2da;
  text-decoration: underline;
  font-size: 14px;
}
.popup-contact.popup .consent-item.information .consent-item__group:first-child label {
  padding-left: 0;
}
.popup-contact.popup .consent-item.information .consent-item__group:last-child {
  margin-left: 32px;
}
.popup-contact.popup .consent-item span.custom-checkbox--text {
  color: #ced2da;
}
.popup-contact.popup .consent-item span.custom-checkbox--text a {
  color: #ced2da;
  text-decoration: underline;
}
.popup-contact.popup .consent-item.information.newsletter > div label {
  padding-left: 35px !important;
}
.popup-contact.popup .consent-item.information.newsletter > div {
  margin-bottom: 0 !important;
  padding-bottom: 24px;
}
.popup-contact.popup .popup-contact.popup .consent-item.information.newsletter .information {
  margin: 12px 0 !important;
}
.popup-contact.popup .popup__description {
  width: 85%;
}
.popup-contact.popup .popup__description p {
  font-size: 18px;
  font-weight: 500;
  color: #e4e7ec;
  line-height: 28px;
  margin-bottom: 32px;
}
.popup-contact.popup .popup-form__item {
  margin-bottom: 16px;
}
.popup-contact.popup .popup-form__item.not-valid {
  color: #f98686;
}
.popup-contact.popup .popup-form__item.not-valid label {
  color: #f98686;
}
.popup-contact.popup .popup-form__item.not-valid input,
.popup-contact.popup .popup-form__item.not-valid textarea,
.popup-contact.popup .popup-form__item.not-valid select {
  border: 1px solid #f98686;
}
.popup-contact.popup .popup-form__item.not-valid select {
  color: #f98686;
}
.popup-contact.popup .popup-form__item label {
  display: flex;
  flex-direction: column;
  color: #e4e7ec;
  font-size: 14px;
  font-weight: 500;
}
.popup-contact.popup .popup-form__item label input {
  border-radius: 8px;
  border: 1px solid #637083;
  background: #414e62;
  height: 52px;
  margin-top: 6px;
  padding-left: 8px;
  color: #e4e7ec;
  font-size: 14px;
  font-weight: 500;
  font-family: "Satoshi", sans-serif !important;
}
.popup-contact.popup .popup-form__item label input:focus-visible {
  outline: none;
  border: 1px solid #7fb2ff !important;
}
.popup-contact.popup.withPartner .separate p:first-child {
  margin-bottom: 16px;
}
.popup-contact.popup.withPartner .popup-types {
  margin-bottom: 16px;
}
.popup-contact.popup.withPartner .terms .popup-types__items {
  flex-direction: row !important;
}
.popup-contact.popup.withPartner .building-terms {
  flex-direction: row !important;
}
.popup-contact.popup.withPartner .popup__description p {
  margin-bottom: 0;
}
.popup-contact.popup.withPartner .popup__description p:last-child {
  margin-top: 16px;
  margin-bottom: 32px;
}
.popup-contact.popup.withPartner .popup-types {
  margin-bottom: 16px;
}
.popup-contact.popup.withPartner .terms {
  flex-direction: row;
}
.popup-contact.popup.withPartner .popup__description p {
  margin-bottom: 0;
}
.popup-contact.popup.withPartner .popup__description p:last-child {
  margin-top: 16px;
  margin-bottom: 32px;
}

.popup-after-submit {
  background: #344051 !important;
}
.popup-after-submit__body {
  background: #414e62;
  border-radius: 8px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid #637083;
}
.popup-after-submit__icon {
  background-image: url("./../../images/cart/popup-approve-icon.svg");
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  display: inline-block;
  margin-bottom: 12px;
}
.popup-after-submit__headline span {
  color: #f9fafb;
  line-height: 36px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.popup-after-submit__headline p {
  font-size: 18px;
  font-weight: 500;
  color: #ced2da;
  margin-bottom: 130px;
  line-height: 28px;
  margin-top: 12px;
}
.popup-after-submit__info p {
  font-size: 18px;
  font-weight: 500;
  color: #ced2da;
  line-height: 28px;
}

.popup-error {
  background: #344051 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-error .popup-back {
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
}
.popup-error .popup-back span {
  background: #f04f0f;
  border-radius: 28px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 32px;
  cursor: pointer;
}
.popup-error .error-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #414e62;
  width: 100%;
  padding: 34px;
  border: 1px solid #637083;
  border-radius: 8px;
}
.popup-error__body {
  background: #414e62;
  border-radius: 8px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1px solid #637083;
}
.popup-error__icon {
  background-image: url("./../../images/cart/form-error-icon.svg");
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  min-height: 80px;
  display: inline-block;
  margin-bottom: 12px;
}
.popup-error__headline span {
  color: #f9fafb;
  line-height: 36px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.popup-error__headline p {
  font-size: 18px;
  font-weight: 500;
  color: #ced2da;
  margin-bottom: 24px;
  line-height: 28px;
  margin-top: 12px;
  text-align: center;
}
.popup-error__info {
  margin-bottom: 24px;
}
.popup-error__info p {
  font-size: 18px;
  font-weight: 500;
  color: #ced2da;
  line-height: 28px;
  text-align: center;
}
.popup-error .popup-contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.popup-error .popup-contact__email {
  padding: 24px;
  border-radius: 8px;
  background: #344051;
  display: flex;
  justify-content: center;
}
.popup-error .popup-contact__email span {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}
.popup-error .popup-contact .popup-contact-top {
  display: flex;
  justify-content: space-between;
  background: #344051;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 4px;
}
.popup-error .popup-contact .popup-contact-top__contact a {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.popup-error .popup-contact .popup-contact-top__contact > p {
  font-size: 10px;
  font-weight: 500;
  color: #ced2da;
  text-align: right;
}
.popup-error .popup-contact .popup-contact-top__button {
  display: flex;
  align-items: center;
}
.popup-error .popup-contact .popup-contact-top__button span {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 48px;
  border: 1px solid rgb(206, 210, 218);
  color: #ffffff;
  cursor: pointer;
}
.popup-error .dot {
  width: 6px;
  height: 6px;
  background: #5eaa22;
  border-radius: 100%;
  margin-right: 4px;
  display: inline-block;
}

.popup-consents .error-message {
  margin-bottom: 16px;
}

.delivery-address-popup .input-group__slash {
  width: 3px !important;
  display: flex;
  align-items: center;
}
.delivery-address-popup .error {
  font-size: 14px;
  font-weight: 500;
  color: #f64c4c;
  margin-top: 3px;
}
.delivery-address-popup .input-group {
  background: #ffffff;
  padding-left: 0;
  padding-top: 0;
}
.delivery-address-popup .input-group__item.street {
  width: 100% !important;
}
.delivery-address-popup .popup__title h2 {
  font-size: 28px;
}
.delivery-address-popup .input-group > div:nth-child(1),
.delivery-address-popup .input-group > div:nth-child(2),
.delivery-address-popup .input-group > div:nth-child(3) {
  width: 100% !important;
  min-width: 100% !important;
  max-width: initial;
}
.delivery-address-popup .input-group > div:nth-child(4),
.delivery-address-popup .input-group > div:nth-child(6) {
  width: 44%;
}
.delivery-address-popup .input-group > div:nth-child(7) {
  width: 30%;
}
.delivery-address-popup .input-group > div:nth-child(8) {
  width: 63%;
}
.delivery-address-popup .input-group__item.phone input {
  flex: 1;
}
.delivery-address-popup .input-group__item.phone {
  width: 100% !important;
}
.delivery-address-popup .input-group__multiple {
  width: 100%;
}
.delivery-address-popup .input-group__item.email {
  width: 100%;
}
.delivery-address-popup .input-group__item {
  justify-content: flex-end;
}
.delivery-address-popup .input-group__item.city {
  width: 100% !important;
}
.delivery-address-popup .confirm_button {
  border-radius: 28px;
  background: #202B37;
  display: inline-block;
  color: white;
  padding: 10px 32px;
  cursor: pointer;
  margin-top: 24px;
}
.delivery-address-popup .popup__body {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.delivery-address-popup .input-group__item.postal {
  width: 31% !important;
}

.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-left: 16px;
}
.search-wrapper .search-bar-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 38px;
  box-sizing: border-box;
  padding: 8px 2px 8px 12px;
  border-radius: 18px;
  border: 1px solid #ced2da;
}
.search-wrapper .search-bar-wrapper__input {
  all: unset;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #637083;
  margin: 0;
  width: 100%;
}
.search-wrapper .search-bar-wrapper__input::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #637083;
  margin: 0;
}
.search-wrapper .search-bar-wrapper__select {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 132%;
  letter-spacing: 0.36px;
  background-color: #ffffff;
  color: #202b37;
  margin: 0;
  cursor: pointer;
  border: 0;
}
.search-wrapper .search-bar-wrapper__select:hover, .search-wrapper .search-bar-wrapper__select:focus {
  border: 0;
  outline: 0;
}
.search-wrapper .search-bar-wrapper__submit {
  all: unset;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 32px;
  box-sizing: border-box;
  padding: 8px 8px 8px 0;
  border-radius: 38px;
  cursor: pointer;
}
.search-wrapper .search-bar-wrapper__submit span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #ffffff;
  margin: 0;
}
.search-wrapper .search-bar-wrapper__submit img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.search-wrapper .search-bar-wrapper .vertical-short-line {
  display: block;
  width: 1px;
  height: 100%;
  background-color: #e4e7ec;
  margin: 0 8px;
}

html.hidden-overflow {
  overflow: hidden;
}

body.modal-open {
  position: relative;
}
body.modal-open::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  background-color: rgba(20, 28, 36, 0.6);
  width: 100%;
  height: 100%;
  z-index: 990;
}

.advanced-search-modal-wrapper {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.advanced-search-modal-wrapper .advanced-search-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 906px;
  height: 80vh;
  background-color: #344051;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
}
.advanced-search-modal-wrapper .advanced-search-container .close-advanced-search-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: #202b37;
  border-radius: 100%;
  cursor: pointer;
  margin-left: 32px;
}
.advanced-search-modal-wrapper .advanced-search-container .close-advanced-search-icon span {
  display: block;
  width: 32px;
  height: 32px;
}
.advanced-search-modal-wrapper .advanced-search-container .close-advanced-search-icon span::before {
  display: block;
  width: 32px;
  height: 32px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/filters/Close_round.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
}
.advanced-search-modal-wrapper .advanced-search-container form {
  overflow-y: scroll;
  overflow-x: hidden;
  direction: rtl;
  margin-left: 6px;
}
.advanced-search-modal-wrapper .advanced-search-container form::-webkit-scrollbar {
  width: 6px;
}
.advanced-search-modal-wrapper .advanced-search-container form::-webkit-scrollbar-track {
  background-color: #202b37;
  border-radius: 48px;
}
.advanced-search-modal-wrapper .advanced-search-container form::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__top {
  display: flex;
  flex-direction: column;
}
.advanced-search-modal-wrapper .advanced-search-container__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 24px 16px 24px;
  background-color: #344051;
  border-bottom: 1px solid #637083;
  border-radius: 16px 16px 0px 0px;
}
.advanced-search-modal-wrapper .advanced-search-container__header .title-desc-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 24px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__header .title-desc-box .title h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
  margin: 0 0 16px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__header .title-desc-box .desc p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #e4e7ec;
  margin: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  box-sizing: border-box;
  background-color: #414e62;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot:first-of-type {
  border-radius: 16px 0px 0px 16px;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot:first-of-type p {
  border-radius: 16px 0px 0px 16px;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot:last-of-type {
  border-radius: 0px 16px 16px 0px;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot:last-of-type p {
  border-radius: 0px 16px 16px 0px;
  border-right: 1px solid #637083;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot.active, .advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot:hover {
  background-color: #f7941e;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot.active p, .advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot:hover p {
  color: #202b37;
}
.advanced-search-modal-wrapper .advanced-search-container__header .tabs-slot p {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  margin: 0;
  padding: 12px 16px 14px 16px;
  user-select: none;
  border: 1px solid #637083;
  border-right: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle {
  display: flex;
  flex-direction: row;
  padding: 0 24px;
  direction: ltr;
  height: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs {
  position: relative;
  width: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs .filter-types-tabs__tab:last-of-type .filters__container_box__headline {
  margin-bottom: 120px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab {
  width: 488px;
  border-right: 1px solid #637083;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.height_at_ridge .filters__container_box__content__wrapper__no-name {
  padding: 12px 10px !important;
  background-color: unset !important;
  margin-bottom: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.height_at_ridge .filters__container_box__content__wrapper__no-name {
  padding: 0 !important;
  background-color: unset !important;
  margin-bottom: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content__wrapper__no-name {
  padding: 16px 16px !important;
  margin-bottom: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content__wrapper__no-name .filters__container_box__content--input {
  flex-wrap: wrap;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content {
  padding: 0 0 !important;
  height: 175px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content__wrapper {
  background-color: unset !important;
  padding: 4px 10px 4px 4px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content .desc {
  margin-left: 12px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content--input {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-left: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content--input .input-wrapper {
  max-width: 48%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content--input .input-slot {
  width: 100% !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.house_dimensions .filters__container_box__content--input .input-slot .input-slot--input input {
  width: 100% !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content__wrapper__no-name {
  padding: 12px 10px !important;
  margin-bottom: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content {
  padding: 12px 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content__wrapper {
  background-color: unset !important;
  padding: 4px 10px 4px 4px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content .desc {
  margin-left: 12px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content--input {
  margin-left: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content--input .input-slot {
  width: 90% !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.entry_dimensions .filters__container_box__content--input .input-slot .input-slot--input input {
  width: 100% !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content {
  padding: 12px 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content__wrapper {
  background-color: unset !important;
  padding: 4px 10px 4px 4px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content .desc {
  margin-left: 12px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content--input {
  margin-left: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content--input .input-slot {
  width: 90% !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content--input .input-slot .input-slot--input input {
  width: 100% !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content__wrapper__no-name {
  padding: 16px 10px !important;
  background-color: unset !important;
  margin-bottom: 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.plot_dimensions .filters__container_box__content__wrapper__no-name .filters__container_box__content--checkbox {
  margin: -12px 0 !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.roof_angle .filters__container_box__content--input .input-slot--input p:first-of-type {
  padding: 12px 6px !important;
  font-size: 16px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab.boxes_count .filters__container_box__content--input .input-slot--input input {
  width: 100% !important;
  border-radius: 8px !important;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label {
  color: #ffffff;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box {
  padding: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  padding: 16px 24px;
  margin: 0;
  border-bottom: 1px solid #637083;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline p {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0;
  color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline:hover {
  background-color: rgba(242, 244, 247, 0.1411764706);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline::after {
  position: absolute;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  top: 14px;
  right: 24px;
  background-image: url(./../../images/filters/Arrow_alt_lright_alt_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  background-color: unset;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline .filters__container_box__chosen_filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline .filters__container_box__chosen_filters:nth-of-type(n + 2) {
  margin-top: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline .filters__container_box__chosen_filters--slot {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #637083;
  margin: 6px 4px 6px 0;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline .filters__container_box__chosen_filters--slot img {
  object-fit: contain;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab > label .filters__container_box__headline .filters__container_box__chosen_filters--slot p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #ced2da;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content {
  position: absolute;
  top: 0;
  left: 488px;
  right: 0;
  bottom: 0;
  width: 375px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content span {
  animation: 0.5s ease-out 0s 1 slideInFromTop;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 15px 0;
  box-sizing: border-box;
  background-color: #344051;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal.active {
  transform: translateX(0);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__tooltip {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  padding: 10px 12px;
  border-radius: 16px;
  background-color: rgba(65, 78, 98, 0.5019607843);
  margin-bottom: 16px;
  color: #ced2da;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__headline p {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #e4e7ec;
  margin: 0 0 16px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom {
  height: 57px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #202b37;
  padding: 0 15px;
  z-index: 99999;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom .clean-filters {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.36px;
  color: #ffffff;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom .clean-filters::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("./../../images/filters/clean_filters_x_white.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom .done {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 28px;
  height: 41px;
  width: max-content;
  background-color: #cf4008;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom .done p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
  color: #ffffff;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom .done p span {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__bottom .done p span::before {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  cursor: pointer;
  background-image: url(./../../images/filters/Arrow_alt_lright_alt_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 16px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--back {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--back .filters_modal_back--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #414e62;
  border-radius: 100%;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--back .filters_modal_back--icon span {
  display: block;
  width: 16px;
  height: 16px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--back .filters_modal_back--icon span::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/filters/filters_back_icon.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--back .filters_modal_back--text p {
  font-size: 28px;
  font-style: 36px;
  font-weight: 700;
  line-height: 36px;
  color: #ffffff;
  margin-left: 12px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--close .filters_modal_close--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: #202b37;
  border-radius: 100%;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--close .filters_modal_close--icon span {
  display: block;
  width: 32px;
  height: 32px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__top--close .filters_modal_close--icon span::before {
  display: block;
  width: 32px;
  height: 32px;
  content: "";
  cursor: pointer;
  background-image: url("./../../images/filters/Close_round.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__middle {
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
  padding: 0 24px;
  box-sizing: border-box;
  border-radius: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 40px;
  height: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__middle::-webkit-scrollbar {
  width: 6px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__middle::-webkit-scrollbar-track {
  background-color: #202b37;
  border-radius: 48px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__middle::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid rgba(0, 0, 0, 0.18);
  border-left: 0;
  border-right: 0;
  background-color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__middle .filters__container_box__modal__content {
  padding-bottom: calc(100% + 40px);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal__middle .filters__container_box__modal__content .filters__container_box__content {
  transform: translateX(0);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content {
  border-radius: 16px;
  background-color: rgba(65, 78, 98, 0.5019607843);
  padding: 10px;
  transition: 0.6s all ease;
  transform: translateX(100%);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes {
  width: 100%;
  border-radius: 16px;
  background-color: rgba(65, 78, 98, 0.5019607843);
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes.hide {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .desc {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .desc.hidden {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .desc .tooltip {
  display: inline-block;
  margin-left: 6px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity {
  border-radius: 16px;
  background: #414e62;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #637083;
  padding: 4px 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  margin-right: 4px;
  margin-bottom: 4px;
  margin-top: 4px;
  border-radius: 8px;
  min-width: 48px;
  height: 28px;
  text-align: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot input[type=checkbox] {
  display: flex;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot label,
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0;
  color: #414e62;
  user-select: none;
  padding: 4px 12px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot.active {
  border: 1px solid #cf4008;
  background-color: #cf4008;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot.active p,
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-slot.active label {
  color: #ffffff;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-quantity-input {
  margin-top: 12px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more {
  border-radius: 16px;
  padding: 12px 10px;
  background: #414e62;
  box-sizing: border-box;
  width: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .more {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 6px 0;
  color: #97a1af;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .more span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 4px 8px 6px 6px;
  box-sizing: border-box;
  background-color: #637083;
  color: #e4e7ec;
  border-radius: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content {
  display: none;
  width: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content--checkbox {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox {
  font-size: inherit;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox--text {
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content--checkbox .custom-checkbox--checkmark {
  top: 3px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more__content--checkbox:last-of-type {
  margin-bottom: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity {
  border-radius: 16px;
  padding: 12px 0;
  background: #414e62;
  box-sizing: border-box;
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
  margin-bottom: 12px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity.hidden {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-desc p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid #ced2da;
  background-color: #ffffff;
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot input[type=checkbox] {
  display: flex;
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot label,
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0;
  color: #414e62;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot.active {
  border: 1px solid #cf4008;
  background-color: #cf4008;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot.active p,
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-slot.active label {
  color: #ffffff;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--boxes .box-more .subbox-quantity-input {
  margin-top: 12px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .more {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 6px 0;
  color: #97a1af;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .more span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 4px 8px 6px 6px;
  box-sizing: border-box;
  background-color: #637083;
  color: #e4e7ec;
  border-radius: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content.hide {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox {
  display: inline-flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox .custom-checkbox {
  font-size: inherit;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox .custom-checkbox--text {
  width: 100%;
  display: inline-block;
  align-items: center;
  max-width: 95%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox .custom-checkbox--text .tooltip:hover .tooltip-content:after {
  left: unset;
  transform: unset;
  right: 14px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox .custom-checkbox--text .tooltip:hover .tooltip-content {
  left: unset;
  right: -16px;
  transform: unset;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox .custom-checkbox--checkmark {
  top: 3px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox .tooltip {
  position: absolute;
  top: 10px;
  right: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox:last-of-type {
  margin-bottom: 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--checkbox.hidden {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 6px 0 6px;
  color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot.plot-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
  width: 127px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot.plot-area .input-slot--input {
  display: flex;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot.plot-area .input-slot--input input {
  width: 90px;
  margin-bottom: 10px;
  -moz-appearance: textfield;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot.plot-area .input-slot--input p {
  margin-bottom: 10px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--label label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #f9fafb;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input {
  display: flex;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input input {
  width: 70px;
  height: 40px;
  padding: 10px;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #f9fafb;
  border-radius: 8px 0 0 8px;
  background-color: #414e62;
  border: 1px solid #637083;
  -moz-appearance: textfield;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input input:hover, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input input:focus {
  border: 0;
  outline: 1px solid #4c94ff;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input input::-webkit-inner-spin-button, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input input::-webkit-outer-spin-button {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input p {
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0;
  color: #f9fafb;
  padding: 8px 6px;
  box-sizing: border-box;
  border: 1px solid #637083;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  width: max-content;
  height: 40px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input p:first-of-type {
  margin-left: 0;
  padding: 8px 6px 8px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content--input .input-slot--input p sup {
  font-size: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .desc {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 0 0 6px 0;
  color: #e4e7ec;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .desc.hidden {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .desc .tooltip {
  display: inline-block;
  margin-left: 6px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .desc .tooltip:hover .tooltip-content {
  transform: translateX(-50%);
  right: 0;
  left: 0;
  width: 40vw;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .desc .tooltip:hover .tooltip-content::after {
  left: unset;
  right: 32%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 12px 10px;
  border-radius: 16px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper.hidden, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name.hidden {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper .more, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name .more {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin: 12px 0 6px;
  color: #97a1af;
  cursor: pointer;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper .more span, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name .more span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  padding: 4px 8px 6px 6px;
  box-sizing: border-box;
  background-color: #637083;
  color: #e4e7ec;
  border-radius: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper--checkbox, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name--checkbox {
  margin: 10px 0 10px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper--checkbox .custom-checkbox, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox {
  font-size: inherit;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper--checkbox .custom-checkbox--text, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox--text {
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper--checkbox .custom-checkbox--checkmark, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name--checkbox .custom-checkbox--checkmark {
  top: 3px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper--checkbox.hidden, .advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name--checkbox.hidden {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name .input-wrapper {
  margin-bottom: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content__wrapper__no-name .input-wrapper > p {
  margin: 0 0 2px 0;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .plot-image {
  width: 100%;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab .filter-types__content .filters__container_box__modal .filters__container_box__content .plot-image img {
  width: 100%;
  height: auto;
  padding: 10px;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab [type=radio] {
  display: none;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab [type=radio]:checked ~ label .filters__container_box__headline {
  background-color: #637083;
  z-index: 2;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab [type=radio]:checked ~ label .filters__container_box__headline .filters__container_box__chosen_filters--slot {
  background-color: #414e62;
}
.advanced-search-modal-wrapper .advanced-search-container__middle .filter-types-tabs__tab [type=radio]:checked ~ label ~ .filter-types__content {
  z-index: 1;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #202b37;
  padding: 8px 15px;
  border-radius: 0px 0px 16px 16px;
  direction: ltr;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom .advanced-search-clean-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: max-content;
  height: 41px;
  box-sizing: border-box;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom .advanced-search-clean-filters p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 132%;
  letter-spacing: 0.36px;
  color: #ffffff;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom .advanced-search-clean-filters p img {
  object-fit: contain;
  margin-right: 4px;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom .advanced-search-clean-filters p span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #344051;
  padding: 2px 8px;
  box-sizing: border-box;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  color: #ced2da;
  border-radius: 150px;
  margin-left: 8px;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom .advanced-search-show-results {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: max-content;
  height: 41px;
  box-sizing: border-box;
  background-color: #cf4008;
  color: #ffffff;
  border-radius: 28px;
  box-shadow: 0px 0px 84px 0px #33363f;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 0 20px;
}
.advanced-search-modal-wrapper .advanced-search-container__bottom .advanced-search-show-results span {
  background-color: #ffffff;
  padding: 2px 8px;
  box-sizing: border-box;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #cf4008;
  border-radius: 150px;
  margin-left: 8px;
}

.contact-dialog {
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #ced2da;
  background: #f9fafb;
  height: 47px;
  position: relative;
}
.contact-dialog .dialog-mobile__title {
  display: none;
}
.contact-dialog__item {
  display: flex;
  align-items: center;
}
.contact-dialog__list {
  position: absolute;
  transition: all 200ms ease;
  right: 0;
  background: #ffffff;
  color: #344051;
  font-size: 14px;
  box-shadow: 0px 6px 12px 0px rgba(28, 39, 49, 0.05);
  z-index: 2;
  border-radius: 16px;
  padding: 16px 14px;
  box-sizing: border-box;
  width: max-content;
  flex-direction: column;
  right: 0;
  bottom: 47px;
  opacity: 0;
  pointer-events: none;
}
.contact-dialog__list.active {
  display: flex;
  top: 47px;
  opacity: 1;
  bottom: initial;
  pointer-events: all;
}
.contact-dialog__list > .contact-dialog__item {
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-dialog__list > .contact-dialog__item.call > span {
  position: relative;
  background-image: url("./../../images/header/phone.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 17px;
  width: 17px;
  display: inline-block;
  margin-right: 4px;
}
.contact-dialog__list > .contact-dialog__item.video > span {
  position: relative;
  background-image: url("./../../images/header/video.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 34px;
  width: 24px;
  display: inline-block;
  margin-right: 4px;
}
.contact-dialog__list > .contact-dialog__item.write {
  border-bottom: 1px solid #ced2da;
  padding-bottom: 14px;
}
.contact-dialog__list > .contact-dialog__item.write > span {
  position: relative;
  background-image: url("./../../images/header/letter.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 18px;
  width: 24px;
  display: inline-block;
  margin-right: 4px;
}
.contact-dialog__list > .contact-dialog__item:hover {
  color: #f7941e;
}
.contact-dialog__list a {
  color: #202b37;
  font-size: 14px;
}
.contact-dialog__list a:hover {
  color: #f7941e;
}
.contact-dialog__trigger {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #202b37;
  padding-right: 16px;
  padding-left: 10px;
  height: 100%;
  border-left: 1px solid #ced2da;
  cursor: pointer;
  user-select: none;
}
.contact-dialog__trigger.active .arrow_contact {
  transform: rotate(180deg);
}
.contact-dialog__trigger .arrow_contact {
  font-size: 0;
  position: relative;
  background-image: url("./../../images/header/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 10px;
  width: 11px;
  display: inline-block;
  margin-left: 8px;
  transition: all 500ms ease;
}
.contact-dialog__trigger > span {
  position: relative;
  background-image: url("./../../images/header/question2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: 8px;
}
.contact-dialog__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  height: 100%;
  padding-right: 10px;
}
.contact-dialog__info .dot {
  width: 6px;
  height: 6px;
  background: #5eaa22;
  border-radius: 100%;
  margin-right: 4px;
  display: inline-block;
}
.contact-dialog__info > a {
  font-weight: 700;
  font-size: 14px;
  color: #202b37;
}
.contact-dialog__info > span {
  font-weight: 700;
  font-size: 14px;
  color: #202b37;
}
.contact-dialog__info > p {
  color: #637083;
  font-size: 10px;
  font-weight: 500;
}

#main-wrapper .container .top-contact {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.navigation {
  width: 100%;
  margin-top: 16px;
}
.navigation .navigation-body-wrapper {
  height: 649px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 16px 16px;
  max-width: 1440px;
  padding: 0 32px;
}
@media (max-width: 1300px) {
  .navigation .navigation-body-wrapper {
    max-width: 90%;
  }
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 16px;
  left: 530px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  height: 50%;
  align-items: center;
  height: 100%;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__boxes {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__boxes > div:nth-child(3) img,
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__boxes div:nth-child(4) img {
  min-width: 32px !important;
  min-height: 32px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__title {
  font-size: 14px;
  font-weight: 500;
  color: #344051;
  line-height: 20px;
  text-align: left;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__box {
  height: auto;
  width: 300px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__box:hover {
  background: #e4e7ec;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__box a {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__box.orange span {
  color: #dd460a;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__box.orange .navigation-body-submenu-footer__title {
  color: #dd460a;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer__box.orange a {
  color: #dd460a;
}
.navigation .navigation-body-wrapper .navigation-body-submenu-footer > span {
  font-weight: 700;
  color: #202b37;
  font-size: 16px;
  width: 100%;
  margin-bottom: 16px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu {
  direction: ltr;
  transform: translate(20%);
  opacity: 0;
}
.navigation .navigation-body-wrapper .navigation-body-submenu > ul {
  background: #ffffff;
  border-radius: 0;
  max-height: 649px;
  min-height: 649px;
  overflow-y: auto;
  direction: rtl;
  width: 0;
  height: 0;
}
.navigation .navigation-body-wrapper .navigation-body-submenu > ul::-webkit-scrollbar {
  width: 6px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu > ul::-webkit-scrollbar-track {
  background-color: #e4e7ec;
  border-radius: 48px;
}
.navigation .navigation-body-wrapper .navigation-body-submenu > ul::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid #202b37;
  border-left: 0;
  border-right: 0;
  background-color: #202b37;
}
.navigation .navigation-body-wrapper .navigation-body-submenu > ul > li {
  height: 55px;
  padding-left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
  color: #202b37;
  direction: ltr;
  cursor: pointer;
}
.navigation .navigation-body-wrapper .navigation-body-submenu > ul > li {
  line-height: 19px;
}
.navigation .navigation-body-wrapper .submenu-links ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 626px;
  overflow-y: auto;
  overflow-x: hidden;
}
.navigation .navigation-body-wrapper .submenu-links ul::-webkit-scrollbar {
  width: 6px;
}
.navigation .navigation-body-wrapper .submenu-links ul::-webkit-scrollbar-track {
  background-color: #e4e7ec;
  border-radius: 48px;
}
.navigation .navigation-body-wrapper .submenu-links ul::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid #202b37;
  border-left: 0;
  border-right: 0;
  background-color: #202b37;
}
@media (max-width: 1300px) {
  .navigation .navigation-body-wrapper .submenu-links ul {
    max-height: 450px;
  }
}
.navigation .navigation-body-wrapper .submenu-links ul li {
  background: #ffffff;
  border-radius: 8px;
  width: 470px;
  font-size: 14px;
  font-weight: 500;
  color: #344051;
  min-height: 41px;
}
.navigation .navigation-body-wrapper .submenu-links ul li:hover {
  background: #e4e7ec;
}
.navigation .navigation-body-wrapper .submenu-links ul li a {
  color: #344051;
  width: 100%;
  padding: 10px 16px;
  display: flex;
}
.navigation .navigation-triggers {
  display: flex;
  justify-content: space-between;
}
.navigation .navigation-triggers__arrow {
  font-size: 0;
  position: relative;
  background-image: url("./../../images/header/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 10px;
  width: 11px;
  display: inline-block;
  margin-left: 8px;
  transition: all 500ms ease;
}
.navigation .navigation-triggers__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navigation .navigation-triggers__right .menu-element {
  position: relative;
  font-weight: 500;
  cursor: pointer;
  font-size: 12px;
}
.navigation .navigation-triggers__right .menu-element .navigation__body {
  display: none;
}
.navigation .navigation-triggers__right .menu-element:hover {
  font-weight: 700;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation-body-submenu {
  width: 300px;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation__body {
  display: flex;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation-triggers__arrow {
  transform: rotate(180deg);
  transition: all 500ms ease;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation-body-submenu {
  display: flex;
  position: absolute;
  z-index: 111;
  background: #ffffff;
  flex-direction: column;
  padding: 8px 6px 8px 6px;
  border-radius: 0 0 8px 8px;
  width: 330px;
  right: 0;
  padding-top: 24px;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation-body-submenu li {
  font-size: 14px;
  font-weight: 700;
  color: #344051;
  margin-bottom: 12px;
  padding: 0 16px;
  font-weight: 500;
  text-align: right;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation-body-submenu li a {
  color: #344051;
  font-weight: 500;
}
.navigation .navigation-triggers__right .menu-element:hover .navigation-body-submenu li a:hover {
  color: #f7941e;
}
.navigation .navigation-triggers__left .navigation__body {
  opacity: 0;
  height: 0;
  width: 0;
  visibility: hidden;
}
.navigation .navigation-triggers__left .navigation-body-wrapper {
  opacity: 0;
  height: 0;
  visibility: hidden;
}
.navigation .navigation-triggers__left .submenu-element {
  padding-right: 16px;
  line-height: 52px;
  font-weight: 500;
  border-bottom: 1px solid #ced2da;
  line-height: 19px;
}
.navigation .navigation-triggers__left .submenu-element.active {
  background: #f2f4f7;
  font-weight: 700;
}
.navigation .navigation-triggers__left .submenu-element.active .navigation-body-submenu__elements {
  display: flex;
  position: absolute;
  height: 100%;
  left: 300px;
  width: calc(100% - 300px);
  height: 100%;
  top: 0;
  background-color: #f2f4f7;
  padding: 16px 24px 24px 24px;
  border-radius: 0 0 16px 0;
  cursor: default;
}
.navigation .navigation-triggers__left .submenu-element.active .navigation-body-submenu__icon {
  background-image: url("./../../images/documentation_section/doc-arrow-right.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.navigation .navigation-triggers__left .submenu-element:hover {
  background: #f2f4f7;
  font-weight: 700;
}
.navigation .navigation-triggers__left .submenu-element:hover .navigation-body-wrapper {
  height: initial;
  opacity: 1;
  transition: all 300ms ease;
  transition-delay: 100ms;
  visibility: visible;
}
.navigation .navigation-triggers__left .submenu-element:hover .navigation-body-submenu > ul li {
  line-height: 19px !important;
}
.navigation .navigation-triggers__left .submenu-element:hover .navigation-body-submenu__icon {
  background-image: url("./../../images/documentation_section/doc-arrow-right.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.navigation .navigation-triggers__left .submenu-element:hover .navigation-body-submenu__elements {
  display: flex;
  position: absolute;
  height: 100%;
  left: 300px;
  width: calc(100% - 300px);
  height: 100%;
  top: 0;
  background-color: #f2f4f7;
  padding: 16px 24px 24px 24px;
  border-radius: 0 0 16px 0;
}
.navigation .navigation-triggers__left > ul {
  display: flex;
}
.navigation .navigation-triggers__left > ul > .menu-element {
  padding: 0 16px;
  line-height: 52px;
  font-weight: 500;
  cursor: pointer;
  font-size: 12px;
}
.navigation .navigation-triggers__left > ul > .menu-element.without-more-link .navigation-body-submenu > ul {
  border-radius: 0 0 0 16px !important;
}
.navigation .navigation-triggers__left > ul > .menu-element:first-child {
  padding-left: 0;
}
.navigation .navigation-triggers__left > ul > .menu-element > a {
  color: #202b37;
}
.navigation .navigation-triggers__left > ul > .menu-element:hover {
  font-weight: 700;
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-triggers__arrow {
  transform: rotate(180deg);
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-wrapper {
  height: 649px !important;
  opacity: 1 !important;
  transition: height 200ms ease;
  transition-delay: 500ms;
  visibility: visible;
  padding: 0;
}
@media (max-width: 1300px) {
  .navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-wrapper {
    height: 500px;
  }
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-submenu {
  transition: all 200ms ease;
  transition-delay: 500ms;
  transform: translateY(0);
  opacity: 1;
  left: 0;
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-submenu .nav-more {
  width: 300px;
  background: #ffffff;
  border-radius: 0 0 0 16px;
  display: flex;
  padding: 0 8px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 700;
  justify-content: flex-end;
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-submenu .nav-more:hover {
  background: #e4e7ec;
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-submenu > ul {
  height: 649px !important;
  width: 300px !important;
  transition: height 200ms ease;
  transition-delay: 500ms;
}
@media (max-width: 1300px) {
  .navigation .navigation-triggers__left > ul > .menu-element:hover .navigation-body-submenu > ul {
    max-height: 500px !important;
    min-height: 500px !important;
  }
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation__body {
  display: flex;
  position: absolute;
  width: 1380px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 111;
  transition: height 200ms ease;
  transition-delay: 500ms;
  background: #ffffff;
  height: 649px;
  opacity: 1;
  visibility: visible;
}
.navigation .navigation-triggers__left > ul > .menu-element:hover .navigation__body:after {
  content: "";
  position: absolute;
  left: -800px;
  top: 0;
  width: 200vw;
  height: 500vh;
  z-index: -1;
  background: rgba(20, 28, 36, 0.6);
  pointer-events: none;
  animation: 200ms fadeIn;
  animation-fill-mode: forwards;
  visibility: hidden;
}
.navigation .navigation-triggers ul {
  list-style-type: none;
}

.promotion-info-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 47px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #f7941e;
  background: #ffe0bc;
  flex: 1;
  max-width: 1009px;
  position: relative;
}
.promotion-info-label__check {
  display: flex;
  align-items: center;
}
.promotion-info-label__check a {
  font-weight: 500;
}
.promotion-info-label__check a:after {
  transition: all 0.5s ease;
}
.promotion-info-label__check:hover a:after {
  margin-left: 4px;
  transition: all 0.5s ease;
}
.promotion-info-label__right {
  display: flex;
  gap: 12px;
  margin-left: auto;
}
.promotion-info-label__text {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  margin-right: 12px;
}
.promotion-info-label__text > span {
  font-weight: 700;
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  font-size: 14px;
}
.promotion-info-label .promotion-info-label-clock {
  display: flex;
  gap: 12px;
}
.promotion-info-label .promotion-info-label-clock__item {
  padding: 0 12px;
}
.promotion-info-label .promotion-info-label-clock__item__seconds-suffix {
  min-width: 50px;
  display: inline-block;
}
.promotion-info-label .promotion-info-label-clock__item > span {
  font-size: 14px;
}
.promotion-info-label .promotion-info-label-clock__item > span:first-child {
  font-weight: 700;
  min-width: 18px;
  display: inline-flex;
  justify-content: center;
}
.promotion-info-label .promotion-info-label-clock__item:not(:last-child) {
  border-right: 1px solid rgba(20, 28, 36, 0.3019607843);
}
.promotion-info-label .promotion-info-label-clock__text {
  display: flex;
  align-items: center;
}
.promotion-info-label .promotion-info-label-clock__text span {
  font-size: 14px;
  font-weight: 700;
  max-width: 110px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}
.promotion-info-label .promotion-info-label-clock__time {
  display: flex;
}

@keyframes scrolling-left-desktop-1 {
  0% {
    transform: translateX(calc(100% + 200px));
    -webkit-transform: translateX(calc(100% + 200px));
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@-webkit-keyframes scrolling-left-desktop-1 {
  0% {
    -webkit-transform: translateX(calc(100% + 200px));
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes scrolling-left-desktop-2 {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@-webkit-keyframes scrolling-left-desktop-2 {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes scrolling-left-desktop-3 {
  0% {
    transform: translateX(calc(100% - 200px));
    -webkit-transform: translateX(calc(100% - 200px));
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}
@-webkit-keyframes scrolling-left-desktop-3 {
  0% {
    -webkit-transform: translateX(calc(100% - 200px));
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
.middle-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-right: 16px;
}
.middle-nav .header-fav-wrapper {
  position: relative;
  margin: 0 16px;
  margin-right: 0;
}
.middle-nav .header-fav-wrapper .header-fav {
  display: flex;
  align-items: center;
}
.middle-nav .header-fav-wrapper .favourite-wrapper__counter {
  position: absolute;
  right: -12px;
  background: #ff8800;
  border-radius: 112px;
  padding: 1.5px 6px;
  max-height: 15px;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  top: -3px;
  padding-top: 2px;
}
.middle-nav .logo-link {
  display: block;
  height: 25px;
}
.middle-nav .basket-wrapper {
  position: relative;
  cursor: pointer;
  height: 24px;
  margin-left: 16px;
}
.middle-nav .basket-wrapper__counter {
  min-width: 19px;
  background: #ff8800;
  border-radius: 100%;
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 62%;
  top: -17%;
  max-height: 15px;
  padding: 1.5px 6px;
  border-radius: 112px;
}
.middle-nav .advanced-search-btn {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  width: 207px;
  height: 36px;
  padding: 0 8px;
  border-radius: 28px;
  box-sizing: border-box;
  background-color: #cf4008;
  cursor: pointer;
}
.middle-nav .advanced-search-btn__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  white-space: pre;
}
.middle-nav .advanced-search-btn img {
  margin-left: 8px;
}

.collection-list-top-text-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 24px 32px 8px 32px;
  box-sizing: border-box;
  border-radius: 16px;
  background-color: #f2f4f7;
  margin: 33px 0 24px 0;
}
.collection-list-top-text-box h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 0 0 16px 0;
  color: #202b37;
}
.collection-list-top-text-box p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0 0 16px 0;
  color: #344051;
}

.collection-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.collection-list-wrapper__slot {
  display: flex;
  flex-direction: column;
  width: calc(33.3% - 16px);
  margin-right: 16px;
  margin-bottom: 32px;
}
.collection-list-wrapper__slot.kondygnacje .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/floors.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.cechy-bryly-ekonomia .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/style-building-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.dach .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/roof.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.dzialka .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/plot.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.garaz .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/garage.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.inne .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/others.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.liczba-pokoi-z-salonem .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/rooms.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.magazynowe .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/warehouses.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.ogrzewanie-energooszczednosc .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/heating-type.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.pomocnicze .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/others.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.powierzchnia .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/area.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.promocje .collection-slot__header .header-icon, .collection-list-wrapper__slot.koszty .collection-slot__header .header-icon, .collection-list-wrapper__slot.koszta .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/costs.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.rolnicze .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/agricultural.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.styl-bryla .collection-slot__header .header-icon, .collection-list-wrapper__slot.styl-bryla-funkcje .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/style-building-shape.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.technologia .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/technology.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.uslugowe .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/services.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot.zabudowa .collection-slot__header .header-icon {
  background-image: url(./../../images/collection_list/buildings.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.collection-list-wrapper__slot:nth-of-type(3n) {
  width: 33.3%;
  margin-right: 0;
}
.collection-list-wrapper__slot .collection-slot__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  width: 100%;
  border-radius: 16px;
  margin: 0 0 12px 0;
  background-color: #f2f4f7;
  border: 1px solid #ced2da;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
}
.collection-list-wrapper__slot .collection-slot__header p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #202b37;
  padding: 18px;
  margin: 0;
}
.collection-list-wrapper__slot .collection-slot__header .header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #202b37;
  border-radius: 100%;
  padding: 12px;
  box-sizing: border-box;
  margin: 8px;
  width: 48px;
  height: 48px;
}
.collection-list-wrapper__slot .collection-slot__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background-color: #f2f4f7;
  margin: 0 0 4px 0;
}
.collection-list-wrapper__slot .collection-slot__item-left {
  display: inline-flex;
  width: 85%;
}
.collection-list-wrapper__slot .collection-slot__item-left a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #344051;
  margin: 0;
  text-decoration: none;
  padding: 16px;
  box-sizing: border-box;
}
.collection-list-wrapper__slot .collection-slot__item-left a:hover {
  color: #f7941e;
}
.collection-list-wrapper__slot .collection-slot__item-left a span {
  font-weight: 700;
}
.collection-list-wrapper__slot .collection-slot__item-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 16px;
}
.collection-list-wrapper__slot .collection-slot__item-right .quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  background-color: #ffffff;
  border-radius: 150px;
  height: 21px;
  width: max-content;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #414e62;
  margin: 0 7px 0 0;
}

.section-header .swiper-buttons {
  margin-left: auto;
}
.section-header .swiper-buttons__left {
  background-image: url("./../../images/cart/Carousel-left.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 4px;
  content: "";
  cursor: pointer;
  user-select: none;
}
.section-header .swiper-buttons__right {
  background-image: url("./../../images/cart/Carousel-right.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 4px;
  content: "";
  cursor: pointer;
  user-select: none;
}

.contact-block {
  display: flex;
  justify-content: center;
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 40px;
  background: #e4e7ec;
}
.contact-block.contact-block-newsletter .contact-block__form-trigger {
  background: #cf4008;
  border: none;
  color: #ffffff;
  font-weight: 500 !important;
}
.contact-block span {
  font-weight: 700;
  font-size: 16px;
  color: #141c24;
}
.contact-block__form-trigger {
  font-size: 12px;
  font-weight: 500;
  color: #141c24;
  margin-left: 12px;
  padding: 7px 16px;
  border-radius: 38px;
  border: 1px solid #ced2da;
  cursor: pointer;
}

.benefits-section {
  padding: 24px 16px;
  border-radius: 18px;
  background: #e4e7ec;
  margin-bottom: 64px;
}
.benefits-section .benefits-section__item:hover .benefits-section__icon {
  display: none;
}
.benefits-section .benefits-section__item:hover span.benefits-section__description {
  display: flex;
}
.benefits-section .benefits-section__item:hover .benefits-section__content {
  height: 100%;
  justify-content: space-between;
}
.benefits-section__content p {
  font-size: 18px;
  color: #637083;
  font-weight: 700;
  line-height: 21px;
}
.benefits-section__headline {
  font-size: 26px;
  font-weight: 700;
  color: #202b37;
  margin-bottom: 24px;
  text-align: center;
}
.benefits-section__items {
  display: flex;
  gap: 16px;
}
.benefits-section__content {
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.benefits-section__item {
  flex: 1;
  background: #f9fafb;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #ced2da;
  width: 20%;
  height: 285px;
  cursor: pointer;
}
.benefits-section__item.exp .benefits-section__icon {
  background-image: url("./../../images/home_page/benefit-murator.svg");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 120px;
  height: 120px;
  display: inline-block;
}
.benefits-section__item.multiple-projects .benefits-section__icon {
  background-image: url("./../../images/home_page/advice.svg");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 120px;
  height: 120px;
  display: inline-block;
}
.benefits-section__item.advice .benefits-section__icon {
  background-image: url("./../../images/home_page/multiple_projects.svg");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 120px;
  height: 120px;
  display: inline-block;
}
.benefits-section__item.discount .benefits-section__icon {
  background-image: url("./../../images/home_page/discount.svg");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 120px;
  height: 120px;
  display: inline-block;
}
.benefits-section__item.change .benefits-section__icon {
  background-image: url("./../../images/home_page/change.svg");
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 120px;
  height: 120px;
  display: inline-block;
}
.benefits-section__description {
  display: none;
  font-size: 12px;
  font-weight: 500;
  color: #414e62;
  flex-direction: column;
  line-height: 15px;
}
.benefits-section__description a {
  color: #cf4008;
  font-weight: 500;
  margin-top: 12px;
  display: flex;
}

.info-section {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}
.info-section__left {
  min-width: 440px;
}
.info-section__left > span {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 36px;
  display: flex;
}
.info-section__right p {
  color: #344051;
  font-size: 14px;
  line-height: 22px;
}

.qa {
  margin-bottom: 40px;
}
.qa__title {
  font-size: 26px;
  line-height: 32px;
  color: #202b37;
  font-weight: 700;
  margin-bottom: 24px;
}
.qa__items {
  display: flex;
  gap: 16px;
}
.qa__left {
  flex: 1;
}
.qa__right {
  flex: 1;
}
.qa__block-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 12px;
}
.qa__block {
  margin-bottom: 32px;
}
.qa__block-content ul {
  padding-left: 16px;
  margin-top: 12px;
}
.qa__block-content ul li {
  font-size: 14px;
  line-height: 22px;
  color: #344051;
}
.qa__block-content ul li a {
  color: #344051;
  text-decoration: underline;
}
.qa__block-content p {
  font-size: 14px;
  line-height: 22px;
  color: #344051;
}
.qa__block-content p a {
  color: #344051;
  text-decoration: underline;
}

.media-wrapper {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}
.media-wrapper__left {
  width: 450px;
  min-width: 450px;
  padding: 12px;
  border-radius: 16px;
  background: #344051;
  border-radius: 8px;
}
.media-wrapper__left .media-wrapper-links {
  background: #202b37;
  height: 100%;
  padding: 16px 12px 12px 12px;
  gap: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer span.link-with-arrow-white {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__title {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  display: flex;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__description {
  font-size: 12px;
  color: #97a1af;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__item {
  border-radius: 8px;
  border-radius: 8px;
  border: 1px solid #637083;
  background: #344051;
  display: flex;
  position: relative;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__item a {
  display: flex;
  width: 100%;
  padding: 12px;
  padding-left: 16px;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__item.forum .media-wrapper-links-footer__icon {
  position: relative;
  background-image: url("./../../images/home_page/murator-background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: 8px;
}
.media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__item.facebook .media-wrapper-links-footer__icon {
  position: relative;
  background-image: url("./../../images/home_page/facebook-background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-right: 8px;
}
.media-wrapper__left .media-wrapper-links__item {
  width: 80px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid #637083;
  background: #344051;
}
.media-wrapper__left .media-wrapper-links__item a {
  display: flex;
  text-decoration: none;
  width: 80px;
  height: 64px;
  justify-content: center;
  align-items: center;
}
.media-wrapper__left .media-wrapper-links__title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.media-wrapper__left .media-wrapper-links__icons {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.media-wrapper__left .media-wrapper-links__icons .media-wrapper-links__item.facebook span {
  position: relative;
  background-image: url("./../../images/home_page/facebook.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
}
.media-wrapper__left .media-wrapper-links__icons .media-wrapper-links__item.insta span {
  position: relative;
  background-image: url("./../../images/home_page/instagram.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
}
.media-wrapper__left .media-wrapper-links__icons .media-wrapper-links__item.pinterest span {
  position: relative;
  background-image: url("./../../images/home_page/pinterest.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
}
.media-wrapper__left .media-wrapper-links__icons .media-wrapper-links__item.youtube span {
  position: relative;
  background-image: url("./../../images/home_page/youtube.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
}
.media-wrapper__right {
  flex: 1;
  padding: 12px;
  border-radius: 16px;
  background: #202b37;
}
.media-wrapper__right .media-wrapper-video {
  display: flex;
  gap: 24px;
}
.media-wrapper__right .media-wrapper-video__icon {
  position: relative;
  background-image: url("./../../images/home_page/youtube-background.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 24px;
  width: 24px;
  display: inline-block;
  margin-bottom: 8px;
}
.media-wrapper__right .media-wrapper-video__content {
  padding-top: 16px;
}
.media-wrapper__right .media-wrapper-video__content p {
  font-size: 20px;
  color: #f2f4f7;
}

.sg-swiper {
  position: relative;
  z-index: 0;
  margin-bottom: 10px;
  overflow: hidden;
  aspect-ratio: 960/293;
}
.sg-swiper .swiper-slide {
  display: flex;
  border-radius: 18px;
}
.sg-swiper .swiper-button-disabled {
  opacity: 0.5;
}
.sg-swiper .sg-swiper-pagination {
  display: flex;
  align-items: center;
  max-width: max-content;
  position: absolute;
  bottom: 18px !important;
  left: 20px !important;
  z-index: 11;
  height: 22px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 0 8px;
}
.sg-swiper .sg-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #97a1af;
  opacity: 1 !important;
}
.sg-swiper .sg-swiper-pagination .swiper-pagination-bullet-active {
  background: #f7941e;
}
.sg-swiper__arrow-left {
  background-image: url("./../../images/home_page/swiper-left.svg");
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 70px;
  z-index: 11;
  cursor: pointer;
}
.sg-swiper__arrow-right {
  background-image: url("./../../images/home_page/swiper-right.svg");
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 11;
  cursor: pointer;
}
.sg-swiper .swiper-slide img {
  height: auto;
  max-height: 420px;
  width: 100%;
  flex: 1;
  border-radius: 18px;
  object-fit: initial;
}

.multiple-banners {
  display: flex;
  gap: 16px;
  height: 490px;
  margin-bottom: 16px;
}
.multiple-banners__left {
  width: 60%;
  position: relative;
}
.multiple-banners__left .multiple-banners-item {
  height: 100%;
  position: relative;
  background-image: url("./../../images/home_page/wybor-domu.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-position-x: -36px;
}
.multiple-banners__left .multiple-banners-item__content {
  position: absolute;
  bottom: 30px;
  right: 30px;
  max-width: 315px;
}
.multiple-banners__left .multiple-banners-item__title {
  font-size: 50px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}
.multiple-banners__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 40%;
}
.multiple-banners__right .multiple-banners-item {
  height: 50%;
}
.multiple-banners__right .multiple-banners-item:first-child {
  height: 100%;
  position: relative;
  background-image: url("./../../images/home_page/calc-desktop.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.multiple-banners__right .multiple-banners-item:last-child {
  height: 100%;
  position: relative;
  background-image: url("./../../images/home_page/promo-desktop.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.multiple-banners__right .multiple-banners-item__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 30px;
}
.multiple-banners__right .multiple-banners-item__content.with-after {
  width: 268px;
  padding: 30px;
}
.multiple-banners__right .multiple-banners-item__content.no-after {
  position: absolute;
  width: 58%;
  bottom: 30px;
  right: 16px;
}
.multiple-banners__right .multiple-banners-item__title {
  font-size: 26px;
  line-height: 31px;
  font-weight: 700;
  margin-bottom: 8px;
}
.multiple-banners .multiple-banners-item {
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  border-radius: 16px;
  position: relative;
}

.sg-contact-banner {
  display: flex;
  height: 143px;
  gap: 40px;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  border: 1px solid rgb(228, 231, 236);
  border-radius: 16px;
  margin-bottom: 64px;
}
.sg-contact-banner.thanks {
  margin: 24px 45px;
}
.sg-contact-banner.financial .sg-contact-banner__image {
  width: 425px;
  height: 100%;
  position: relative;
  background-image: url("./../../images/home_page/finansowanie.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 16px 0 0 16px;
}
.sg-contact-banner__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sg-contact-banner__image {
  width: 425px;
  height: 100%;
  position: relative;
  background-image: url("./../../images/home_page/wybor-projektu.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 16px 0 0 16px;
}
.sg-contact-banner__content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sg-contact-banner__description {
  display: flex;
  justify-content: space-between;
}
.sg-contact-banner__description > p {
  font-size: 16px;
  font-weight: 500;
}

.section-header {
  margin-bottom: 16px;
}
.section-header__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  margin-bottom: 8px;
}
.section-header__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommended-collections-listing {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.recommended-collections-listing .recommended-project-item {
  display: flex;
  justify-content: center;
}
.recommended-collections-listing .recommended-project-item__image {
  margin-bottom: 12px;
}
.recommended-collections-listing .recommended-project-item__image img {
  height: 180px;
  width: 180px;
  object-fit: cover;
  border-radius: 100%;
}
.recommended-collections-listing .recommended-project-item__label {
  display: flex;
  justify-content: center;
}
.recommended-collections-listing .recommended-project-item__label span {
  font-size: 12px;
  background: rgb(159, 223, 191);
  color: #141c24;
  padding: 3px 8px;
  border-radius: 35px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
}
.recommended-collections-listing .recommended-project-item__label span:empty {
  display: none;
}
.recommended-collections-listing .recommended-project-item__title {
  display: flex;
  justify-content: center;
}
.recommended-collections-listing .recommended-project-item__title span {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  color: #202b37;
  margin-bottom: 12px;
  text-align: center;
}

.sg-newsletter {
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  padding: 24px 32px;
  background: #202b37;
  border-radius: 16px;
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
  overflow: hidden;
}
.sg-newsletter .newsletter-left__title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}
.sg-newsletter .newsletter-left__button {
  background: #cf4008;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 28px;
  display: inline-block;
  cursor: pointer;
}
.sg-newsletter .newsletter-right {
  max-width: 395px;
  position: relative;
}
.sg-newsletter .newsletter-right:after {
  content: "";
  width: 240px;
  height: 240px;
  background: #f7941e;
  position: absolute;
  border-radius: 100%;
  right: -83%;
  bottom: -116px;
}
.sg-newsletter .newsletter-right:before {
  content: "";
  width: 63px;
  height: 63px;
  position: absolute;
  border-radius: 100%;
  background: #f7941e;
  right: -100%;
}
.sg-newsletter .newsletter-right__content {
  margin-bottom: 12px;
}
.sg-newsletter .newsletter-right__content span {
  font-size: 16px;
  color: #ced2da;
}
.sg-newsletter .newsletter-right__list ul {
  list-style-type: none;
}
.sg-newsletter .newsletter-right__list ul li {
  color: #ced2da;
}

.last-watched__collection {
  gap: 12px;
  margin-bottom: 60px;
  min-height: 66px;
}
.last-watched__collection-title {
  font-size: 12px;
  font-weight: 500;
  color: #637083;
  display: flex;
  align-items: center;
}
.last-watched__collection-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.last-watched__collection-item span {
  display: flex;
  align-items: center;
}
.last-watched__collection-item a {
  padding: 4px 8px;
  border-radius: 4px;
  background: #e4e7ec;
  color: #344051;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
}

.project-collections {
  gap: 12px;
  margin-bottom: 60px;
  min-height: 66px;
}
.project-collections__title {
  font-size: 12px;
  font-weight: 500;
  color: #637083;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.project-collections__item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.project-collections__item span {
  display: flex;
  align-items: center;
}
.project-collections__item a {
  padding: 4px 8px;
  border-radius: 4px;
  background: #e4e7ec;
  color: #344051;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
}

.recently_viewed-projects-listings__items .swiper-slide .filters_result_teaser {
  width: 100%;
}
.recently_viewed-projects-listings__items .swiper-slide .filters_result_teaser__desc--icons_and_area {
  position: absolute;
  width: 94%;
  left: 3%;
  bottom: 64px;
}

.recommended-listings__items .swiper-slide .filters_result_teaser {
  width: 100%;
}
.recommended-listings__items .swiper-slide .filters_result_teaser__desc--icons_and_area {
  position: absolute;
  width: 94%;
  left: 3%;
  bottom: 64px;
}

.section.new.swiper .new__items .swiper-slide .filters_result_teaser {
  width: 100%;
}

.breadcrumbs-wrapper {
  border-top: 1px solid #e4e7ec;
  border-bottom: 1px solid #e4e7ec;
  margin: 0 auto 24px;
}
.breadcrumbs-wrapper .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding: 10px 32px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 44px;
}
.breadcrumbs-wrapper .breadcrumbs-back {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.breadcrumbs-wrapper .breadcrumbs-back a {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 40px;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  color: #202b37;
  text-decoration: none;
}
.breadcrumbs-wrapper .breadcrumbs-back a img {
  margin-right: 10px;
}
.breadcrumbs-wrapper .breadcrumbs-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.breadcrumbs-wrapper .breadcrumbs-box-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  list-style: none;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__slash {
  display: flex;
  height: 18px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item {
  position: relative;
  line-height: 20px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item a {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #202b37;
  text-decoration: none;
  margin: 0 8px;
  white-space: pre;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #202b37;
  margin: 0 8px;
  white-space: pre;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__home {
  width: 20px;
  height: 20px;
  margin-right: 16px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__home a {
  white-space: unset;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 4px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others:hover .breadcrumbs-box-category-list {
  display: flex;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others:hover img {
  transform: rotate(180deg);
  transition: 0.6s;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #202b37;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 20px;
  left: 0;
  list-style: none;
  background-color: #ffffff;
  padding: 8px 6px;
  border-radius: 8px;
  margin: 0 0 4px 0;
  width: 320px;
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-shadow: 0px 6px 12px 0px rgba(28, 39, 49, 0.0509803922);
  z-index: 999;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list__item {
  margin-bottom: 8px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list__item:last-of-type {
  margin-bottom: 0;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list__item a {
  display: block;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #202b37;
  text-decoration: none;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list__item:hover a {
  color: #f7941e;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list::-webkit-scrollbar {
  width: 6px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list::-webkit-scrollbar-track {
  background-color: #e4e7ec;
  border-radius: 48px;
}
.breadcrumbs-wrapper .breadcrumbs-box-list__item.breadcrumbs-box__others .breadcrumbs-box-category-list::-webkit-scrollbar-thumb {
  border-radius: 48px;
  border: 6px solid #202b37;
  border-left: 0;
  border-right: 0;
  background-color: #202b37;
}

.static-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.static-page-not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 80px auto 40px auto;
}
.static-page-not-found__img img {
  object-fit: contain;
  width: 536px;
  height: auto;
}
.static-page-not-found__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.static-page-not-found__content h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #202b37;
  text-align: center;
}
.static-page-not-found__content p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #202b37;
  text-align: center;
}
.static-page-not-found__content .back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cf4008;
  color: #ffffff;
  padding: 8px 32px;
  box-sizing: border-box;
  width: max-content;
  height: 44px;
  border-radius: 35px;
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 700;
  cursor: pointer;
}

.static-page .container .facts-container {
  margin: 0 0 32px 0;
}
.static-page .container .facts-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .facts-container-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.static-page .container .facts-container-wrapper__slot {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
  background-color: #f2f4f7;
  margin-right: 16px;
  width: 216px;
  height: auto;
  min-height: 423px;
}
.static-page .container .facts-container-wrapper__slot:nth-of-type(4n) {
  margin-right: 0;
}
.static-page .container .facts-container-wrapper__slot:nth-of-type(2) img {
  object-fit: contain;
}
.static-page .container .facts-container-wrapper__slot--img {
  display: flex;
  max-width: 100%;
  padding: 10px;
  margin: 0 0 16px 0;
}
.static-page .container .facts-container-wrapper__slot--img img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.static-page .container .facts-container-wrapper__slot--text h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .facts-container-wrapper__slot--text p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 16px 0;
}
.static-page .container .facts-container-wrapper__slot--text p:last-of-type {
  margin: 0;
}
.static-page .container .text-container {
  margin: 0 0 32px 0;
}
.static-page .container .text-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .text-container h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 16px 0;
}
.static-page .container .text-container p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .checkmark-rectangle-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .checkmark-rectangle-container-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 32px 0;
}
.static-page .container .checkmark-rectangle-container-wrapper__slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background-color: #f2f4f7;
  width: 416px;
  margin-right: 16px;
  margin-bottom: 16px;
}
.static-page .container .checkmark-rectangle-container-wrapper__slot:nth-of-type(2n) {
  margin-right: 0;
}
.static-page .container .checkmark-rectangle-container-wrapper__slot img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 0 12px 0;
}
.static-page .container .checkmark-rectangle-container-wrapper__slot h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 12px 0;
}
.static-page .container .checkmark-rectangle-container-wrapper__slot p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 16px 0;
}
.static-page .container .checkmark-rectangle-container-wrapper__slot p:last-of-type {
  margin: 0;
}
.static-page .container .accordion-img-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .accordion-img-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 32px 0;
}
.static-page .container .accordion-img-container-wrapper .img-container {
  object-fit: contain;
  margin: 0 0 0 16px;
}

.static-page .container .green-list-cols-container {
  display: flex;
  flex-direction: row;
}
.static-page .container .green-list-cols-container__col {
  display: flex;
  flex-direction: column;
  width: 448px;
  margin: 0 16px 0 0;
}
.static-page .container .green-list-cols-container__col:nth-of-type(2) {
  margin: 0;
}
.static-page .container .dark-boxes-container {
  display: flex;
  flex-direction: row;
  margin: 0 0 32px 0;
}
.static-page .container .dark-boxes-container__slot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #202b37;
  width: 448px;
  min-height: 233px;
  margin: 0 16px 0 0;
}
.static-page .container .dark-boxes-container__slot:nth-of-type(2) {
  margin: 0;
}
.static-page .container .dark-boxes-container__slot h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}
.static-page .container .dark-boxes-container__slot strong {
  display: inline-flex;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}
.static-page .container .dark-boxes-container .dark-boxes--button .dark-boxes-link,
.static-page .container .dark-boxes-container .dark-boxes--button .cta-contact-us {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cf4008;
  color: #ffffff;
  padding: 12px 20px;
  box-sizing: border-box;
  width: max-content;
  height: 44px;
  border-radius: 35px;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.static-page .container .green-list-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .green-list-container .green-list {
  margin: 0 0 24px 0;
}
.static-page .container .green-list-container .green-list-li {
  position: relative;
  list-style: none;
  padding: 12px 0 12px 40px;
  border-top: 1px solid #e4e7ec;
}
.static-page .container .green-list-container .green-list-li:last-of-type {
  border-bottom: 1px solid #e4e7ec;
}
.static-page .container .green-list-container .green-list-li::before {
  position: absolute;
  top: 12px;
  left: 0;
  background-image: url("./../../images/static_pages/common/green_checked.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
}

.static-page .container .img-text-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 32px 0;
}
.static-page .container .img-text-container__left {
  display: flex;
  margin: 0 24px 0 0;
}
.static-page .container .img-text-container__right p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 16px 0;
}

.static-page .container .grey-accordion-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .grey-accordion-container h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .grey-accordion-container-wrapper {
  margin: 0 0 24px 0;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__header {
  padding: 24px;
  margin: 0;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__item {
  background-color: #f2f4f7;
  border-radius: 8px;
  border: 0 !important;
  margin: 0 0 8px 0;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__body {
  padding: 0 24px 24px 24px;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__body .action-box,
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__body .action-btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cf4008;
  color: #ffffff;
  padding: 12px 20px;
  box-sizing: border-box;
  width: max-content;
  height: 44px;
  border-radius: 35px;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__body .no-space-text p {
  margin: 0;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__body .no-space-text p:last-of-type {
  margin: 0 0 24px 0;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__body .text-box {
  margin: 0 0 24px 0;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__title {
  font-size: 26px !important;
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__title img {
  margin: 0 16px 0 0;
  user-select: none;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__arrow {
  background-image: url("./../../images/static_pages/common/accordion-plus.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: inline-block;
}
.static-page .container .grey-accordion-container-wrapper .accordion-container .accordion__arrow.active {
  background-image: url("./../../images/static_pages/common/accordion-minus.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
}

.static-page .container .grey-img-text-boxes h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .grey-img-text-boxes-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.static-page .container .grey-img-text-boxes-container__slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f3f2f2;
  border-radius: 8px;
  margin: 0 24px 24px 0;
  width: 266px;
  height: 190px;
  box-sizing: border-box;
  padding: 24px;
}
.static-page .container .grey-img-text-boxes-container__slot:nth-of-type(3n) {
  margin: 0 0 24px 0;
}
.static-page .container .grey-img-text-boxes-container__slot .slot-img {
  margin: 0 0 16px 0;
}
.static-page .container .grey-img-text-boxes-container__slot .slot-img img {
  object-fit: contain;
}
.static-page .container .grey-img-text-boxes-container__slot .slot-text {
  display: inline-flex;
  min-height: 44px;
}
.static-page .container .grey-img-text-boxes-container__slot .slot-text strong {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
  text-align: center;
}

.static-page .container .text-arrow-img-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 64px 0 32px 0;
}
.static-page .container .text-arrow-img-container::after {
  position: absolute;
  left: 292px;
  bottom: 20px;
  background-image: url("./../../images/static_pages/payment_and_delivery/arrow.svg");
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 100px;
  height: 100px;
  display: inline-block;
}
.static-page .container .text-arrow-img-container .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  width: 100%;
  height: 266px;
}
.static-page .container .text-arrow-img-container .text-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 16px 0;
  width: 348px;
}
.static-page .container .text-arrow-img-container .text-container p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 16px 0;
  width: 348px;
}
.static-page .container .text-arrow-img-container .img-container {
  position: absolute;
  top: -48px;
  right: 0;
}
.static-page .container .text-arrow-img-container .img-container img {
  object-fit: contain;
}
.static-page .container .delivery-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 16px 0;
}
.static-page .container .delivery-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 32px 0;
}
.static-page .container .delivery-container-wrapper__left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #ffe0bc;
  border: 1px solid #f7941e;
  border-radius: 16px;
  margin: 0 16px 0 0;
  width: 332px;
  height: 200px;
  padding: 32px;
}
.static-page .container .delivery-container-wrapper__left h2 {
  display: flex;
  flex-direction: column;
  width: 113px;
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 23px 0 0;
}
.static-page .container .delivery-container-wrapper__left img {
  object-fit: contain;
}
.static-page .container .delivery-container-wrapper__right {
  display: flex;
  flex-direction: column;
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  width: 564px;
  height: 200px;
}
.static-page .container .delivery-container-wrapper__right .delivery-slot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 8px;
  height: 68px;
  margin: 0 0 16px 0;
}
.static-page .container .delivery-container-wrapper__right .delivery-slot:last-of-type {
  margin: 0;
}
.static-page .container .delivery-container-wrapper__right .delivery-slot img {
  object-fit: contain;
  display: block;
  margin: 0 16px 0 0;
  mix-blend-mode: multiply;
}
.static-page .container .delivery-container-wrapper__right .delivery-slot p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.static-page .container .logo-box-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  margin: 0 0 16px 0;
}
.static-page .container .logo-box-container__slot {
  display: flex;
  flex-direction: row;
  margin: 0 24px;
}
.static-page .container .logo-box-container__slot img {
  object-fit: contain;
  mix-blend-mode: multiply;
}
.static-page .container .grey-light-blue-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f4f7;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  margin: 0 0 24px 0;
}
.static-page .container .grey-light-blue-container__left {
  margin: 0 40px 0 0;
}
.static-page .container .grey-light-blue-container__left .text-box {
  margin: 0 0 24px 0;
}
.static-page .container .grey-light-blue-container__left .text-box strong {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
}
.static-page .container .grey-light-blue-container__left .text-box p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
}
.static-page .container .grey-light-blue-container__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ccedf8;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
  width: 424px;
}
.static-page .container .grey-light-blue-container__right .text-box {
  padding: 12px 0;
  border-bottom: 1px solid #ffffff;
}
.static-page .container .grey-light-blue-container__right .text-box:last-of-type {
  border-bottom: 0;
}
.static-page .container .grey-light-blue-container__right .text-box strong {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
}

.static-page .container .text-container strong {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  margin: 0;
}
.static-page .container .text-container ul {
  padding-left: 24px;
  margin: 0 0 24px 0;
}
.static-page .container .text-container ul li {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  margin: 0;
}
.static-page .container .text-container ul li a {
  font-size: 16px;
  line-height: 25.6px;
  color: #cf4008;
  text-decoration: none;
}
.static-page .container .text-container ul li a:hover {
  text-decoration: underline;
}
.static-page .container .checkbox-accordion-container h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .checkbox-accordion-container h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .checkbox-accordion-container-wrapper .accordion-container .accordion__title {
  user-select: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.static-page .container .checkbox-accordion-container-wrapper .accordion-container .accordion__title img {
  margin: 0 16px 0 0;
  user-select: none;
}

.static-page .container .contact-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid #f7941e;
  background-color: #ffe0bc;
  margin: 0 0 32px 0;
  height: 192px;
  border-radius: 8px;
}
.static-page .container .contact-container__slot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  margin-right: 24px;
  width: 416px;
  height: 144px;
}
.static-page .container .contact-container__slot:nth-of-type(2n) {
  margin-right: 0;
}
.static-page .container .contact-container__slot--title {
  display: inline-flex;
  margin: 0 0 16px 0;
}
.static-page .container .contact-container__slot--title img {
  object-fit: contain;
  margin: 4px 8px 0 0;
}
.static-page .container .contact-container__slot--title h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
}
.static-page .container .contact-container__slot--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  height: 160px;
  box-sizing: border-box;
  background-color: #ffffff;
  text-align: center;
}
.static-page .container .contact-container__slot--content .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.static-page .container .contact-container__slot--content .text strong {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
  text-align: center;
}
.static-page .container .contact-container__slot--content .text strong a {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
  text-decoration: none;
}
.static-page .container .contact-container__slot--content .text strong a:hover {
  color: #cf4008;
}
.static-page .container .contact-container__slot--content .text .desc {
  position: relative;
  font-size: 14px;
  line-height: 12px;
  font-weight: 500;
  color: #637083;
  margin: 0;
}
.static-page .container .contact-container__slot--content .text .desc::before {
  position: relative;
  left: -4px;
  content: "●";
  color: #5eaa22;
  width: 6px;
  height: 6px;
  display: inline-block;
  font-size: 8px;
}
.static-page .container .contact-container__slot--content .text .mail {
  font-size: 18px;
  line-height: 22.4px;
  font-weight: 500;
  color: #cf4008;
  margin: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.static-page .container .contact-container__slot--content .text .mail:hover {
  text-decoration: underline;
}
.static-page .container .img-txt-btn-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
}
.static-page .container .img-txt-btn-container__slot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 24px;
  background-color: #f2f4f7;
  border-radius: 8px;
  margin: 0 24px 32px 0;
  width: 412px;
  min-height: 502px;
  height: auto;
}
.static-page .container .img-txt-btn-container__slot:nth-of-type(2n) {
  margin-right: 0;
}
.static-page .container .img-txt-btn-container__slot--img {
  margin: 0 0 24px 0;
}
.static-page .container .img-txt-btn-container__slot--img img {
  object-fit: contain;
  mix-blend-mode: multiply;
}
.static-page .container .img-txt-btn-container__slot--text {
  display: inline-flex;
  flex-direction: column;
  min-height: 62px;
}
.static-page .container .img-txt-btn-container__slot--text h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: #202b37;
  text-align: center;
}
.static-page .container .img-txt-btn-container__slot--btn {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.static-page .container .img-txt-btn-container__slot--btn .action-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cf4008;
  color: #ffffff;
  padding: 12px 20px;
  box-sizing: border-box;
  width: max-content;
  height: 44px;
  border-radius: 28px;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 500;
  cursor: pointer;
  margin: 0 12px 0 0;
}
.static-page .container .img-txt-btn-container__slot--btn .action-box:nth-of-type(2) {
  margin: 0;
}

.addart {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 32px;
}
.addart img {
  border-radius: 16px;
  margin-left: 16px;
}
.addart a {
  color: #f7941e;
}
.addart h1 {
  font-size: 30px;
  margin-bottom: 12px;
}
.addart h2 {
  font-size: 24px;
}
.addart ul {
  padding-left: 16px;
  margin: 16px 0;
}
.addart ul li {
  color: #202b37;
}
.addart ul li a {
  color: #f7941e;
}

.static-page .wide-container.worth-buying {
  padding: 64px 32px 0;
}
.static-page .wide-container.worth-buying .inner-slot-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.static-page .wide-container.worth-buying .inner-slot-btns .full-orange-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  width: max-content;
  height: 44px;
  background-color: #cf4008;
  padding: 12px 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.static-page .wide-container.worth-buying .inner-slot-btns .full-orange-btn span {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-align: center;
  color: #ffffff;
}
.static-page .wide-container.worth-buying .inner-slot-btns .arrow-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  height: 24px;
  background-color: rgba(255, 255, 255, 0);
  box-sizing: border-box;
}
.static-page .wide-container.worth-buying .inner-slot-btns .arrow-btn span {
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: left;
  color: #202b37;
}
.static-page .wide-container.worth-buying .inner-slot-btns .arrow-btn img {
  display: flex;
  width: 24px;
  height: 24px;
  margin: 0 0 0 4px;
}
.static-page .wide-container.worth-buying .arrow-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 64px 0;
}
.static-page .wide-container.worth-buying .arrow-nav-slot {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f2f4f7;
  width: 225px;
  height: 146px;
  margin: 0 34px 0 0;
  text-decoration: none;
  cursor: pointer;
}
.static-page .wide-container.worth-buying .arrow-nav-slot:nth-of-type(2) img {
  height: 100px;
  margin-left: 16px;
}
.static-page .wide-container.worth-buying .arrow-nav-slot::before {
  position: absolute;
  top: 0;
  left: -28px;
  content: "";
  display: flex;
  background: url("./../../images/static_pages/why_its_worth_buying_project/arrow-start-desktop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 146px;
  z-index: 1;
}
.static-page .wide-container.worth-buying .arrow-nav-slot::after {
  position: absolute;
  top: 0;
  right: -38px;
  content: "";
  display: flex;
  background: url("./../../images/static_pages/why_its_worth_buying_project/arrow-end-desktop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 38px;
  height: 146px;
  z-index: 1;
}
.static-page .wide-container.worth-buying .arrow-nav-slot__img {
  display: flex;
  margin: 0 8px 0 0;
  user-select: none;
}
.static-page .wide-container.worth-buying .arrow-nav-slot__img img {
  position: relative;
  width: auto;
  height: 110px;
  object-fit: contain;
  z-index: 1;
}
.static-page .wide-container.worth-buying .arrow-nav-slot__text {
  user-select: none;
}
.static-page .wide-container.worth-buying .arrow-nav-slot__text span {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  color: #202b37;
  margin: 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 64px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box#kupujesz-projekt .usp-img-content-box__content, .static-page .wide-container.worth-buying .usp-img-content-box#budujesz .usp-img-content-box__content {
  order: 1;
  left: 0;
  right: -80px;
  padding: 46px 188px 46px 46px;
  width: 980px;
}
.static-page .wide-container.worth-buying .usp-img-content-box#kupujesz-projekt .usp-img-content-box__content .big-number, .static-page .wide-container.worth-buying .usp-img-content-box#budujesz .usp-img-content-box__content .big-number {
  right: unset;
  left: 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box#kupujesz-projekt .usp-img-content-box__img, .static-page .wide-container.worth-buying .usp-img-content-box#budujesz .usp-img-content-box__img {
  order: 2;
  margin-left: -80px;
}
.static-page .wide-container.worth-buying .usp-img-content-box#adaptujesz-projekt .usp-img-content-box__content {
  min-height: 377px;
}
.static-page .wide-container.worth-buying .usp-img-content-box__img {
  position: relative;
  display: flex;
  z-index: 2;
}
.static-page .wide-container.worth-buying .usp-img-content-box__img img {
  width: 416px;
  height: auto;
  object-fit: contain;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content {
  position: relative;
  z-index: 1;
  top: 0;
  left: -80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 16px;
  padding: 46px 46px 46px 116px;
  box-sizing: border-box;
  background-color: #f2f4f7;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .big-number {
  position: absolute;
  top: 0;
  right: 80px;
  font-size: 463px;
  line-height: 417px;
  font-weight: 700;
  color: #ffffff;
  z-index: 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .title {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  line-height: 31.2px;
  text-align: left;
  color: #202b37;
  margin: 0 0 23px 0;
  z-index: 1;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .subtitle {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  color: #202b37;
  margin: 0 0 23px 0;
  z-index: 1;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 16px 0;
  z-index: 1;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__img {
  display: flex;
  margin: 0 16px 0 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__img img {
  object-fit: contain;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
  color: #202b37;
  margin: 0 0 10px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text p strong {
  font-weight: 700;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #637083;
  background-color: #344051;
  width: 100%;
  margin: 0 0 16px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__left .fb-boxes-slot__img {
  display: flex;
  margin: 0 10px 0 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__left .fb-boxes-slot__img img {
  object-fit: contain;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__left .fb-boxes-slot__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__left .fb-boxes-slot__content .upper-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #ffffff;
  margin: 0 0 4px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__left .fb-boxes-slot__content .down-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-align: left;
  color: #f7941e;
  margin: 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__right {
  display: flex;
  margin: 0 0 0 16px;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .fb-boxes-slot__right img {
  object-fit: contain;
  width: 12px;
  height: 8px;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .inner-green-check-list__li {
  position: relative;
  list-style: none;
  padding: 12px 0 12px 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
  color: #202b37;
  margin: 0 0 -12px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .inner-green-check-list__li:last-of-type {
  margin: 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .inner-green-check-list__li strong {
  font-weight: 700;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .img-text-slot__text .inner-green-check-list__li::before {
  position: absolute;
  top: 12px;
  left: 0;
  background-image: url("./../../images/static_pages/common/green_checked.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 8px 0;
  background-color: #ffffff;
  box-sizing: border-box;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.1215686275);
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot__text .green-check {
  display: flex;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin: 0 0 12px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot__text .white-box-subtitle {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  color: #202b37;
  margin: 0 0 12px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot__text .white-box-desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
  color: #202b37;
  margin: 0 0 12px 0;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot__large-img {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.static-page .wide-container.worth-buying .usp-img-content-box__content .white-checked-box-slot__large-img img {
  display: flex;
  margin: 0 0 0 12px;
  width: 160px;
  height: auto;
  object-fit: contain;
}
.static-page .wide-container.worth-buying .filters_result_banner {
  margin-left: -32px;
  margin-right: -32px;
}

.project-search {
  background-color: #202b37;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  color: #ffffff;
  margin-bottom: 24px;
  justify-content: space-between;
  width: 100%;
}
.project-search__title {
  font-size: 26px;
  font-weight: 700;
  width: 303px;
}
.project-search__input-wrapper {
  position: relative;
  width: 513px;
}
.project-search__label {
  color: #e4e7ec;
  font-size: 14px;
}
.project-search__icon {
  position: absolute;
  top: 46px;
  right: 8px;
}
.project-search__listing-container.active input {
  border-radius: 8px 8px 0 0;
}
.project-search__listing-container.active .project-search__listing-wrapper {
  display: flex;
}
.project-search__listing {
  display: flex;
  flex-direction: column;
  padding-right: 12px;
  list-style: none;
  overflow-y: scroll;
  width: 100%;
}
.project-search__listing p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #e4e7ec;
}
.project-search__listing a {
  display: flex;
  width: 100%;
  text-decoration: none;
}
.project-search__listing-wrapper {
  padding: 6px 8px 16px 12px;
  display: none;
  position: absolute;
  background-color: #414e62;
  height: 320px;
  width: 513px;
  z-index: 10;
  border-bottom: 1px solid #637083;
  border-right: 1px solid #637083;
  border-left: 1px solid #637083;
  border-radius: 0 0 8px 8px;
}
.project-search__listing-wrapper.noResults {
  justify-content: center;
  text-align: center;
  height: 88px;
  padding: 0;
}
.project-search__listing-wrapper.noResults .project-search__listing {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 100%;
  padding-right: 0;
}
.project-search__listing-wrapper.noResults p {
  width: 450px;
  margin: 0 auto;
  font-weight: 500;
}
.project-search input {
  width: 513px;
  height: 52px;
  background-color: #414e62;
  color: #e4e7ec;
  border: 1px solid #637083;
  border-radius: 8px;
  padding: 16px 36px 16px 12px;
  margin-top: 6px;
}
.project-search input:focus {
  outline: none;
}
.project-search input::placeholder {
  color: #e4e7ec;
}
.project-search ::-webkit-scrollbar {
  background: #e4e7ec;
  width: 8px;
  border-radius: 6px;
}
.project-search ::-webkit-scrollbar-track {
  border-radius: 6px;
}
.project-search ::-webkit-scrollbar-thumb {
  background: #202b37;
  border-radius: 3px;
}

.project-list-item {
  display: flex;
  padding: 8px 0;
  border-top: 1px solid #637083;
}
.project-list-item img {
  height: 50px;
  width: 78px;
  border-radius: 8px;
}
.project-list-item__content-wrapper {
  padding: 6.5px 12px;
  width: 100%;
}
.project-list-item__symbol {
  color: #ced2da;
  font-size: 10px;
}
.project-list-item__title {
  font-weight: 700;
  color: #f9fafb;
}

.static-page.static-project-addons .green-list-li {
  font-weight: 700;
}
.static-page.static-project-addons .static-project-addons-container {
  padding: 0;
  margin-bottom: 0;
}
.static-page.static-project-addons .static-project-addons-hero {
  position: relative;
  background: #f2f4f7;
  width: 100%;
  overflow: hidden;
}
.static-page.static-project-addons .static-project-addons-hero > .container {
  width: initial;
  margin: 0 auto;
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost {
  width: initial;
  margin: 0 auto;
  padding-left: 100px;
  position: initial;
  height: 250px;
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__text {
  display: flex;
  align-items: flex-end;
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__text h1 {
  font-size: 51px;
  max-width: 29%;
  line-height: 51px;
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__text p {
  position: relative;
  font-size: 18px;
  color: #344051;
  width: 40%;
}
@media (max-width: 1400px) {
  .static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__text p {
    max-width: 30%;
  }
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__text p:before {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #f7941e;
  content: "";
  position: absolute;
  top: -63px;
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__text p::after {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #f7941e;
  content: "";
  position: absolute;
  left: 50px;
  top: -70px;
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__img {
  background-color: transparent;
  width: initial;
  height: initial;
  max-width: 516px;
  max-height: initial;
  border-radius: 0;
  justify-content: flex-end;
  position: absolute;
  right: 0;
}
@media (max-width: 1400px) {
  .static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__img {
    right: -130px;
  }
}
.static-page.static-project-addons .static-project-addons-hero .invest-cost .static-page-hero-container__img img {
  width: 100%;
}

.house-building__hero {
  max-width: 1376px;
}
.house-building__hero h1 {
  font-size: 51px;
  font-weight: 700;
  max-width: 443px;
  line-height: 1;
}
.house-building__hero h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}
.house-building__hero__container {
  display: flex;
}
.house-building__hero__text-wrapper {
  display: flex;
  flex-direction: row;
}
.house-building__hero__text-wrapper p {
  position: relative;
  height: fit-content;
  align-self: end;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  z-index: 99;
}
.house-building__hero__text-wrapper p:before {
  width: 51px;
  height: 51px;
  border-radius: 100%;
  background: #e7d8cd;
  content: "";
  position: absolute;
  top: -70px;
  left: 5px;
}
.house-building__hero__text-wrapper p:after {
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #e7d8cd;
  content: "";
  position: absolute;
  top: -70px;
  left: 55px;
}
.house-building__hero__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.house-building__hero__image-wrapper {
  position: relative;
}
.house-building__hero__image-wrapper:before {
  width: 181px;
  height: 181px;
  border-radius: 100%;
  background: #e7d8cd;
  content: "";
  position: absolute;
  top: 30px;
  left: 60px;
  z-index: -1;
}
.house-building__perks {
  display: flex;
  max-width: 1379px;
  margin: 32px 0 12px;
  gap: 20px;
}
.house-building__perk {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 259.5px;
}
.house-building__perk__title {
  font-size: 16px;
  font-weight: 700;
  color: #414e62;
}
.house-building__perk p {
  font-size: 14px;
  font-weight: 400;
  color: #202b37;
}
.house-building__perk__image-wrapper {
  margin: 12px 0;
}
.house-building__perk__text-wrapper {
  margin: 12px 12px 20px 12px;
}
.house-building__subhero {
  max-width: 1376px;
  width: 100%;
  background-color: #f2f4f7;
  padding: 24px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
}
.house-building__subhero h2 {
  font-size: 20px;
}
.house-building__subhero .arrow-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 24px 66px;
}
.house-building__subhero .arrow-nav-slot {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 225px;
  height: 114px;
  margin: 0 80px 0 0;
  text-decoration: none;
  z-index: 2;
  color: #202b37;
  font-weight: 700;
  gap: 16px;
}
.house-building__subhero .arrow-nav-slot__text {
  z-index: 1;
  width: 155px;
}
.house-building__subhero .arrow-nav-slot__link a {
  color: #dd460a;
  font-size: 14px;
  display: flex;
  gap: 4px;
}
.house-building__subhero .arrow-nav-slot:after {
  position: absolute;
  top: 0;
  right: -55px;
  content: "";
  display: flex;
  background: url("./../../images/static_pages/house_building/house_building_arrow-end-desktop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  height: 114px;
  z-index: 1;
}
.house-building__subhero .arrow-nav-slot:before {
  position: absolute;
  top: 0;
  left: -65px;
  content: "";
  display: flex;
  background: url("./../../images/static_pages/house_building/house_building_arrow-start-desktop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 114px;
  z-index: 0;
}
.house-building__contact {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.house-building__contact h4 {
  width: 172px;
  text-align: center;
  font-weight: 700;
}
.house-building__contact__slot-wrapper {
  width: 100%;
}
.house-building__contact__slot {
  height: 160px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.house-building__contact__slot--text-wrapper {
  height: 51px;
  margin-bottom: 24px;
}
.house-building__contact__slot--title {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.house-building__contact__slot p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 108px;
  text-align: center;
  font-size: 10px;
  margin: 0 auto;
}
.house-building__contact__slot span {
  height: 6px;
  width: 6px;
  background-color: #5eaa22;
  border-radius: 25px;
  content: "";
  display: block;
}
.house-building__contact__slot button {
  font-family: "Satoshi";
  width: 172px;
  background-color: #cf4008;
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  color: #ffffff;
}
.house-building__technologies {
  max-width: 1376px;
  width: 100%;
}
.house-building__technologies__title {
  font-size: 20px;
  color: #202b37;
  font-weight: 700;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 12px;
}
.house-building__technologies__selection {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.12);
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  margin-bottom: 32px;
}
.house-building__technologies__selection--item {
  padding: 24px;
  font-weight: 700;
  color: #202b37;
  border-right: 1px solid #e4e7ec;
  cursor: pointer;
}
.house-building__technologies__selection--item:first-of-type {
  border-left: 1px solid #e4e7ec;
}
.house-building__technologies__selection--item:hover {
  background-color: #e4e7ec;
}
.house-building__technologies__item {
  margin-bottom: 40px;
}
.house-building__technologies__item--title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fbf1e5;
  font-size: 30px;
  font-weight: 700;
  color: #202b37;
  padding: 26px 16px;
  border-radius: 16px;
  margin-bottom: 24px;
}
.house-building__subtechnology {
  background-color: #f2f4f7;
  margin-bottom: 40px;
  padding: 32px;
  border-radius: 16px;
}
.house-building__subtechnology__main {
  display: flex;
  gap: 32px;
  margin-bottom: 96px;
}
.house-building__subtechnology__main--info-wrapper h2 {
  margin-bottom: 24px;
}
.house-building__subtechnology__main--image-wrapper img {
  border-radius: 8px;
}
.house-building__subtechnology__main--title {
  font-size: 26px;
  font-weight: 700;
}
.house-building__subtechnology__main button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #ced2da;
  background-color: transparent;
  padding: 10px 34px;
  border-radius: 48px;
  margin-top: 24px;
  color: #344051;
  font-weight: 700;
  width: 230px;
}
.house-building__subtechnology__main button span {
  font-family: "Satoshi";
}
.house-building__subtechnology__desc-item {
  display: flex;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}
.house-building__subtechnology__desc-item img {
  border-radius: 8px;
}
.house-building__subtechnology__desc-item:nth-of-type(even) .house-building__subtechnology__desc-item--image-wrapper {
  order: 1;
}
.house-building__subtechnology__desc-item:nth-of-type(even) .house-building__subtechnology__desc-item--text-wrapper {
  order: 0;
}
.house-building__subtechnology ul {
  border-bottom: 1px solid #e4e7ec;
  list-style: none;
}
.house-building__subtechnology li {
  position: relative;
  border-top: 1px solid #e4e7ec;
  padding: 12px 0 12px 35px;
}
.house-building__subtechnology li:before {
  position: absolute;
  top: 12px;
  left: -2px;
  background-image: url("./../../images/static_pages/common/green_checked.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
}
.house-building__subtechnology__desc-listing {
  display: none;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 5px;
}
.house-building__subtechnology__desc-listing.active {
  display: flex;
}
.house-building__subtechnology__desc-item--content-wrapper {
  display: flex;
  gap: 16px;
  flex-grow: 1;
}
.house-building__subtechnology__desc-item--text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 32px;
}
.house-building__subtechnology__desc-item--text-wrapper p:not(:last-of-type) {
  margin-bottom: 24px;
}
.house-building__subtechnology__desc-item--text-wrapper h3 {
  margin-bottom: 24px;
  font-size: 20px;
}
.house-building__subtechnology__desc-item--image-wrapper {
  display: flex;
  flex-shrink: 0;
}
.house-building__subtechnology__desc-item--image-wrapper img {
  border-radius: 8px;
}
.house-building__subtechnology__footer {
  display: flex;
  background-color: #ffffff;
  padding: 32px;
  gap: 10px;
  border-radius: 16px;
}
.house-building__subtechnology__contact {
  max-width: 492px;
}
.house-building__subtechnology__contact--title {
  font-size: 20px;
  font-weight: 700;
  max-width: 400px;
  line-height: 26px;
}
.house-building__subtechnology__contact--call-button {
  font-family: "Satoshi";
  width: 340px;
  padding: 11px 0;
  color: #ffffff;
  border-radius: 28px;
  background-color: #cf4008;
  border: none;
}
.house-building__subtechnology__contact--form-button {
  font-family: "Satoshi";
  width: 340px;
  padding: 8px;
  color: #202b37;
  font-size: 14px;
  border-radius: 28px;
  border: 1px solid #ced2da;
  margin-top: 12px;
  background-color: transparent;
  font-weight: 700;
}
.house-building__subtechnology__contact--phone-wrapper {
  display: flex;
  margin: 16px 0 12px 0;
  gap: 12px;
}
.house-building__subtechnology__contact--phone {
  font-weight: 700;
}
.house-building__subtechnology__contact--phone-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #344051;
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.house-building__subtechnology__contact--hours {
  font-size: 10px;
}
.house-building__subtechnology__realisation--time {
  display: flex;
  margin-bottom: 16px;
  font-weight: 700;
  gap: 8px;
}

.static-page {
  margin: -24px auto 40px 0;
}
.static-page-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 326px;
  background-color: #f7941e;
  overflow: hidden;
  margin: 0 0 64px 0;
}
.static-page-hero-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 912px;
  height: 326px;
  z-index: 0;
}
.static-page-hero-container::after {
  position: absolute;
  top: -32px;
  right: -100px;
  content: "";
  display: flex;
  background-color: #ffffff;
  border-radius: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 106px;
  height: 106px;
  z-index: 1;
}
.static-page-hero-container__text h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: #202b37;
  margin: 0 40px 12px 0;
}
.static-page-hero-container__text p {
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0 40px 12px 0;
}
.static-page-hero-container__img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 100%;
  width: 414px;
  height: 414px;
  min-width: 414px;
  min-height: 414px;
  overflow: hidden;
}
.static-page-hero-container__img img {
  width: 80%;
  height: auto;
  object-fit: contain;
  overflow: hidden;
}
.static-page-hero-container__img img.big-hero-img {
  width: 90%;
}
.static-page-hero-container__img img.near-full-hero-img {
  width: 95%;
}
.static-page .wide-container {
  width: 100%;
  max-width: 1376px;
}
.static-page .wide-container > h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  color: #202b37;
  margin: 0 0 12px 0;
}
.static-page .wide-container > h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 31.2px;
  text-align: center;
  color: #202b37;
  margin: 0 0 64px 0;
}
.static-page .container {
  width: 912px;
  margin: 0 0 64px 0;
}
.static-page .container > div + h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .accordion-container .accordion__item {
  padding-bottom: 0;
}
.static-page .container .accordion-container .accordion__item:first-of-type {
  border-top: 1px solid #e4e7ec;
}
.static-page .container .accordion-container .accordion__item:last-of-type {
  margin: 0 0 24px 0;
}
.static-page .container .accordion-container .accordion__item .accordion__header h2 {
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 700;
  margin: 0 8px 0 0;
}
.static-page .container .accordion-container .accordion__item .accordion__body p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 16px 0;
}
.static-page .container .accordion-container .accordion__item .accordion__body p a {
  color: #cc3c04;
  text-decoration: underline;
}
.static-page .container .accordion-container .accordion__item .accordion__body p a:hover {
  text-decoration: none;
}
.static-page .container .accordion-container .accordion__item .accordion__body ul,
.static-page .container .accordion-container .accordion__item .accordion__body ol {
  padding-left: 24px;
}
.static-page .container .accordion-container .accordion__item .accordion__body ul li,
.static-page .container .accordion-container .accordion__item .accordion__body ol li {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0;
}
.static-page .container .accordion-container .accordion__item .accordion__body .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 700;
  color: #202b37;
  padding: 8px 16px;
  box-sizing: border-box;
  width: max-content;
  height: 36px;
  background-color: #ffffff;
  border-radius: 48px;
  border: 1px solid #ced2da;
  margin: 16px auto 16px 0;
}
.static-page .container .accordion-container .accordion__item .accordion__body .download-files {
  margin: 0 0 24px 0;
}
.static-page .container .static-page-banner {
  margin: 32px 0 24px 0;
}
.static-page .container .static-page-banner img {
  width: 100%;
  height: auto;
}
.static-page .container .contact-boxes {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.static-page .container .contact-boxes__slot {
  display: flex;
  flex-direction: column;
  width: 416px;
  margin-right: 16px;
  padding: 24px;
  box-sizing: border-box;
  background-color: #f2f4f7;
  border-radius: 8px;
}
.static-page .container .contact-boxes__slot:nth-of-type(2n) {
  margin-right: 0;
}
.static-page .container .contact-boxes__slot--title {
  display: inline-flex;
  margin: 0 0 19px 0;
}
.static-page .container .contact-boxes__slot--title img {
  object-fit: contain;
  margin: 0 8px 0 0;
}
.static-page .container .contact-boxes__slot--title p {
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
}
.static-page .container .contact-boxes__slot--content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  height: 160px;
  padding: 24px 64px;
  box-sizing: border-box;
  background-color: #ffffff;
  text-align: center;
}
.static-page .container .contact-boxes__slot--content .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.static-page .container .contact-boxes__slot--content .text strong {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
  text-align: center;
}
.static-page .container .contact-boxes__slot--content .text strong a {
  font-size: 18px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
  text-decoration: none;
}
.static-page .container .contact-boxes__slot--content .text strong a:hover {
  color: #cf4008;
}
.static-page .container .contact-boxes__slot--content .text .desc {
  position: relative;
  font-size: 14px;
  line-height: 12px;
  font-weight: 500;
  color: #637083;
  margin: 0;
}
.static-page .container .contact-boxes__slot--content .text .desc::before {
  position: relative;
  left: -4px;
  content: "●";
  color: #5eaa22;
  width: 6px;
  height: 6px;
  display: inline-block;
  font-size: 8px;
}
.static-page .container .contact-boxes__slot--content .text .online {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5eaa22;
  color: #ffffff;
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 500;
  padding: 2px 8px;
  width: max-content;
  height: 18px;
  border-radius: 35px;
  box-sizing: border-box;
  margin: 8px 0 16px 0;
  text-transform: uppercase;
}
.static-page .container .contact-boxes__slot--content .action-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cf4008;
  color: #ffffff;
  padding: 12px 20px;
  box-sizing: border-box;
  width: max-content;
  height: 44px;
  border-radius: 35px;
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 500;
  cursor: pointer;
}
.static-page .container .img-text-info-boxes > h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .img-text-info-boxes-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 24px 0;
}
.static-page .container .img-text-info-boxes-wrapper__slot {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 416px;
  height: auto;
  margin: 0 16px 16px 0;
  border-radius: 8px;
  background-color: #f2f4f7;
}
.static-page .container .img-text-info-boxes-wrapper__slot:nth-of-type(2n) {
  margin: 0 0 16px 0;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-img img {
  object-fit: contain;
  mix-blend-mode: multiply;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-text {
  padding: 8px 16px 8px 8px;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-text > h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #202b37;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-text > p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 8px 0;
  letter-spacing: 0.02em;
  color: #202b37;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-text .orange-price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: max-content;
  height: auto;
  border-radius: 8px;
  padding: 0 8px;
  background-color: #cf4008;
  margin: 0 0 8px 0;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-text .orange-price p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.static-page .container .img-text-info-boxes-wrapper__slot .box-text .link-with-arrow {
  position: relative;
  cursor: pointer;
}
.static-page .container .long-info-box {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 32px 32px 8px 32px;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0 0 24px 0;
}
.static-page .container .long-info-box.light-blue {
  background-color: #ccedf8;
}
.static-page .container .long-info-box.light-grey {
  background-color: #f2f4f7;
  color: #637083;
}
.static-page .container .long-info-box > strong {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 700;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .long-info-box > p {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  color: #202b37;
  margin: 0 0 24px 0;
}
.static-page .container .long-info-box > h2 {
  font-size: 26px;
  line-height: 31.2px;
  font-weight: 700;
  color: #202b37;
  margin: 0;
}
.static-page .container .long-info-box > .link-with-arrow {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #202b37;
  flex-direction: row;
  margin: 12px 0 24px 0;
  cursor: pointer;
}
.static-page .container .long-info-box > .link-with-arrow::after {
  background-image: url("./../../images/documentation_section/doc-arrow-right.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
}

.footer {
  margin-top: 64px;
}
.footer .footer-contact a {
  font-size: 14px !important;
  font-weight: 700 !important;
}
.footer .footer-contact span {
  color: #637083;
  font-size: 10px;
  font-weight: 500;
}
.footer .copyright {
  margin-bottom: 24px;
}
.footer .copyright a {
  color: #202b37;
  font-size: 12px;
  font-weight: 500;
}
.footer .payments-delivery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  padding-top: 40px;
}
.footer .payments-delivery__payments {
  position: relative;
  background-image: url("./../../images/footer/payments-przelewy.svg") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 40px;
  width: 250px;
  display: inline-block;
  margin-right: 8px;
  background-position-x: -11px;
}
.footer .payments-delivery__delivery {
  position: relative;
  background-image: url("./../../images/footer/delivery2x.jpg") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 40px;
  width: 174px;
  display: inline-block;
  margin-right: 8px;
}
.footer__items {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ced2da;
  padding-bottom: 24px;
  margin-top: 40px;
}
.footer__media .media-wrapper__left {
  background: none;
}
.footer__media .media-wrapper-links-footer__title {
  color: #202b37 !important;
}
.footer__media .media-wrapper__left .media-wrapper-links__title {
  color: #202b37;
  font-size: 16px;
}
.footer__media .span.media-wrapper-links-footer__description {
  color: #414e62 !important;
  font-weight: 500 !important;
}
.footer__media .media-wrapper-links-footer__item {
  background: #f2f4f7 !important;
  border: 1px solid #e4e7ec !important;
}
.footer__media .media-wrapper-links-footer__link {
  align-items: center;
  display: flex;
  margin-left: auto;
}
.footer__media .media-wrapper__left .media-wrapper-links {
  background: none;
}
.footer__media .media-wrapper__left {
  padding-top: 0 !important;
}
.footer__media .media-wrapper-links {
  padding: 0 !important;
}
.footer__media .media-wrapper__left .media-wrapper-links__item {
  background: #e4e7ec;
}
.footer__media .media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__item {
  background: #e4e7ec;
}
.footer__media .media-wrapper__left .media-wrapper-links__item {
  background: #f2f4f7 !important;
  border: 1px solid #e4e7ec !important;
}
.footer__media .media-wrapper__left .media-wrapper-links .media-wrapper-links-footer__item {
  border: 1px solid #e4e7ec;
}
.footer__media .media-wrapper-links-footer__item.forum .media-wrapper-links-footer__icon {
  position: relative;
  background-image: url("./../../images/footer/footer-murator-bg.svg") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 32px !important;
  width: 32px !important;
  min-width: 32px;
  display: inline-block;
  margin-right: 8px;
}
.footer__media .media-wrapper-links-footer__item.facebook .media-wrapper-links-footer__icon {
  position: relative;
  background-image: url("./../../images/footer/footer-facebook-bg.svg") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  height: 32px !important;
  width: 32px !important;
  min-width: 32px;
  display: inline-block;
  margin-right: 8px;
}
.footer__media .media-wrapper-links__item {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__media .media-wrapper-links__item > a {
  display: flex;
  height: 40px;
  width: 40px;
}
.footer__media .media-wrapper-links__item.facebook span {
  background-image: url("./../../images/footer/footer-facebook.svg") !important;
  height: 16px !important;
  width: 16px !important;
}
.footer__media .media-wrapper-links__item.insta span {
  background-image: url("./../../images/footer/footer-instagram.svg") !important;
  height: 16px !important;
  width: 16px !important;
}
.footer__media .media-wrapper-links__item.pinterest span {
  background-image: url("./../../images/footer/footer-pinterest.svg") !important;
  height: 16px !important;
  width: 16px !important;
}
.footer__media .media-wrapper-links__item.youtube span {
  background-image: url("./../../images/footer/footer-youtube.svg") !important;
  height: 16px !important;
  width: 16px !important;
}
.footer__links {
  display: flex;
  gap: 64px;
}
.footer__links .column > h2 {
  font-size: #202b37;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 700;
}
.footer__links .column ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.footer__links .column ul li {
  margin-bottom: 20px;
  color: #202b37;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.footer__links .column ul a {
  color: #202b37;
  font-size: 12px;
  font-weight: 500;
}

.contact-banner {
  display: flex;
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  height: 300px;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  margin-bottom: 40px;
}
.contact-banner__image {
  background-image: url("./../../images/cart/Empty-basket-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 600px;
  height: 300px;
  background-position-x: -80px;
  border-radius: 16px 0 0 16px;
}
.contact-banner__content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.contact-banner__content span {
  font-size: 51px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 24px;
  position: relative;
  padding-top: 55px;
}
.contact-banner__content span:before {
  content: "";
  background-image: url("./../../images/cart/empty-cart-circles.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 62px;
  height: 51px;
  position: absolute;
  top: -16%;
}
.contact-banner__content a {
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 1366px) {
  .contact-banner__content span {
    font-size: 38px;
  }
}
.multifamily-houses-banner {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #e4e7ec;
  height: 143px;
  background: #ffffff;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
}
.multifamily-houses-banner__image {
  background-image: url("./../../images/banners/multifamily_houses_banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 50%;
  height: 143px;
  background-position-x: -40px;
  border-radius: 16px 0 0 16px;
}
.multifamily-houses-banner__content {
  flex: 1;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: center;
}
.multifamily-houses-banner__content span {
  font-size: 26px;
  font-weight: 700;
  line-height: 31.2px;
  margin-right: 40px;
}
.multifamily-houses-banner__content span:before {
  position: absolute;
  content: "";
  background-image: url("./../../images/cart/empty-cart-circles.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100px;
  height: 80px;
  bottom: -16px;
  left: -16px;
}
.multifamily-houses-banner__content a {
  font-size: 16px;
  font-weight: 700;
  margin-right: 12px;
}
.multifamily-houses-banner__content a:hover {
  text-decoration: underline;
}

.proccess {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(20, 28, 36, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 111;
}
.proccess .loader-wrapper {
  position: relative;
}
.proccess .loader-wrapper .basket-icon {
  height: 57px;
  width: 51px;
  position: relative;
  background-image: url("./../../images/home_page/basket-white2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.proccess__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.proccess__content > span {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}
.proccess__title {
  font-size: 36px;
  margin-bottom: 12px;
  color: #ffffff;
}

.article-page .row {
  padding: 0 32px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}
.article-page .row .col.col-8 {
  max-width: 1024px;
  min-width: 1024px;
}
@media (max-width: 1300px) {
  .article-page .row .col.col-8 {
    max-width: 770px;
    min-width: 770px;
  }
}
.article-page .row .col.col-4 {
  flex: 1;
  position: relative;
}
.article-page .row .col.col-4 .aside {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-page .row .col.col-4 .article-recommended {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}
.article-page .row .col.col-4 .article-recommended__date {
  margin-bottom: 0;
}
.article-page .row .col.col-4 .article-recommended__date span {
  color: #637083;
  font-size: 12px;
}
.article-page .row .col.col-4 .article-recommended .article-recommended-item {
  background: #f2f4f7;
  padding: 16px 8px 16px 16px;
  background: #f2f4f7;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.1215686275);
  border: 1px solid #ced2da;
  border-radius: 16px;
}
.article-page .row .col.col-4 .article-recommended .article-recommended-item__title a {
  font-size: 16px;
  font-weight: 700;
  color: #202b37;
}
.article-page .row .col.col-4 .article-recommended .article-recommended-item__title a span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 25px;
}
.article-page .row .col.col-4 .article-recommended__headline span {
  font-size: 20px;
  font-weight: 700;
}
.article-page .row .col.col-4 .article-recommended__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-page .two_columns_article__container {
  display: flex;
  gap: 16px;
}
.article-page .block_list__container {
  max-width: 664px;
  min-width: 664px;
}
@media (max-width: 1300px) {
  .article-page .block_list__container {
    max-width: 400px;
    min-width: 400px;
  }
}
.article-page .related_articles__container {
  flex: 1;
}

.article {
  margin-bottom: 60px;
}
.article .art-sp {
  font-size: 14px;
  text-transform: lowercase;
}
.article .art-sp::before {
  content: "•";
  margin: 0 8px 0 6px;
}
.article .recommendedArticle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f2f4f7;
  border-radius: 16px;
  margin-bottom: 36px;
  padding: 24px;
}
.article .recommendedArticle__title {
  font-size: 20px;
  font-weight: 700;
}
.article .recommendedArticle__title p {
  margin-bottom: 0 !important;
  white-space: nowrap;
  padding-top: 4px;
}
.article .recommendedArticle__link a {
  font-size: 20px;
  font-weight: 700;
  color: #dd460a;
}
.article .related_articles__elements {
  display: flex;
  flex-direction: column;
}
.article .related_articles__elements .related_articles__header {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}
.article .related_articles__elements a {
  margin-bottom: 12px;
  display: flex;
  color: #202b37;
  font-weight: 700;
  font-size: 16px;
  padding: 8px;
  border-radius: 16px;
  background: #f2f4f7;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.1215686275);
  border: 1px solid #ced2da;
}
.article .related_articles__elements a .related_article__image {
  margin-bottom: 16px;
}
.article .related_articles__elements a .related_article__image img {
  min-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  height: 212px;
}
.article .related_articles__elements a .related_article__title {
  font-weight: 700;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 16px;
  position: relative;
}
.article .related_articles__elements a .related_article__title p {
  font-size: 16px;
}
.article .related_articles__elements a .related_article__title::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #f7941e;
  left: 0;
  border-radius: 12px;
}
.article .single-photo {
  position: relative;
  margin-bottom: 36px;
  max-width: 664px;
}
.article .single-photo img {
  border-radius: 20px;
  max-height: 493px;
  min-height: 493px;
  object-fit: cover;
  width: 100%;
  max-width: 664px;
}
.article .single-photo .element__info {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #141c24;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.article .single-photo .element__info .media__info {
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 0;
}
.article .single-photo figure figcaption {
  display: none;
  position: absolute;
  bottom: 14px;
  right: 12px;
  color: #202b37;
  font-size: 10px;
  line-height: 16px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.6588235294);
  padding: 3px 32px 3px 8px;
  border-radius: 8px;
  z-index: 1;
  font-weight: 500;
  flex-direction: column;
}
.article .single-photo figure figcaption span {
  margin-left: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 10px;
}
.article .single-photo.hero.with-frames {
  position: relative;
  max-width: 100%;
}
.article .single-photo.hero.with-frames img {
  border-radius: 20px;
  max-height: 512px;
  min-height: 512px;
  object-fit: cover;
  width: 100%;
  max-width: initial;
}
.article .title {
  margin-bottom: 16px;
}
.article .title h1 {
  font-size: 30px;
  font-weight: 700;
}
.article .block_list__container blockquote {
  padding: 24px 32px 24px 32px;
  margin-bottom: 36px;
  background: #f2f4f7;
  border-radius: 16px;
  max-width: 680px;
}
.article .block_list__container blockquote .blockquote__text {
  padding-left: 36px;
  position: relative;
}
.article .block_list__container blockquote .blockquote__text::before {
  position: relative;
  background-image: url("./../../images/article/quot.svg") !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.article .block_list__container blockquote .blockquote__text p {
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
  word-break: break-word;
}
.article .block_list__container a {
  color: #cf4008;
}
.article .block_list__container h2 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 12px;
}
.article .block_list__container p {
  font-size: 16px;
  margin-bottom: 24px;
}
.article .block_list__container p a {
  color: #f7941e;
}
.article .block_list__container ul {
  list-style-type: disc;
  padding-left: 16px;
  margin-bottom: 24px;
}
.article .block_list__container ul a {
  color: #cf4008;
}
.article .block_list__container ul a:hover {
  text-decoration: underline;
}
.article .block_list__container ol {
  padding-left: 16px;
  margin-bottom: 24px;
}
.article .block_list__container ol a {
  color: #cf4008;
}
.article .block_list__container ol a:hover {
  text-decoration: underline;
}
.article .block_list__container p.toc {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.article .block_list__container .toc + ul,
.article .block_list__container .toc + ol {
  list-style-type: none;
  margin-bottom: 36px;
}
.article .block_list__container .toc + ul li,
.article .block_list__container .toc + ol li {
  padding: 4px 0;
  border-top: 1px solid #e4e7ec;
}
.article .block_list__container .toc + ul li a,
.article .block_list__container .toc + ol li a {
  font-size: 16px;
  font-weight: 700;
  color: #cf4008;
}
.article .lead {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 64px;
}
.article .neck {
  margin-bottom: 32px;
}
.article .neck .autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article .neck #timezone {
  font-size: 14px;
  font-weight: 700;
  padding-left: 12px;
  border-left: 1px solid #97a1af;
}
.article .neck .article_authors_with_thumbnail,
.article .neck .article_authors_without_thumbnail {
  display: flex;
  width: max-content;
  gap: 12px;
  align-items: center;
}
.article .neck .article__author__croppimg {
  max-height: 32px;
}
.article .neck .article__author__croppimg img {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 100%;
}
.article .neck .article_author {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 12px;
  align-items: center;
}
.article .neck .article_authors_without_thumbnail span {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  gap: 12px;
  align-items: center;
}
.article .neck .article_authors_without_thumbnail span::before {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("./../../images/article/author-mock.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
}
.article .product-presentation {
  border-bottom: 1px solid #e4e7ec;
  margin-bottom: 32px;
}
.article .product-presentation img {
  border-radius: 16px;
}
.article .product-presentation__video {
  margin-bottom: 16px;
}
.article .product-presentation__video iframe {
  width: 100%;
  height: 382px;
}
.article .product-presentation__label {
  font-size: 14px;
  text-align: right;
  border-bottom: 1px solid #e4e7ec;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.article .product-presentation__title {
  grid-area: title;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.article .product-presentation__image--small {
  display: flex;
  grid-area: image;
  height: auto;
  margin: auto;
}
.article .product-presentation__image--small > img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
.article .product-presentation__image--big {
  margin-bottom: 16px;
}
.article .product-presentation__image--big img {
  max-width: 100%;
}
.article .product-presentation__content {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "image title" "image text";
  column-gap: 24px;
  align-items: start;
  margin-bottom: 16px;
}
.article .product-presentation__content:not(:has(.product-presentation__image--small)) {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: "title" "text";
}
.article .product-presentation__text {
  grid-area: text;
  text-align: left;
}
.article .product-presentation__text p {
  font-size: 16px;
  margin-bottom: 12px;
  text-align: left;
}
.article .product-presentation__btn-wrapper {
  width: fit-content;
  height: auto;
  margin: 0 auto 16px;
}
.article .product-presentation__btn-wrapper a {
  display: block;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  background-color: #000;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: initial;
  text-align: center;
}
@media (max-width: 1300px) {
  .article .product-presentation iframe {
    height: 202px;
  }
  .article .product-presentation__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "title" "image" "text";
    justify-items: center;
    text-align: center;
    margin: 0;
  }
  .article .product-presentation__image--small {
    margin: 0 auto 16px;
  }
  .article .product-presentation__text {
    width: 100%;
  }
  .article .product-presentation__text p {
    font-size: 16px;
  }
  .article .product-presentation__btn-wrapper {
    width: 100%;
  }
  .article .product-presentation__btn-wrapper a {
    width: 100%;
  }
}

.builder-guide__title {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column-reverse;
}
.builder-guide__title > span {
  color: #637083;
  font-weight: 700;
  font-size: 18px;
}
.builder-guide__title h1 {
  font-size: 30px;
  font-weight: 700;
}
.builder-guide__content {
  display: flex;
  gap: 16px;
}
.builder-guide__aside {
  min-width: 332px;
}
.builder-guide__listings {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: calc(100% - 348px);
}
.builder-guide__listings .pagination_bottom {
  margin-bottom: 48px;
}

.category-aside {
  max-width: 332px;
  border: 1px solid #e4e7ec;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.1215686275);
  border-radius: 16px;
  margin-bottom: 24px;
}
.category-aside__item {
  padding: 12px 24px;
  background: #f2f4f7;
}
.category-aside__item:not(:last-child) {
  border-bottom: 1px solid #e4e7ec;
}
.category-aside__item:first-child {
  border-radius: 16px 16px 0 0;
}
.category-aside__item:last-child {
  border-radius: 0 0 16px 16px;
}
.category-aside__item.active {
  background: #ffffff;
}
.category-aside__item.dark {
  background: #ced2da;
}
.category-aside__dropdown {
  margin-top: 32px;
  margin-bottom: 24px;
}
.category-aside__dropdown ul {
  list-style-type: none;
}
.category-aside__dropdown ul li {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #e4e7ec;
}
.category-aside__dropdown ul li.active {
  font-weight: 700;
}
.category-aside__dropdown ul li.active a {
  font-weight: 700;
}
.category-aside__dropdown ul li a {
  color: #202b37;
}
.category-aside__dropdown ul li:first-child {
  border-top: 1px solid #e4e7ec;
}
.category-aside__label {
  font-size: 12px;
  font-weight: 500;
  color: #202b37;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.category-aside__title {
  font-size: 16px;
  font-weight: 700;
  color: #202b37;
}

.category-slider {
  height: 514px;
  margin-bottom: 48px;
  position: relative;
  max-width: 100%;
}
.category-slider__arrow-left {
  background-image: url(./../../images/category/Caruosel-left.svg);
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  bottom: 24px;
  right: 82px;
  z-index: 11;
  cursor: pointer;
}
.category-slider__arrow-right {
  background-image: url(./../../images/category/Caruosel-right.svg);
  background-size: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 11;
  cursor: pointer;
}
.category-slider .category-slider-item {
  position: relative;
}
.category-slider .category-slider-item:before {
  background: linear-gradient(180deg, rgba(20, 28, 36, 0) 0%, #141c24 64.06%);
  content: "";
  position: absolute;
  pointer-events: none;
  height: 50%;
  width: 100%;
  bottom: 6px;
  border-radius: 0 0 16px 16px;
}
.category-slider .category-slider-item img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.category-slider .category-slider-item__date {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding-right: 12px;
  border-right: 2px solid white;
}
.category-slider .category-slider-item__label {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #ffffff;
  border-radius: 0px 15px 0px 18px;
  padding: 8px;
  font-size: 8px;
  font-family: "Satoshi";
  color: #202b37;
}
.category-slider .category-slider-item__author {
  padding-left: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #dd460a;
}
.category-slider .category-slider-item__title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.category-slider .category-slider-item__info {
  position: absolute;
  bottom: 32px;
  left: 16px;
  max-width: 800px;
}

.category-swiper-boxes {
  margin-bottom: 48px;
  max-width: 100%;
  min-width: 100%;
}
.category-swiper-boxes .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.category-swiper-boxes .section-header__title {
  border-bottom: 0;
}
.category-swiper-boxes .category-box-item {
  padding: 8px;
  background: #202b37;
  border-radius: 16px;
  min-height: 302px;
}
.category-swiper-boxes .category-box-item__image {
  height: 212px;
  margin-bottom: 8px;
}
.category-swiper-boxes .category-box-item img {
  max-width: 100%;
  object-fit: cover;
  height: 212px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.category-swiper-boxes .category-box-item__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  padding-left: 24px;
}
.category-swiper-boxes .category-box-item__title:before {
  position: absolute;
  content: "";
  height: 45px;
  width: 12px;
  background: #f7941e;
  left: 0;
  top: 0;
  border-radius: 4px;
}

.category-listing-multiple {
  margin-bottom: 16px;
}
.category-listing-multiple__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.category-listing-multiple__items > a {
  flex: 1 1 calc(33% - 16px);
  color: #202b37;
  max-width: calc(33% - 8px);
}
.category-listing-multiple__items > a:nth-child(1) {
  flex: 1 1 calc(66% - 16px);
  position: relative;
  max-width: 66%;
}
.category-listing-multiple__items > a:nth-child(1) .category-listing-item__content {
  position: absolute;
  bottom: 32px;
  left: 16px;
  padding-right: 32px;
}
.category-listing-multiple__items > a:nth-child(1) .category-listing-item__title {
  color: #ffffff;
  font-size: 20px;
}
.category-listing-multiple__items > a:nth-child(1):before {
  content: "";
  background: linear-gradient(180deg, rgba(20, 28, 36, 0) 0%, #141c24 64.06%);
  height: 50%;
  width: calc(100% - 16px);
  position: absolute;
  pointer-events: none;
  right: 8px;
  left: 8px;
  border-radius: 16px;
  bottom: 8px;
}
.category-listing-multiple__items > a:nth-child(1) .category-listing-item__image {
  height: 332px;
}
.category-listing-multiple__items > a:nth-child(1) .category-listing-item img {
  height: 332px;
}

.category-listing {
  margin-bottom: 48px;
}
.category-listing .category-listing-header {
  display: flex;
  justify-content: space-between;
}
.category-listing .category-listing-header__left > a {
  margin-bottom: 16px;
}
.category-listing .category-listing-header__title {
  font-size: 26px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.category-listing .category-listing-header__title > span {
  color: #637083;
}
.category-listing .category-listing-header__links {
  padding-top: 8px;
}
.category-listing .category-listing-header__links ul {
  list-style-type: none;
}
.category-listing .category-listing-header__links ul li {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ced2da;
}
.category-listing .category-listing-header__links ul li a {
  font-weight: 500;
  font-size: 14px;
  color: #202b37;
}
.category-listing__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.category-listing__items > a {
  flex: 1 1 calc(33% - 16px);
  color: #202b37;
  max-width: calc(33% - 8px);
}
.category-listing__items > a:nth-child(1) {
  flex: 1 1 calc(66% - 16px);
  position: relative;
  max-width: initial;
}
.category-listing__items > a:nth-child(1) .category-listing-item__content {
  position: absolute;
  bottom: 32px;
  left: 16px;
  padding-right: 32px;
}
.category-listing__items > a:nth-child(1) .category-listing-item__title {
  color: #ffffff;
  font-size: 20px;
}
.category-listing__items > a:nth-child(1):before {
  content: "";
  background: linear-gradient(180deg, rgba(20, 28, 36, 0) 0%, #141c24 64.06%);
  height: 50%;
  width: calc(100% - 16px);
  position: absolute;
  pointer-events: none;
  right: 8px;
  left: 8px;
  border-radius: 16px;
  bottom: 8px;
}
.category-listing__items > a:nth-child(1) .category-listing-item__image {
  height: 332px;
}
.category-listing__items > a:nth-child(1) .category-listing-item img {
  height: 332px;
}

.category-listing-item {
  position: relative;
  padding: 8px;
  border-radius: 16px;
  background: #f2f4f7;
  border: 1px solid #ced2da;
  height: 100%;
}
.category-listing-item__label {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #ffffff;
  border-radius: 0px 7px 0px 7px;
  padding: 4px 8px;
  font-size: 8px;
  font-family: "Satoshi";
  color: #202b37;
}
.category-listing-item__image {
  height: 212px;
  margin-bottom: 8px;
}
.category-listing-item__image img {
  max-width: 100%;
  min-width: 100%;
  height: 212px;
  object-fit: cover;
  border-radius: 8px;
}
.category-listing-item__title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  padding-left: 24px;
  min-height: 45px;
}
.category-listing-item__title:before {
  position: absolute;
  content: "";
  height: 45px;
  width: 12px;
  background: #f7941e;
  left: 0;
  top: 0;
  border-radius: 4px;
}

.fast-search {
  background: #f9fafb;
  border: 1px solid #ced2da;
  box-shadow: 0px 2px 6px 0px rgba(28, 39, 49, 0.1215686275);
  margin-bottom: 28px;
  margin-top: 12px;
  border-radius: 16px;
}
.fast-search__show-all-projects {
  font-size: 10px;
  color: #cf4008;
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.fast-search__show-projects {
  background: #cf4008;
  color: #ffffff;
  width: 231px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  height: max-content;
  padding: 10px 0;
  border: none;
}
.fast-search__show-projects > span {
  color: #cf4008;
  background: #ffffff;
  border-radius: 150px;
  font-weight: 700;
  padding: 3px 8px;
}
.fast-search form {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 78px;
}
.fast-search form > a {
  color: #cf4008;
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.fast-search form .fast-search-item.more {
  position: relative;
  display: flex;
  cursor: pointer;
}
.fast-search form .fast-search-item.more .fast-search-item__icon {
  background-image: url("./../../images/fast_search/Plus-icon.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 16px;
}
.fast-search form .fast-search-item.more .fast-search-item__title {
  font-size: 14px;
  font-weight: 500;
  color: #414e62;
}
.fast-search form .filters__container_box {
  position: relative;
  display: flex;
  flex: 1 1 calc(14% - 12px);
  flex-direction: row;
  width: initial;
  align-items: center;
  cursor: pointer;
  padding: 16px;
  height: 100%;
}
.fast-search form .filters__container_box .filters__container_box__content > div:nth-child(3) {
  margin-bottom: 16px;
}
.fast-search form .filters__container_box:after {
  position: absolute;
  height: 44px;
  right: 0;
  background: #97a1af;
  width: 1px;
  content: "";
}
.fast-search form .filters__container_box__chosen {
  font-weight: 700;
  font-size: 14px;
  color: #344051;
  white-space: nowrap;
}
.fast-search form .filters__container_box__headline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  margin-bottom: 0;
}
.fast-search form .filters__container_box__headline.chosen > p {
  font-size: 10px;
  color: #637083;
  font-weight: 500;
  text-align: left;
}
.fast-search form .filters__container_box__headline::after {
  display: none;
}
.fast-search form .filters__container_box__headline:before {
  background-image: url("./../../images/fast_search/Chosen-filter.svg");
  background-size: 11;
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 16px;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.fast-search form .filters__container_box__headline .tooltip {
  display: none;
}
.fast-search form .filters__container_box__headline > p {
  color: #414e62;
  font-size: 14px;
  font-weight: 500;
}
.fast-search form .filters__container_box.rooms .filters__container_box__content {
  min-width: 465px !important;
}
.fast-search form .filters__container_box.usable_apartment_area .filters__container_box__content {
  min-width: 360px !important;
}
.fast-search form .filters__container_box.usable_apartment_area .filters__container_box__content, .fast-search form .filters__container_box.floors .filters__container_box__content {
  background: #ffffff !important;
}
.fast-search form .filters__container_box.usable_apartment_area .filters__container_box__content > div, .fast-search form .filters__container_box.floors .filters__container_box__content > div {
  background: #f2f4f7 !important;
  margin-bottom: 0;
  padding: 16px;
}
.fast-search form .filters__container_box.usable_apartment_area .filters__container_box__content > div:first-child, .fast-search form .filters__container_box.floors .filters__container_box__content > div:first-child {
  border-radius: 16px 16px 0 0;
}
.fast-search form .filters__container_box.usable_apartment_area .filters__container_box__content > div:last-child, .fast-search form .filters__container_box.floors .filters__container_box__content > div:last-child {
  border-radius: 0 0 16px 16px;
}
.fast-search form .filters__container_box .filters__container_box__content--input p {
  color: #344051 !important;
}
.fast-search form .filters__container_box.rooms .filters__container_box__content {
  column-count: 2;
}
.fast-search form .filters__container_box__title {
  font-weight: 700;
  font-size: 14px;
  color: #637083;
}
.fast-search form .filters__container_box__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fast-search form .filters__container_box:hover .filters__container_box__content {
  background: #ffffff;
  display: block;
  top: 50px;
  left: -15px;
  z-index: 9;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  min-width: 280px;
  box-shadow: 0px 6px 12px 0px rgba(28, 39, 49, 0.0509803922);
}
.fast-search form .filters__container_box:hover .filters__container_box__content__wrapper {
  background: #f2f4f7;
}
.fast-search form .filters__container_box:hover .custom-checkbox--text {
  color: #414e62;
}
.fast-search form .filters__container_box:hover .filters__container_box__content .desc {
  color: #344051;
}
.fast-search form .filters__container_box:hover .filters__container_box__content--input .input-slot--input input {
  background: #ffffff;
  color: #344051;
}
.fast-search form .filters__container_box:hover .filters__container_box__content--checkbox .custom-checkbox--checkmark {
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #ced2da;
}
.fast-search form .filters__container_box .filters__container_box__content {
  display: none;
  position: absolute;
}
.fast-search form .filters__container_box__dropdown {
  display: none;
  position: absolute;
}

.fav-wrapper {
  margin-bottom: 40px;
}
.fav-wrapper .favorites-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.fav-wrapper .favorites-listing .filters_result_teaser {
  width: initial !important;
  flex: 1 1 calc(25% - 16px);
  max-width: calc(25% - 16px);
  margin: 0;
}
.fav-wrapper .fav-promo-banner {
  background-image: url("./../../images/favorite/fav-banner1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  width: initial;
  flex: 1 1 calc(25% - 16px);
  max-width: calc(25% - 16px);
  max-width: 25%;
  height: 410px;
  border-radius: 16px;
  background-size: 100%;
}
.fav-wrapper .fav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fav-wrapper .fav-top__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fav-wrapper .fav-top__right .favorite-controls {
  display: flex;
  gap: 12px;
}
.fav-wrapper .fav-top__right .favorite-controls.active {
  background: #414e62;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.fav-wrapper .fav-top__right .favorite-controls .generated-link-container {
  display: flex;
  align-items: center;
  position: relative;
}
.fav-wrapper .fav-top__right .favorite-controls .generated-link-container a {
  color: #ffffff;
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 450px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline;
  position: relative;
  padding-left: 34px;
}
.fav-wrapper .fav-top__right .favorite-controls .generated-link-container a::before {
  content: "";
  width: 24px;
  min-width: 24px;
  height: 22px;
  background-image: url("./../../images/favorite/web.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 8px;
  position: absolute;
  left: 0;
}
.fav-wrapper .fav-top__right .favorite-controls > button {
  padding: 4px 12px;
  background: #202b37;
  border-radius: 38px;
  padding-left: 43px;
  position: relative;
  color: #ffffff;
  font-size: 10px;
  height: 32px;
  display: flex;
  align-items: center;
  border: none;
}
.fav-wrapper .fav-top__right .favorite-controls > button:before {
  content: "";
  background-image: url("./../../images/favorite/share-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 10px;
  height: 24px;
  width: 24px;
}
.fav-wrapper .fav-top__right .fav-remove-all {
  border: 1px solid #202b37;
  border-radius: 38px;
  padding: 0px 24px;
  display: flex;
  gap: 10px;
  height: 32px;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
}
.fav-wrapper .empty-fav-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fav-wrapper .empty-fav-info > a {
  font-size: 16px;
  font-weight: 500;
  background: #cf4008;
  color: #ffffff;
  border-radius: 28px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  max-height: 39px;
}
.fav-wrapper .empty-fav-info__list-info {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 21px;
}
.fav-wrapper .empty-fav-info__add {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 21px;
}
.fav-wrapper .empty-fav-info__icon {
  background-image: url("./../../images/favorite/favorite-empty.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 80px;
  margin-bottom: 21px;
  background-position: center;
}
.fav-wrapper .empty-fav-top, .fav-wrapper .fav-top {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 40px;
  background: #f2f4f7;
}
.fav-wrapper .empty-fav-top__counter, .fav-wrapper .fav-top__counter {
  font-size: 16px;
  font-weight: 700;
  color: #637083;
}
.fav-wrapper .empty-fav-top__title, .fav-wrapper .fav-top__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.fav-wrapper .empty-fav-top__title span:first-child, .fav-wrapper .fav-top__title span:first-child {
  background-image: url("./../../images/favorite/favorite-heart.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 25px;
  width: 27px;
}
.fav-wrapper .empty-fav-top__title span:last-child, .fav-wrapper .fav-top__title span:last-child {
  font-size: 30px;
  font-weight: 700;
}

.favorite-remove-all .popup__title {
  margin-bottom: 16px;
}
.favorite-remove-all .confirm {
  background: #f2f4f7;
}
.favorite-remove-all .confirm img {
  margin-right: 8px;
}

.favoriteLimit-popup .popup-favorite__contentWrapper p {
  font-weight: 500;
  font-size: 14px;
}
.favoriteLimit-popup .popup-favorite__link {
  background-color: #cf4008;
  padding: 10px 16px;
  border-radius: 20px;
  margin-top: 32px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  max-height: 36px;
  display: flex;
  align-items: center;
}
.favoriteLimit-popup .popup-favorite__buttonWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper-inside-5.active {
  display: block;
}

.wrapper-inside-5 {
  display: none;
  position: fixed;
  z-index: 12;
  left: 0;
  bottom: 0;
  padding: 0 5px 5px 5px;
  background-color: #344051;
  border-top-right-radius: 8px;
  width: 262px;
  height: 290px;
}
.wrapper-inside-5 .ad_label {
  display: none;
}

.ad-label-wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #ffffff;
  margin-bottom: 5px;
  margin-top: 6px;
  margin-right: 5px;
  margin: 6px 5px 5px 0;
}

.ad-close-btn {
  width: 12px;
  height: 12px;
  background-image: url("./../../images/project_zoom_gallery/project-zoom-gallery-close-icon.svg");
  cursor: pointer;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center center;
}

.ad_label {
  font-family: "Satoshi";
  font-size: 8px;
  color: #414e62;
  margin-bottom: 4px;
}

.top_1-wrapper .ad_label {
  margin-top: 8px;
  width: 100%;
  font-size: 8px;
}
.top_1-wrapper .top_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 265px;
  width: 100%;
}

.inside_1_wide-wrapper {
  margin-top: 24px;
  margin-bottom: 48px;
}
.inside_1_wide-wrapper .inside_1_wide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 115px;
  width: 100%;
}

.bottom_1-wrapper {
  margin-bottom: 10px;
}
.bottom_1-wrapper .bottom_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.inside_4,
.inside_3 {
  background-image: url("./../../images/filters/ads-zaslepka.png");
  background-position: center;
  width: 332px;
  height: 410px;
  border-radius: 16px;
}

.filters-results__container__slots .inside_1_wide-wrapper {
  margin-top: 44px;
  margin-bottom: 60px;
}

.article .article__placement {
  position: relative;
  margin-bottom: 32px;
  min-height: 142px;
}
.article .article__placement > [class*=zpr_].active {
  position: relative;
}
.article .article__placement > [class*=zpr_].active::before {
  content: "REKLAMA";
  font-family: "Satoshi";
  font-size: 8px;
  color: #414e62;
  margin-bottom: 4px;
}

.article-page .side_1-wrapper {
  position: sticky;
  top: 0;
}
.article-page .aside {
  margin-bottom: 32px;
}

.builder-guide .builder-guide__listings > [class*=inside_] {
  min-height: 233px;
}

.ingallery-wrapper {
  max-height: 741px;
  width: 100%;
}

.ingallery-wrapper .ad_label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: white;
  font-size: 12px;
  bottom: 16px;
  left: 16px;
  border-radius: 35px;
  padding: 1px 8px;
  font-weight: 500;
}

.inside_1_gallery-wrapper {
  max-height: 741px;
  width: 100%;
}

.inside_1_gallery-wrapper .ad_label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: white;
  font-size: 12px;
  bottom: 16px;
  left: 16px;
  border-radius: 35px;
  padding: 1px 8px;
  font-weight: 500;
}

.gallery_big_image_wrapper #ingallery :first-child,
.gallery_big_image_wrapper #inside_1_gallery :first-child {
  height: 515px;
}

.gallery-item-wrapper.gallery-ad {
  height: 70vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.gallery-item-wrapper #inside_1_gallery :first-child,
.gallery-item-wrapper #ingallery :first-child {
  height: 70vh;
  width: 100%;
}

#main-wrapper {
  position: relative;
  margin: 0 auto;
}

body.open-popup {
  max-width: 100%;
  margin: 0 auto;
  min-width: 100%;
  margin-right: 17px;
}

.settings-btn {
  right: 0.5rem;
  left: auto !important;
}

/*# sourceMappingURL=main.css.map */
