.html {
    margin: 0 !important;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 86px 0 0;
    scroll-behavior: smooth;
}

.img-responsive {
    width: 100%;
    height: auto;
}

.mobile-menu {
    display: none;
}

.container, .section--promo .inside {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

#header {
    background-color: #323138;
    color: #f2ecd8;
    padding: 21px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

#header .left-column a {
    display: block;
    margin-right: 20px;
}

#header .left-column a.main-logo {
    width: 180px;
}


#header .left-column a.second-logo {
    width: 120px;
}

#header .left-column img {
    width: 100%;
    height: auto;
}

#header .right-column a {
    background-color: #b95624;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    padding: 11px 20px;
    border-radius: 8px;
    transition: all 300ms;
}

#header .right-column a:hover {
    background-color: #a54c1e;
}

#header .right-column a span {
    display: block;
}

#header .right-column img {
    width: 20px;
    display: block;
    margin-right: 11px;
    animation: pulse 2s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}

#header .menu {
    background-color: #F2ECD90D;
    border-radius: 20px;
    font-size: 14px;
}

#header .menu > ul {
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
}

#header .menu > ul > li {
    position: relative;
}

#header .menu > ul > li a {
    padding: 14px 25px;
    display: block;
}

#header .menu a {
    color: #F2ECD9;
    transition: all 300ms;
    text-decoration: none;
    font-weight: 500;
}

#header .menu li:hover > a {
    color: #B95625;
}

#header .menu ul ul {
    display: none;
    position: absolute;
    background-color: #323139;
    border-radius: 8px;
    top: 42px;
    width: 190px;
    padding-bottom: 5px;
}

#header .menu > ul > li a svg {
    position: relative;
    top: -1px;
    margin-left: 6px;
    transform: rotate(0deg);
    transition: all 300ms;
}

#header .menu > ul > li a svg path {
    stroke: #F2ECD9;
    transition: all 300ms;
}

#header .menu li:hover a svg {
    transform: rotate(180deg);
}

#header .menu li:hover a svg path {
    stroke: #B95625;
}

#header .menu ul li:hover ul {
    display: block;
}

#header .menu ul ul a {
    padding: 20px 20px;
    border-radius: 10px;
}

#header .menu ul ul a:hover {
    background-color: #F2ECD90D;
}

.radius {
    border-radius: 10px;
}

