.footer-menu-mobile,
[id^="trustbadge"] {
    display: none !important;
}
.b2b-mandoria--hero {
	width: 100%;
	background: linear-gradient(135deg, #332d6f 0%, #110f27 60%);
	color: #fff;
	padding: 80px 40px;
    min-height: 100vh;
    align-content: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.b2b-mandoria--hero:before {
    --border_space: 60px;
    content: "";
    border: 4px solid #8a7450;
    border-radius: 30px;
    width: calc(100% - var(--border_space));
    height: calc(100% - var(--border_space));
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.7;
    z-index: 0;
}

.b2b-mandoria .b2b-mandoria--bg {
  position: absolute;
  inset: 34px;
  border-radius: 26px;
  z-index: 0;
  opacity: .75;
  animation: scroll-bg 110s linear infinite;
}

.b2b-mandoria .b2b-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
    margin: 15px 0px;
}

.b2b-mandoria .b2b-mandoria_after_buttons {
    text-align: center;
}

.b2b-panel--actions > .wrapper {
    position: sticky;
    top: 28px;
}

.b2b-mandoria .b2b-panel--form a {
    color: #9e813a;
}
.b2b-mandoria .b2b-panel--actions a {
    background-color: #fff;
    background: #fff;
    padding: unset;
    border: unset;
    color: #110f27;
}

.b2b-mandoria > * {
    position: relative;
    z-index: 1;
}
.b2b-mandoria__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 0px;
    align-items: stretch;
}

.b2b-panel__header {
    overflow: hidden;
}

/* center the inner content only when form is hidden */
.b2b-mandoria:not(.b2b-mandoria--show-form) .b2b-mandoria__inner {
    justify-content: center;
}

