


.contact-form {
    position: relative;
}

.contact-form__multimedia {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: -2;
}

.contact-form__multimedia img, .contact-form__multimedia video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-accent-element {
    width: 50%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: var(--color);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

@media screen and (max-width: 600px){
    .contact-accent-element {
        width: 100%;
        height: 100%;
        clip-path: none;
    }
}

.contact-form .global__header::before {
    background-color: white;
}
.contact-form .global__header {
    color: white;
    max-width: 700px;
}
.contact-form__text {
    max-width: 700px;
    color: white;
    margin-bottom: 20px;
}
.contact-form .global__header strong {
    color: white;
}
.step-indicator {
    display: flex;
    gap: 5px;
    align-items: center;
    color: white;
}
.step-indicator.current {
    font-weight: 700;
}
.steps-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
}
.step-connector {
    height: 1px;
    width: 100%;
    background: white;
    flex: 1;
}
.step-content {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}
.field-wrapper {
    display: grid;
}
.wizard-container {
    max-width: 600px;
}

.field-wrapper input {
    padding: 7px 10px;
    border-radius: 0;
    border: 1px solid black;
    transition-duration: 0.2s;
}
.field-wrapper input:focus {
    outline: none;
    border-color: white;
    background-color: var(--cta);
    color: white !important;
}

.field-wrapper input:focus::placeholder {
    color: white;
}

.contact-form .form-field:not([data-field-type="checkbox"]) .field-label {
    display: none;
}
.field-error {
    color: white;
}
.wizard-footer {
    margin-top: 20px;
}
.wizard-navigation {
    display: flex;
    justify-content: end !important;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.step-counter {
    display: none;
}
.wizard-navigation.btn-group-wrapper .btn {
    border-radius: 0;
}
.wizard-navigation.btn-group-wrapper {
    margin-top: 0;
}

.wizard-container .btn--su-se-uni-global {
    border-color: white;
    color: white;
}
.oferty-slider-container {
    max-width: 600px;
    width: min(600px, calc(100vw - (2 * var(--padding))));
}

.oferta-tile {
    padding: 20px;
    border: 1px solid white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
    flex-direction: column;
    cursor: pointer;
        background: #14a1e83d;
}
.oferta-icon img {
    height: 40px;
    width: auto;
    -webkit-filter: grayscale(1) brightness(0) invert(1);
    filter: grayscale(1) brightness(0) invert(1);
}
.oferta-tile.selected .oferta-icon img {
    -webkit-filter: none;
    filter: none;
}
.oferta-tile h4 {
    text-align: center;    
        font-weight: 500;
        margin: 0;
        margin-top: 10px;
}
.oferta-tile:not(.selected) h4 {
    font-size: var(--font-size-normal);
    color: white !important;
}

.oferta-tile.selected {
    background-color: white;
}


.selected-offers-display {
    display: none;
}
.custom-checkbox {
    height: 20px;
    width: 20px;
    display: block;
    border: 1px solid white;
}
.checkbox-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
}
.checkbox-wrapper input {
    display: none;
}
.checkbox-wrapper input:checked + .custom-checkbox {
    background-color: white;
    
}
.checkbox-wrapper {
    color: white;
}
[data-field-type=checkbox] label:not(.checkbox-label, .custom-checkbox) {
    display: none;
}
.form-popup {
    position: fixed;
    top: 0;
    transition-duration: 0.2s;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000075;
    z-index: 10000;
    padding: var(--padding);
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-content {
    padding: 20px;
    background: white;
    max-width: 500px;
}

.popup-footer {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}
button.btn.btn-primary.popup-close {
    border: 1px solid black;
    border-radius: 0;
    background: transparent;
}


@media screen and (max-width: 992px){
    
}
.success-message {
    display: none;
}
.error-message {
    color: white;
    margin-top: 10px;
}
button.btn.btn--su-se-uni-global.btn-next {
    background: transparent;
    border: 1px solid white;
}

.contact-form__content-container .global__header-wrapper {
    border-color: white;
}