.btn {
    display: inline-flex;
    transition: all 300ms;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 17px 33px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

.btn-xs {
    font-size: 14px;
    padding: 13px 12px;
}

.btn--width-300 {
    width: 279px;
}

.btn--narrow {
    padding: 13px 33px;
    border-radius: 5px;
}

.btn--orange {
    background-color: #B95625;
    color: #FFFFFF;
}

.btn--orange:hover {
    background-color: #a54c1e;
}

.btn--creamy {
    background-color: #F2ECD9;
    color: #323139;
}

.btn--creamy:hover {
    background-color: #e1dbc8;
}

.btn--light {
    color: #B95625;
    background-color: #F2ECD9;
}

.btn--light:hover {
    background-color: #d8cfbb;
}

.btn--light svg path {
    stroke: #B95625;
}

.btn--white {
    background-color: #FFF;
    border: 1px solid #D1D5DC;
    color: #323139;
}

.btn--white:hover {
    background-color: #f3f3f3;
}

.section {
    margin-top: -35px;
    padding-top: 100px;
}

.section-two-columns {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.section-two-columns .column {
    width: 50%;
}

.column--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.column--text .flex-center {
    padding-left: 15%;
    padding-right: 15%;
}

.column--text .flex-center.no-left-padding {
    padding-left: 0px;
}

.section .lead {
    font-size: 17px;
    font-weight: 500;
    color: #323139;
    margin-bottom: 10px;
}

.section .big-header {
    color: #323139;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3em;
    letter-spacing: 1px;
}

.section .big-header .highlight {
    color: #B95625;
}

.section .head {
    font-size: 39px;
    line-height: 48px;
    color: #323139;
    font-weight: 600;
    text-align: center;
}

.section-label {
    color: #B95625;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #B95625;
    border-radius: 15px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 11px;
}

.section .text {
    font-size: 18px;
    line-height: 30px;
    color: #323139;
    font-weight: 300;
    margin-bottom: 19px;
}

.label {
    background-color: #b95625f0;
    border-radius: 10px 100px 100px 100px;
    color: #F2ECD9;
    line-height: 1.4em;
    padding: 48px 35px 69px;
    width: 145px;
}

.label > .header {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 5px;
}

.label .desc {
    font-size: 15px;
    font-weight: 500;
}

.section--hero .column--text {
    width: 45%;
}

.section--hero .column--img {
    position: relative;
    width: 55%;
}

.section--hero .column--img img {
    border-top-left-radius: 66px;
}

.section--hero .label {
    position: absolute;
    top: 35px;
    left: 35px;
}

.section--hero .big-header span {
    /*display: block;*/
}

.center {
    text-align: center;
}

.left {
    text-align: left !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section--facilities .icons {
    display: flex;
    flex-wrap: wrap;
    color: #323139e3;
    font-size: 15px;
    font-weight: 400;
    margin-top: 35px;
    padding-bottom: 50px;
    text-align: center;
    justify-content: flex-start;

}

.section--facilities .icons .box, .tabs button {
    width: 21.5%;
}

.section--facilities .icons .title {
    padding-top: 15px;
    padding-left: 19px;
    padding-right: 19px;
    line-height: 1.3em;
}

.section--map iframe {
    width: 100%;
    height: 400px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.section--apartments {
    padding-bottom: 50px;
}

.section--about .head {
    margin-bottom: 20px;
}

.section--about .column--img img {
    border-radius: 10px 66px 10px 10px;
}

.section--about.reverse .column--img img {
    border-radius: 66px 10px 10px 10px;
}

.apartments .apartment {
    border: 1px solid #D8D8D8;
    border-radius: 10px;
    padding: 20px;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.apartments .apartment .left-column {
    border-right: 1px solid #D8D8D8;
    padding-right: 20px;
}

.apartment .column > .title {
    font-size: 17px;
    color: #B95625;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.apartment .right-column .title {
    font-size: 15px;
}

.apartment .details {
    align-items: flex-start;
    display: flex;
}

.apartment .details .box {
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 8px 9px;
    min-width: 45px;
    margin-right: 8px;
}

.apartment .details .box--lokal {
    display: none;
}

.apartment .details .box .title {
    font-size: 11px;
    color: #6A7282;
    font-weight: 300;
}

.apartment .details .box .value {
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
    color: #323139;
    white-space: nowrap;
}

.apartment .details .price {
    padding-left: 20px;
    width: 180px;
}

.apartment .details .price .total-price {
    font-weight: 700;
    font-size: 18px;
    color: #B95625;
    margin-bottom: 5px;
    white-space: nowrap;
}

.apartment .details .price .price-unit {
    font-weight: 700;
    font-size: 18px;
    color: #323139;
    margin-bottom: 5px;
}

.apartment .details .price .price-label {
    font-weight: 300;
    color: #323139CC;
    font-size: 13px;
    margin-bottom: 15px;
}

.apartment .details .buttons .btn--white svg {
    margin-right: 10px;
}

.apartment .details .buttons .btn--light {
    color: #323139;
    margin-top: 20px;
}

.apartment .details .buttons .btn {
    width: 90%;
}

.apartment .column {
    width: 50%;
}

.consents {
    max-width: 720px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.consents__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0 0;
}

.consents__label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    min-width: 0;
    flex: 1 1 auto;
    cursor: pointer;
    position: relative;
}

.consents__checkbox {
    position: absolute;
    opacity: 0;
}

.consents__checkbox + .consents__label::before {
    content: "";
    width: 16px;
    min-width: 16px;
    height: 16px;
    border: 1px solid rgb(255 255 255 / 30%);
    display: inline-block;
    margin-right: 8px;
    border-radius: 4px;
}

.consents__checkbox:checked + .consents__label::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.consents__checkbox {
    margin-top: 2px;
    flex: 0 0 auto;
}

.consents__text {
    display: block;
    min-width: 0;
    font-size: 10px;
    opacity: 0.8;
    line-height: 1.4em;
    padding-top: 3px;
}

/* tryb zwinięty: jedna linia + ellipsis */
.consents__item.is-collapsed .consents__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.4em;
    opacity: 0.7;
    font-weight: 300;
    padding-top: 2px;
}

/* tryb rozwinięty: normalny tekst */
.consents__item.is-expanded .consents__text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.consents__expand {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    color: #F2ECD9;
    font-size: 10px;
    padding: 2px 0 0;
}

.consents__divider {
    border: 0;
    border-top: 1px solid currentColor;
    opacity: 0.2;
    margin: 8px 0;
}

.consents__text--all {
    white-space: normal;
}

.section--contact {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    border-radius: 10px;

}

.section--contact .inner {
    padding: 0 40px;
    align-items: flex-start;
}

.section--contact .big-header {
    color: #FFF;
    font-weight: 500;
}

.my-form {
    width: 360px;
    background-color: #323139CC;
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 10px;
    color: #FFF;
}

.g-recaptcha {
    display: none;
}

.my-form .l {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 9px;
}

.my-form .form-control {
    width: 100%;
    font-family: "Inter", sans-serif;
    outline: none;
    padding: 10px 9px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
    border: none;
    border-radius: 4px;
    color: #323139;
}

.my-form textarea.form-control {
    resize: none;
    height: 49px;
}

.my-form .btn {
    width: 100%;
    margin-top: 20px;
}

.my-form .success {
    display: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

.my-form .success .header {
    font-size: 25px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 1.3em;
}

.my-form .success .text {
    text-align: center;
    color: #FFF;
    margin-top: 15px;
    font-size: 16px;
}

.my-form .error {
    background-color: #2c1f22;
    border: 1px solid #b94a48;
    color: #f8d7da;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
    display: none;
}

.section--contact .contact-tel {
    background-color: #B95625;
    border-radius: 10px;
    padding: 11px 10px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    width: 165px;
    font-size: 18px;
    justify-content: center;
}


.section--contact .contact-tel img {
    margin-right: 15px;
}

#footer {
    background-color: #323138;
    padding: 25px;
    margin-top: 40px;
}

#footer a.main-logo {
    width: 180px;
    display: block;
}

#footer a {
    margin-right: 20px;
    color: #D1D5DC;
    font-size: 16px;
    white-space: nowrap;
    text-decoration: none;
}


#footer a.second-logo {
    width: 120px;
    display: block;
}