.b2b-panel {
	background: #fff;
	color: #111;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(2,6,23,0.45);
}
.b2b-mandoria,
.b2b-mandoria__inner,
.b2b-panel {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.b2b-panel--actions {
    --panel_size: 360px;
	width: var(--panel_size);
	flex: 0 0 var(--panel_size);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	justify-content: center; /* vertically center when form is hidden */
}

.b2b-mandoria .page-description {
    color: #696e7e;
    margin-bottom: 2em;
    font-size: .95rem;
}

.b2b-mandoria .b2b-brand {
    text-align: center;
}
.b2b-mandoria .b2b-brand h2 { margin: 0 0 6px 0; font-size: 22px; }
.b2b-mandoria .b2b-brand p { margin: 0; color: #6b7280; }

.b2b-buttons { display: flex; flex-direction: column; gap: 12px; }

.b2b-panel--form {
	/* when hidden: don't take horizontal space so actions can be centered */
	flex: 0 0 0;
	width: 0;
	min-height: 0;
	padding: 0;
	position: relative;
	transition: transform 360ms ease, opacity 240ms ease, visibility 0s linear 360ms;
	/* hidden by default */
	transform: translateX(40px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* When an active form is shown, slide actions panel left and show form */
.b2b-mandoria--show-form .b2b-mandoria__inner { justify-content: flex-start; }
.b2b-mandoria--show-form .b2b-panel--actions { transform: translateX(7px); opacity: 0.95; justify-content: flex-start; }
.b2b-mandoria--show-form .b2b-panel--form {
	/* restore sizing when visible */
	flex: 1 1 auto;
	width: auto;
	min-height: 320px;
	padding: 28px;
	transform: translateX(-7px);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

/* Inputs and buttons inside form */
.b2b-panel--form form {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.b2b-panel--form form > * {
    flex: 100%;
}
.b2b-panel--form form > .col {
    flex: 1;
}
.b2b-panel--form input, .b2b-panel--form select, .b2b-panel--form textarea {
    width: 100%;
    padding: 10px !important;
    border: 1px solid #e5e7eb;
    border-radius: 6px !important;
    box-sizing: border-box;
    background-color: transparent;
}
.b2b-panel--form input:not([type="checkbox"]) {
    height: 46px;
}
.b2b-panel--form input:focus,
.b2b-panel--form select:focus,
.b2b-panel--form textarea:focus {
    border-color: #332d6f;
    outline: none;
}

.b2b-panel--form label { display: block; font-weight: 600; }

.b2b-mandoria button {
    position: relative;
    background: linear-gradient(135deg, #332d6f 0%, #110f27 60%);
    color: #fff;
    border-color: currentColor;
    border-radius: 10px;
    background-color: #110f27;
    border-width: 1px;
}

.b2b-panel--actions .b2b-buttons #b2b-get-join {
    background: linear-gradient(135deg, #c19c43 0%, #9e813a 60%);
}

.b2b-mandoria button[type="submit"] {
    background: #8f593c;
}
.b2b-mandoria button[type="submit"]:hover {
    background: #693c24;
}
.b2b-mandoria button:hover {
    background: #110f27;
    box-shadow: inset 0 0 8px #ffffff;
}
.b2b-mandoria .b2b-back-button {
    background: #ffffff;
    color: black;
    border: unset;
    padding: 5px;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 40px;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.b2b-mandoria .b2b-back-button:hover {
    background: white;
    box-shadow: inset 2px 0px 2px #100e2742;
}

.b2b-mandoria .b2b-back-button .text {
    position: absolute;
    top: -5px;
    transform: translateY(-100%);
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    background-color: #ffffff;
    display: block;
    width: 50px;
    border-radius: 5px;
}
.b2b-mandoria .b2b-back-button:hover .text {
    visibility: visible;
}

.b2b-mandoria .b2b-back-button .icon {
    transform: rotate(45deg);
}

.b2b-mandoria label {
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    gap: 10px;
    width: 100%;
}

.b2b-mandoria label > span {
    flex: 100%;
}
.b2b-mandoria .checkbox > * {
    flex: none;
    width: auto;
}
.b2b-mandoria .b2b-nip-lookup-wrapper label {
    column-gap: 0px;
}

.b2b-mandoria .b2b-nip-lookup-wrapper input,
.b2b-mandoria input[name="buildingnumber"],
.b2b-mandoria input[name="apartmentnumber"] {
    flex: 1;
}

.b2b-mandoria button#nipGetData {
    background: #fff;
    color: currentColor;
    border-color: #e5e7eb;
    margin-left: -6px;
    border-radius: 0px 10px 10px 0px;
    border-left: none;
    font-size: 14px;
}
.b2b-mandoria button#nipGetData::before {
    content: "";
    border-left: 1px solid #ececec;
    height: 60%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.b2b-mandoria button#nipGetData:hover {
    background-color: #efefef;
    box-shadow: inset 0 0 8px #c8c8c8;
}

.b2b-panel--form .contactAccount {
    margin-top: 1em;
}

.b2b-panel--form  .lost-password {
    text-align: right;
}
.b2b-panel--form  .lost-password a {
    cursor: pointer;
    color: #111;
}
.b2b-panel--form  .lost-password a:hover {
    color: #332d6f;
    text-decoration: underline;
}

@media (min-width: 860.1px) {
    .b2b-mandoria--show-form .b2b-panel--actions  {
        margin: 20px 0;
    }
}
/* Responsive - mobile: stack panels and use scroll-to behavior */
@media (max-width: 860px) {
	.b2b-mandoria__inner { flex-direction: column;margin: 0 15px;}
	.b2b-panel--actions { width: 100%; flex: none; }
	.b2b-panel--form { width: 100%; }
	.b2b-mandoria--hero { padding: 50px 10px 20px; }
    .b2b-mandoria--hero:before {
        --border_space: 20px;
    }
    .b2b-mandoria .b2b-mandoria--bg {
        inset: 14px;
    }
	.b2b-panel { box-shadow: none; border-radius: 6px;}
	.b2b-mandoria--show-form .b2b-panel--actions { transform: translate(0px, 7px);padding: 28px 24px 48px;border-radius: 20px 20px 0px 0px;}
	.b2b-mandoria--show-form .b2b-panel--form { transform: translate(0px, -7px);border-radius:0px 0px 20px 20px;}
    .b2b-panel--form form > .col {
        flex: 1 100%;
        display: flex;
    }
    .b2b-mandoria .b2b-back-button {
        right: 0;
        top: 0;
        margin: 0 auto;
        transform: translate(-15px, -50%);
    }
    .b2b-mandoria .b2b-back-button:hover {
        box-shadow: inset 0px 0px 2px #100e2742;
    }
    .b2b-mandoria .b2b-back-button .icon {
        transform: rotate(180deg);
    }
    .b2b-mandoria .b2b-back-button .text {
        visibility: visible;
        top: unset;
        bottom: unset;
        left: unset;
        right: 8px;
        transform: translate(100%, 0px);
    }
}
@media (min-width: 860px) and (max-width: 920px) {
	.b2b-mandoria--show-form .b2b-panel--actions {
        --panel_size: 240px;
	}
}

/* Small tweaks */
.b2b-panel--actions .b2b-buttons .button + .button { margin-top: 6px; }


@keyframes scroll-bg {
  from {
    background-position: 0 bottom, center;
  }
  to {
    background-position: -100vw bottom, center;
  }
}