.full-width-tiles {
    position: relative;
}

.full-width-tiles__multimedia {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: -2;
}

.full-width-tiles__multimedia img, .full-width-tiles__multimedia video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-width-tiles-accent-element {
    width: 40%;
    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){
    .full-width-tiles-accent-element {
        width: 100%;
        height: 100%;
        clip-path: none;
    }
}
.full-width-tiles .global__header::before {
    background-color: white;
}
.full-width-tiles .global__header {
    color: white;
    max-width: 700px;
}
.full-width-tiles .global__header strong {
    color: white;
}
.full-width-tiles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    color: white;
}
.full-width-tiles__tile.current {
    font-weight: 700;
}
.full-width-tiles__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.full-width-tiles__tile {
    height: 1px;
    width: 100%;
    background: white;
    flex: 1;
}
.full-width-tiles__tile-content {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}
.full-width-tiles__wrapper {
    display: grid;
}

.full-width-tiles__wrapper input {
    padding: 7px 10px;
    border-radius: 0;
    border: 1px solid black;
    transition-duration: 0.2s;
}
.full-width-tiles__wrapper input:focus {
    outline: none;
    border-color: white;
    background-color: var(--color);
    color: white !important;
}

.full-width-tiles__wrapper input:focus::placeholder {
    color: white;
}


.full-width-tiles__error {
    color: white;
}
.full-width-tiles__buttons {
    margin-top: 20px;
}
.full-width-tiles__buttons {
    display: flex;
    justify-content: start !important;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.full-width-tiles__buttons.btn-group-wrapper .btn {
    border-radius: 0;
}
.full-width-tiles__buttons.btn-group-wrapper {
    margin-top: 0;
}

.full-width-tiles .btn--su-se-uni-global {
    border-color: white;
    color: white;
}


.full-width-tiles__tile {
    padding: 20px;
    border: 1px solid white !important;
    display: flex;
    justify-content: start;
    height: 100%;
    align-items: start;
    flex-direction: column;
    background: white;
}
.full-width-tiles__tile-icon img {
    height: 40px;
    width: auto;
    -webkit-filter: grayscale(1) brightness(0) invert(1);
    filter: grayscale(1) brightness(0) invert(1);
}
.full-width-tiles__tile.selected .full-width-tiles__tile-icon img {
    -webkit-filter: none;
    filter: none;
}
.full-width-tiles__tile h4 {
    text-align: center;    
    font-weight: 500;
    margin: 0;
    margin-top: 10px;
}

.full-width-tiles__tile.selected {
    background-color: white;
}
span.custom-checkbox {
    height: 20px;
    width: 20px;
    display: block;
    border: 1px solid white;
}
.checkbox-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
}

.checkbox-wrapper input:checked + span.custom-checkbox {
    background-color: white;
}
.checkbox-wrapper {
    color: white;
}
.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){
    
}


.full-width-tiles .global__mini-header {
    color: white;
}

.full-width-tiles .global__mini-header::before {
    background-color: white;
}
.full-width-tiles__tile-header {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}
.full-width-tiles__icon-number {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color);
}


.full-width-tiles__tile-title {
    color: black;
    font-size: var(--font-size-h6);
    line-height: 120%;
    font-weight: 500;
}
.full-width-tiles__tile-text {
    margin-top: 10px;
    font-size: var(--font-size-normal);
    color: black;
}
h3.full-width-tiles__cta-title {
    margin: 0;
    color: white;
    font-weight: 500;
    font-size: var(--font-size-h6);
}
.full-width-tiles__cta-text {
    margin-top: 20px;
    color: white;
}
.full-width-tiles__cta-button.global__button-wrapper a.global__button {
    display: block;
    padding: 12px 20px;
    background: white;
    color: black;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 500;
    font-size: var(--font-size-normal);
}

@media screen and (max-width: 1400px){
    .full-width-tiles__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px){
    .full-width-tiles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px){
    .full-width-tiles__grid {
        grid-template-columns: 1fr;
    }
}
.full-width-tiles__tile--cta {
    background: #ffffff00;
    backdrop-filter: blur(5px);
}
.full-width-tiles__buttons.global__button-wrapper .global__button {
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: var(--font-size-normal);
}
.full-width-tiles__content-container .global__header-wrapper {
    padding-left: 20px;
    border-left: 10px solid white;
}