#footer a.link {
    margin-top: -2px;
    font-weight: 300;
}

#footer .middle-left {
    width: 50%;
    align-items: flex-start;
}

#footer .middle-right {
    width: 50%;
    justify-content: flex-end;
}

#footer img {
    width: 100%;
    height: auto;
}

#footer .row:nth-child(1) {
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: 50px;
}

#footer .row:nth-child(1) a.link {
    margin-left: 40px;
}

#footer .row:nth-child(2) {
    padding-bottom: 10px;
}

#footer .copyright {
    font-size: 14px;
    color: #99A1AF;
    font-weight: 300;
    line-height: 1.3em;
}

#footer .row:nth-child(2) a {
    font-size: 13px;
    color: #99A1AF;
}

.section--contact .column {
    background-image: none;
}





#map {
    width: 500px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

/* custom pinezka */
.custom-marker img {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
}

.custom-marker-main img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.custom-marker-main {
    position: relative;
    z-index: 1;
}

.custom-marker-wrap {
    position: relative;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -100%);
}

.custom-marker {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.custom-marker img {
    display: block;
    width: 30px;
    height: auto;
}

.map-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.2s ease;
    z-index: 10;
}

.map-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.map-tooltip__title {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
    color: #2f2f39;
    margin-bottom: 15px;
    white-space: nowrap;
}

.map-tooltip__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.map-tooltip__label {
    font-size: 14px;
    color: #8d8a90;
}

.map-tooltip__time {
    font-size: 14px;
    font-weight: 600;
    color: #d08c69;
    white-space: nowrap;
}

.section--banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
}

.section--banner::after {
    content: " ";
    background-image: url(https://myglebocka.pl/wp-content/uploads/2026/03/Group-32@3x-scaled.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
}

.section--banner .inside {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section--banner .banner-box {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section--banner .banner-box .title {
    color: #F2ECD9;
    font-weight: 600;
    font-size: 39px;
    letter-spacing: 0.5px;
    line-height: 1.1em;
    padding-bottom: 20px;
}

.section--banner .banner-box .description {
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    padding-bottom: 25px;
    line-height: 1.4em;
}

.section--banner .banner-box .btn {
    max-width: 250px;
}

.section--banner .banner-highlights {
    margin-top: 80px;
    max-width: 400px;
}

.banner-highlights .value {
    color: #F2ECD9;
    font-size: 30px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    font-weight: 600;
}

.banner-highlights .desc {
    color: #FFF;
    font-weight: 300;
    font-size: 14px;
}



.my-form .form-rooms {
    padding-top: 10px;
    padding-bottom: 10px;
}

.trigger-mobile {
    display: none;
}

.check label {
    background-color: #FFFFFF1A;
    color: #ffffffe3;
    font-size: 14px;
    font-weight: 300;
    padding: 13px 18px;
    text-align: center;
    transition: all 300ms;
    cursor: pointer;
    width: 48px;
    border-radius: 4px;
    display: block;
}

.check label:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.check label:has(input:checked) {
    background-color: #F2ECD9;
    color: #323139;
}

.check label input {
    display: none;
}

.section--promo {
    background-color: #F2ECD9;
    margin-top: 50px;
    margin-bottom: -40px;
    padding-top: 40px;
}

.section--promo .left {
    display: block;
}

.section--promo .section-label {
    margin-top: 15px;
}

.section--promo .title {
    font-size: 39px;
    font-weight: 500;
    color: #323139;
    margin-bottom: 40px;
    line-height: 1.1em;
}

.section--promo .title span {
    color: #c4632e;
}


.section--promo .inside {
    align-items: flex-start;
}

.footer-menu {
    align-items: flex-start;
    width: 370px;
}

.footer-menu .left-menu, .footer-menu .right-menu {
    line-height: 2em;
}

.footer-menu a {
    margin-bottom: 10px;
    margin-top: 0;
    transition: all 300ms
}

.footer-menu a:hover {
    color: #c4632e !important;
}

.img-with-highlights .column--img, .img-with-stock .column--img {
    position: relative;
}

.img-with-highlights .column--img::before {
    content: " ";
    width: 100%;
    height: 200px;
    background: #000000;
    position: absolute;
    bottom: 0;
    border-radius: 0 10px 10px 10px;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.7) 0%, rgba(253, 187, 45, 0) 100%);
    z-index: 2;
}

.img-with-highlights .column--img .stock {
    position: absolute;
    width: 282px;
    top: 50%;
    margin-top: -55px;
    right: -88px;
}

.img-with-highlights .banner-highlights {
    position: absolute;
    z-index: 3;
    width: 100%;
    bottom: 50px;
    color: #FFFF;
    left: 0;
    padding-left: 30px;
}

.section--small-desc {
    gap: 80px;
    max-width: 1200px;
    margin-bottom: 100px;
}

.section--small-desc .column {
    border-left: 2px solid #B95625;
    padding-left: 35px;
    font-weight: 300;
    color: #323139BF;
    line-height: 1.5em;
    font-size: 16px;
    padding-right: 35px;
}

.section--dark {
    border-radius: 66px 10px 10px 10px;
    padding-bottom: 80px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    background-position: center top;
}

.section--dark .inside {
    padding: 0 70px;
    align-items: flex-start;
}

.section--dark .inside .section-label {
    border-color: #C3AA8F;
    background-color: rgba(255, 255, 255, 0.1);
    color: #F6F2E4;
}

.section--dark .head {
    color: #F6F2E4;
    margin-bottom: 30px;
}

.section--dark .text {
    color: #F2ECD9;
    font-size: 16px;
    font-weight: 300;
}

.section--dark .left {
    max-width: 520px;
}

.section--dark .right img {
    width: 100%;
    height: auto;
    margin-top: 55px;
}

.img-with-stock .stock {
    position: absolute;
    bottom: 52px;
    left: -90px;
    width: 300px;
}


.section--pzt {
    align-items: flex-start;
}

.section--pzt .title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2em;
}

.section--pzt img {

}

.section--pzt .img > a {
    position: relative;
}

.zoom {
    background: #F6F2E4;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.section--pzt .zoom {
    position: absolute;
    right: 20px;
    margin-top: 70px;
}

.section--facilities .icons {
    display: none;
}

.section--facilities .icons.active {
    display: flex;
}

.tabs, .tabs-container {
    width: 76%;
    margin-left: auto;
    margin-right: auto;
}

.tabs, .section--facilities .icons {
    gap: 45px;
}

.tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tabs button {
    color: #323139;
    background: #F2ECD9;
    border: none;
    cursor: pointer;
    transition: all 300ms;
    padding: 20px 35px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
}

.tabs button.active, .tabs button:hover {
    color: #FFF;
    background-color: #B95625;
}

.section--bix-boxes .box {
    width: 280px;
}

.section--bix-boxes {
    justify-content: center;
    gap: 8%;
    max-width: 1100px;
    align-items: flex-start;
}

.section--bix-boxes .box img {
    margin-bottom: 15px;
}

.section--bix-boxes .box .title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2em;
    letter-spacing: -0.07px;
    margin-bottom: 15px;
}

.section--bix-boxes .box .desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4em;
    letter-spacing: -0.5px;
    color: #323139BF;
}

.investment-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 20px 0 0;
}

.investment-progress__line {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d8d8d8;
    z-index: 0;
}

.investment-progress__item {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    min-width: 0;
}

.investment-progress__circle {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    background: #FFF;
    color: #a5a5ab;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investment-progress__label {
    margin-top: 28px;
    color: #a5a5ab;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.investment-progress__item.is-active .investment-progress__circle {
    background: #2f2f3a;
    border-color: #2f2f3a;
    color: #f3ead7;
}

.investment-progress__item.is-active .investment-progress__label {
    color: #2f2f3a;
}

@media (max-width: 1200px) {
    .investment-progress__circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .investment-progress__line {
        top: 60px;
    }

    .investment-progress__label {
        font-size: 16px;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .investment-progress {
        gap: 12px;
    }

    .investment-progress__circle {
        width: 58px;
        height: 58px;
        font-size: 24px;
        border-width: 2px;
    }

    .investment-progress__line {
        top: 49px;
    }

    .investment-progress__label {
        margin-top: 16px;
        font-size: 13px;
        max-width: 100px;
    }
}

@media (max-width: 560px) {
    .investment-progress {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .investment-progress__item {
        min-width: 110px;
    }

    .investment-progress__line {
        left: 55px;
        right: 55px;
    }
}

.progress-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.progress-box {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-box__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 380 / 254;
    overflow: hidden;
    text-decoration: none;
}

.progress-box__image img.thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progress-box__image-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.progress-box__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0) 42%);
    pointer-events: none;
}

.progress-box__content {
    padding: 18px 18px 22px;
}

.progress-box__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.progress-box__title {
    margin: 0;
    color: #0f172b;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -0.31px;
    flex: 1 1 auto;
}

.progress-box__date {
    flex: 0 0 auto;
    min-width: 72px;
    text-align: left;
    color: #b85a22;
    font-weight: 500;
    line-height: 0.9;
}

.progress-box__day {
    display: block;
    font-size: 28px;
    line-height: 28px;
}

.progress-box__month {
    display: block;
    font-size: 28px;
    line-height: 28px;
}

.progress-box__text,
.progress-box__text p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.progress-box__text p + p {
    margin-top: 8px;
}

@media (max-width: 1100px) {
    .progress-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .progress-posts {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .progress-box__content {
        padding: 16px;
    }

    .progress-box__top {
        gap: 12px;
        margin-bottom: 14px;
    }

    .progress-box__title {
        font-size: 15px;
        line-height: 22px;
    }

    .progress-box__day,
    .progress-box__month {
        font-size: 24px;
        line-height: 24px;
    }

    .progress-box__text,
    .progress-box__text p {
        line-height: 22px;
    }
}

.progress-box .media-type {
    position: absolute;
    top: 20px;
    right: 20px;
}

.section--title-progress {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.5em;
    letter-spacing: -0.61px;
}

.section--title-progress .title {
    max-width: 570px;
}

.section--title-progress .title span {
    color: #b85a22;
}


.section--breadcrumbs, .section--breadcrumbs a {
    color: #323139;
    text-decoration: none;
    transition: all 300ms;
    margin-top: 10px;
    padding-top: 20px;
    margin-bottom: auto;
    padding-bottom: 0;
}

.section--breadcrumbs .inside {
    display: flex;
    font-weight: 300;
    align-items: flex-end;
}

.section--breadcrumbs a:hover {
    color: #b85a22;
}

.section--contact-title .title {
    font-size: 48px;
    color: #323139;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 15px;
}

.section--contact-title .desc {
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.45px;
    color: #B95625;
}

.section--sales {
    gap: 20px;
}

.section--sales .person {
    width: 50%;
    background-color: #F2ECD9;
    border: 1px solid #3231391A;
    border-radius: 10px;
    padding: 25px;
}

.section--sales .person .inside {
    justify-content: flex-start;
}

.section--sales .person .details {
    padding-left: 20px;
    width: 80%;
}

.section--sales .person .details .name {
    color: #323139;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 10px;
}

.section--sales .person .details .position {
    color: #323139B2;
    font-size: 16px;
    padding-bottom: 15px;
}

.section--sales .person .details .phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 21px;
    padding-top: 15px;
    border-top: 1px solid #3231391A;
}

.section--sales .person .details .phone a {
    text-decoration: none;
    color: #B95625;
}

.section--sales .person .details .phone svg {
    margin-right: 15px;
}

.section--sales .person .btn {
    width: auto;
    margin-top: 20px;
    display: flex;
}

.section--sales .person .btn svg {
    margin-right: 10px;
}

.section--contact-form .right {
    background-color: #000;
    border-radius: 0px 10px 10px 0;

}

.section--contact-form{
    overflow: hidden;
    border-radius: 10px;
}

.section--contact-form .left {
    width: 80%;
    padding: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px 0 0 10px;
}

.section--contact-form .inside {
    align-items: stretch;
    justify-content: normal;
    width: 100%;
}

.section--contact-form .section-label {
    border: none;
    background: #FFFFFF1A;
    color: #FFF;
}

.section--contact-form .head {
    padding-left: 0;
    color: #FFF;
    font-size: 44px;
    max-width: 600px;
    font-weight: 500;
    line-height: 1.4em;
    padding-bottom: 20px;
    padding-top: 2px;
}

.section--contact-form .left .btn {
    font-size: 22px;
}

.section--contact-form .left .btn svg {
    margin-right: 15px;
}

.section--map .inside {
    align-items: flex-start;
    gap: 40px;
}

.section--map .inside .title {
    color: #323139;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}

.section--map .inside .desc {
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 300;
    margin-bottom: 15px;
}

.section--map .direction-map img {
    width: 100%;
    height: auto;
    display: block;
}

.section--map .inside .details {
    text-align: left;
    font-weight: 300;
}

.section--map .inside .details .item {
    justify-content: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.3em;
    align-items: flex-start;
}

.section--map .inside .details .icon {
    width: 20px;
    margin-right: 10px;
}

.section--map .left, .section--map .right {
    width: 50%;
}

.section--local-images {
    padding-top: 60px;
}
.section--local-images .left, .section--local-images .right {
    width: 50%;
}

.section--local-images .left img {
    border-radius: 10px;
}

.section--local-images .left .img-big {
    margin-bottom: 10px;
}

.section--local-images .img-double {
    gap: 10px;
}

.section--local-images .right {
    padding-left: 40px;
}

.section--local-images .right .title {
    font-size: 40px;
    color: #323139;
    line-height: 1.4em;
}

.section--local-images ul {
    margin-top: 20px;
}

.section--local-images li {
    background-image: url(https://myglebocka.pl/wp-content/uploads/2026/03/tick.png);
    background-repeat: no-repeat;
    background-position: left 6px;
    padding-left: 45px;
    margin-bottom: 13px;
    font-size: 18px;
    font-weight: 300;
    color: #323139;
    padding-top: 10px;
    padding-bottom: 10px;
}

#location-map {
    width: 100%;
    height: 700px;
    border-radius: 10px;
}

.location-groups {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-group {
    width: 49%;
}

.location-group__box {
    border: 1px solid #F2ECD9;
    padding: 20px;
    border-radius: 10px;
}

.location-item {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 5px;
    margin-top: 11px;
}

.location-item__icon {
    width: 45px;
    margin-right: 17px;
}

.location-item__left {
    display: flex;
    align-items: center;
    width: 70%;
}

.location-item__right {
    display: flex;
    align-items: center;
    width: 30%;
}

.location-item__name {
    color: #323139;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2em;
}

.location-item__access-icon {
    margin-right: 15px;
}

.location-item__distance {
    color: #B95625;
    font-weight: 600;
    font-size: 14px;
}

.location-group__title {
    font-size: 30px;
    color: #323139;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 35px;
}

.custom-gallery-grid {
    margin-left: -10px;
    margin-right: -10px;
}







.custom-gallery-grid {
    position: relative;
}

.gallery-item {
    width: calc(23.5% - 10px);
    margin: 0 10px 18px;
    box-sizing: border-box;
    opacity: 1;
    transform: translateY(0);
    transition:
            opacity 0.22s ease,
            transform 0.22s ease;
    will-change: opacity, transform;
}

.gallery-item a,
.gallery-item img {
    display: block;
    width: 100%;
}

.gallery-item img {
    height: auto;
    border-radius: 12px;
}

.gallery-item.is-hiding,
.gallery-item.is-showing {
    opacity: 0;
    transform:none;
    pointer-events: none;
}

.gallery-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.is-hidden {
    display: none;
}

@media (max-width: 991px) {
    .gallery-item {
        width: calc(49% - 20px);
    }
}

@media (max-width: 575px) {
    .gallery-item {
        width: calc(100% - 20px);
    }
}





.gallery-filters .js-gallery-filter {
    background: #F2ECD9;
    border: none;
    color: #323139;
    font-weight: 300;
    font-size: 14px;
    padding: 20px 31px;
    border-radius: 10px;
    margin-right: 10px;
    margin-bottom: 35px;
    transition: all 300ms;
    cursor: pointer;
}

.gallery-filters .js-gallery-filter.is-active, .gallery-filters .js-gallery-filter:hover {
    background-color: #B95625;
    color: #FFF;
}








.section--404 {
    min-height: 80vh;
    text-align: center;
}

.section--404 .error {
    font-size: 230px;
    font-weight: 700;
    color: #F2ECD9;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section--404 .desc {
    color: #323139;
    font-size: 48px;
    margin-bottom: 20px;
}

.section--404 .text {
    color: #323139;
    font-size: 17px;
    margin-bottom: 30px;
    font-weight: 300;
}

.section--static .title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section--static .text {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 300;
    color: #1D293D;
}




.section--static .text > *:first-child {
    margin-top: 0;
}

.section--static .text > *:last-child {
    margin-bottom: 0;
}

.section--static .text h1,
.section--static .text h2,
.section--static .text h3,
.section--static .text h4,
.section--static .text h5,
.section--static .text h6 {
    color: #111827;
    font-weight: 700;
    line-height: 1.3;
    margin: 32px 0 16px;
}

.section--static .text h1 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 600;
}

.section--static .text h2 {
    font-size: 17px;
    margin-top: 40px;
    font-weight: 600;
}

.section--static .text h3 {
    font-size: 16px;
    font-weight: 600;
}

.section--static .text h4 {
    font-size: 15px;
    font-weight: 600;
}

.section--static .text p {
    margin: 0 0 18px;
}

.section--static .text ul,
.section--static .text ol {
    margin: 0 0 20px 24px;
    padding: 0;
}

.section--static .text li {
    margin-bottom: 10px;
}

.section--static .text li > ul,
.section--static .text li > ol {
    margin-top: 10px;
    margin-bottom: 10px;
}

.section--static .text a {
    color: #B95625;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section--static .text a:hover {
    opacity: 0.85;
}

.section--static .text strong,
.section--static .text b {
    font-weight: 700;
}

.section--static .text em,
.section--static .text i {
    font-style: italic;
}

.section--static .text blockquote {
    margin: 24px 0;
    padding: 16px 20px;
    border-left: 4px solid #d1d5db;
    background: #f9fafb;
}

.section--static .text hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 32px 0;
}

.section--static .text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
}

.section--static .text table th,
.section--static .text table td {
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    text-align: left;
}

.section--static .text table th {
    background: #f9fafb;
    font-weight: 600;
}

.section--static .text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
}

.section--static .text br {
    content: "";
}

.section--static .text br + br {
    display: block;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .section--static .text {
        font-size: 15px;
        line-height: 1.7;
    }

    .section--static .text h1 {
        font-size: 28px;
    }

    .section--static .text h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .section--static .text h3 {
        font-size: 20px;
    }

    .section--static .text ul,
    .section--static .text ol {
        margin-left: 20px;
    }
}

.section--static .text ul,
.section--static .text ol {
    margin: 0 0 20px 24px;
    padding-left: 20px;
}

.section--static .text ul {
    list-style-type: disc;
}

.section--static .text ul ul {
    list-style-type: circle;
}

.section--static .text ul ul ul {
    list-style-type: square;
}

.section--static .text ol {
    list-style-type: decimal;
}

.section--static .text ol ol {
    list-style-type: lower-alpha;
}

.section--static .text ol ol ol {
    list-style-type: lower-roman;
}

.section--static .text li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.section--static .text li > ul,
.section--static .text li > ol {
    margin-top: 8px;
}

.section--browser-title .title,
.section--browser-list-title .title,
.section--history-price-title .title
{
    font-size: 48px;
    font-weight: 500;
    color: #323139;
    margin-bottom: 25px;
}

.section--browser-title .desc,
.section--browser-list-title .desc,
.section--history-price-title .desc
{
    font-size: 18px;
    font-weight: 300;
    color: #323139;
}

.section--browser-title .btn {
    margin-left: 10px;
}

.section--search {
    background-color: #323139;
    color: #F2ECD9;
    font-weight: 300;
    margin-top: 40px;
    padding-top: 0;
}

.section--search .inside {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0;
}

.section--search .top {
    justify-content: space-between;
    margin-bottom: 30px;
}

.section--search .top .title {
    font-size: 16px;
    font-weight: 500;
}

.section--search .top .results {
    font-size: 14px;
}

.section--search .top .results span {
    font-weight: 500;
}

.section--search .bottom .info {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 15px;
}

.section--search .check label {
    width: 48px;
    border: 2px solid #4A4A52;
    background-color: transparent;
    border-radius: 10px;
    margin-right: 10px;
    padding: 6px 1px;
}

.section--search .check label:has(input:checked) {
    background-color: #F2ECD9;
    color: #4A4A52;
}

.section--search .checkbox-label {
    font-size: 12px;
}

.section--search .column--slider {
    width: 250px;
}

.section--search .column--floor, .section--search .column--room {
    /*width: 150px;*/
}

.my-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #e6e1d9;
    font-size: 18px;
}

/* ukrycie natywnego checkboxa */
.my-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* box */
.checkbox-box {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    border: 2px solid #4A4A52;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* check */
.checkbox-box::after {
    content: "";
    width: 4px;
    height: 9px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg) scale(0);
    transition: transform .2s ease;
}

/* zaznaczony */
.my-checkbox input:checked + .checkbox-box {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
}

.my-checkbox input:checked + .checkbox-box::after {
    transform: rotate(45deg) scale(1);
}

.range-slider {
    background: #4A4A52;
}

.range-slider .range-slider__thumb {
    box-shadow: 0px 0px 10px #0000004f;
}

.range-slider .range-slider__thumb, .range-slider .range-slider__range {
    background: #F2ECD9;
}

.sliders .flex {
    margin-top: 20px;
}

.sliders .flex input {
    background: none;
    border: none;
    font-size: 14px;
    width: 70px;
    color: #F2ECD9;
}

.sliders .flex input:nth-child(2) {
    text-align: right;
}

.range-slider {
    height: 5px;
}

.section--floor-title .inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section--floor-title .inside .title {
    color: #323139;
    font-size: 48px;
    margin-bottom: 20px;
}

.section--floor-title .inside .desc {
    font-weight: 300;
    font-size: 18px;
}

.section--floor-title .btn svg {
    margin-right: 10px;
}

.section--floor-title .btn svg path {
    stroke: #ffffff;
}


.section--apartment-details {
    background: #323139;
    border-radius: 15px;
    margin-top: 35px;
    padding: 0;
}

.section--apartment-details .inside {
    padding: 20px;
    display: flex;
}

.section--apartment-details .inside > .left {
    width: 50%;
    position: relative;
    padding-right: 30px;
    margin-right: 30px;
}

.section--apartment-details .inside > .left::before {
    content: " ";
    width: 1px;
    height: 80%;
    position: absolute;
    top: 10%;
    background: #4A4851;
    right: 0;
}

.section--apartment-details .inside > .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section--apartment-details .prices {
    align-items: self-start;
}

.section--apartment-details .prices:nth-child(2) {
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff14;
    margin-bottom: 15px;
}

.prices .label-price {
    font-size: 12px;
    color: #9E9BA5;
    font-weight: 400;
    margin-bottom: 10px;
    padding-top: 10px;
}

.prices .value-price {
    font-size: 22px;
    font-weight: 500;
    color: #F2ECD9;
    margin-bottom: 10px;
}

.prices .value-previous-price {
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
    color: #F2ECD9;
    margin-bottom: 20px;
}

.prices .label-previous-price {
    font-size: 11px;
    color: #9E9BA5;
    font-weight: 300;
}

.section-contiguity {
    border-top: 1px solid #4A4851;
    padding-top: 20px;
    margin-top: 20px;
}

.label-contiguity {
    color: #9E9BA5;
    font-weight: 500;
    font-size: 12px;
}

.contiguity-item {
    display: flex;
    font-weight: 400;
    font-size: 14px;
    color: #B8B5BD;
    gap: 10px;
    align-items: center;
    padding-top: 20px;
}

.additional-links a {
    font-size: 14px;
    color: #F2ECD9;
}

.additional-links a:nth-child(1) {
    font-size: 12px;
    display: block;
}

.bottom-right-apartment .left {
    font-size: 12px;
    font-weight: 300;
}

.bottom-right-apartment .left a {
    font-size: 12px;
    color: #F2ECD9;
    margin-left: 10px;
}

.additional-links {
    text-align: right;
}

.price-history {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    justify-content: flex-end;
}

.price-history a {
    color: inherit;
    text-decoration: none;
}

.section--apartment-details .params {
    display: flex;
}

.section--apartment-details .right .column {
    justify-content: start;
}

.section--apartment-details .right .column .params {
    width: 40%;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.section--apartment-details .right .column .params .params-title {
    font-size: 12px;
    color: #9E9BA5;
    padding-bottom: 10px;
}
.section--apartment-details .right .column .params .params-value {
    font-size: 16px;
    color: #FFFFFF;
}

.status-link {
    margin-bottom: 20px;
    width: 40%;
}

.status-link .status-apartment {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 11px 20px;
}



.status-link a {
    color: #F2ECD9;
}

.section--apartment-form {
    gap: 15px;
    align-items: stretch;
    padding-top: 70px;
}

.section--apartment-form img {
    width: 70%;
    height: auto;
    object-fit: contain;
    display: block;
}

.section--apartment-form .left {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F1EEEB;
}

.content-form .header {
    color: #F2ECD9;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 500;
}

.section--apartment-form .left .btn {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #323139;
}

.section--apartment-form .left .btn svg {
    margin-right: 10px;
}

.section--apartment-form .right {
    width: 40%;
    background: #323139;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.section--apartment-form .right form {
    background: #323139;
    width: 100%;
}


.section--similar-apartments > .title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    color: #323139;
    margin-bottom: 10px;
}

.section--facilities button.xs {
    padding-top: 10px;
    padding-bottom: 10px;
}

.section--history-price-title .tabs {
    margin-top: 30px;
    justify-content: flex-start;
    max-width: 100%;
    gap: 15px;
    margin-bottom: 10px;
}


.section--history-price-title .tabs-container {
    display: block;
}







.history-price {
    width: 100%;
    border-collapse: collapse;
    font-family: inherit;
    background: #fff;
    margin-top: 30px;
    table-layout: fixed;
}

.history-price thead th {
    background: #F2ECD9;
    color: #323139;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 20px 24px;
    text-align: left;
}

.history-price tbody td {
    padding: 15px 25px;
    border-bottom: 1px solid #ececec;
    color: #2d2d36;
    font-size: 14px;
    vertical-align: middle;
    background: #fff;
}

.history-price__main-row.has-history {
    cursor: default;
}

.history-price__price-cell {
    font-size: 28px;
    font-weight: 700;
    white-space: nowrap;
}

.history-price__date-cell {
    white-space: nowrap;
}

.history-price__date-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.history-price__toggle {
    width: 36px;
    height: 15px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.history-price__chevron {
    width: 6px;
    height: 6px;
    border-right: 2px solid #6f6f76;
    border-bottom: 2px solid #6f6f76;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -4px;
}

.history-price__main-row.is-open .history-price__chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.history-price__details-row > td {
    padding: 0;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

/* szerokości kolumn głównej tabeli */
.history-price th:nth-child(1),
.history-price td:nth-child(1) {
    width: 16%;
}

.history-price th:nth-child(2),
.history-price td:nth-child(2) {
    width: 16%;
}

.history-price th:nth-child(3),
.history-price td:nth-child(3) {
    width: 26%;
}

.history-price th:nth-child(4),
.history-price td:nth-child(4) {
    width: 26%;
}

.history-price th:nth-child(5),
.history-price td:nth-child(5) {
    width: 16%;
}

/* wewnętrzna tabela historii */
.history-price__subtable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.history-price__subtable td {
    padding: 12px 25px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
    color: #7a7a82;
    background: #fff;
    vertical-align: middle;
}

.history-price__subtable tr:last-child td {
    border-bottom: none;
}

.history-price__subtable td:nth-child(1) {
    width: 16%;
}

.history-price__subtable td:nth-child(2) {
    width: 16%;
}

.history-price__subtable td:nth-child(3) {
    width: 26%;
}

.history-price__subtable td:nth-child(4) {
    width: 27%;
    white-space: nowrap;
}

.history-price__subtable td:nth-child(5) {
    width: 14%;
    white-space: nowrap;
}

.history-price__subtable-price,
.history-price__subtable-date {
    color: #7a7a82;
}

.history-price__subtable tr:last-child td {
    padding-bottom: 0;
}

.history-price__subtable tr:first-child td {
    padding-top: 0;
}

.mobile-form {
    display: none;
}

.section--promo .right {
    max-width: 450px;
}

.section--dark .right {
    max-width: 450px;
}

.header-details {
    font-size: 14px;
    color: #B8B5BD;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.header-details svg {
    margin-right: 10px;
}


.pum-theme-2602 .pum-content + .pum-close, .pum-theme-motyw-domyslny .pum-content + .pum-close {
    background-color: #323138 !important;
}

.pum-theme-2602, .pum-theme-motyw-domyslny {
    background-color: rgba(0, 0, 0, 0.44) !important;
}