:root {
    --lde-primary-color: #32B7B7;
}

body.lde-frontpage-switch-locked {
    overflow: hidden !important;
}

#lde-frontpage-switch-overlay {
    position: fixed;
    inset: 0;
    z-index: 101;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
}

#lde-frontpage-switch-overlay.active {
    display: block;
}

#lde-frontpage-switch-overlay .inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 550px) {
    #lde-frontpage-switch-overlay .inner {
        padding: 4rem 1.3rem;
    }
}

#lde-frontpage-switch-tiles {
    position: static;
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    overflow: hidden;
}

@media screen and (max-width: 550px) {
    #lde-frontpage-switch-tiles {
        grid-template-columns: 1fr;
        height: auto;
        border-radius: 0.6rem;
        gap: 1rem 0;
    }
}

#lde-frontpage-switch-tiles .lde-frontpage-switch-tile {
    width: 100%;
    height: 100%;
    color: #333;
    text-decoration: none;
    background-color: var(--lde-primary-color);
    border-radius: 1rem;
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-tile {
        padding: 0 2rem;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.lde-frontpage-switch-tile .content {
    width: 67.9%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 2.8rem auto;
    transition: transform 0.2s ease-out;
    color: #fff;
}

.lde-frontpage-switch-tile:hover .content {
    transform: scale(1.05);
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-tile .content {
        margin: 0;
        width: auto;
        padding: 1.625rem 0;
    }
}

.lde-frontpage-switch-tile .content strong {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.1rem;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 1400px) {
    .lde-frontpage-switch-tile .content strong {
        font-size: 2.6vw;
    }
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-tile .content strong {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
}

.lde-frontpage-switch-tile .content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.1rem;
    min-height: 4.5em;
}

@media screen and (max-width: 1400px) {
    .lde-frontpage-switch-tile .content ul {
        font-size: 1.7vw;
    }
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-tile .content ul {
        font-size: 0.8rem;
    }
}

.lde-frontpage-switch-tile .content li {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-tile .content li {
        line-height: 1.2em;
        margin-bottom: 0.4em;
    }
}

.lde-frontpage-switch-tile-checkmark {
    display: block;
    width: auto;
    height: 11px;
    margin-right: 11px;
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-tile-checkmark {
        width: 1em;
        margin-right: 0.6em;
    }
}

.lde-frontpage-switch-cta {
    color: var(--lde-primary-color);
    background-color: #fff;
    margin-top: 1.1rem;
    padding: 0.5em 2em;
    border-radius: 0.5em;
    display: inline-block;
    font-weight: bold;
    font-size: 1rem;
}

@media screen and (max-width: 550px) {
    .lde-frontpage-switch-cta {
        font-size: 0.6rem;
        margin-top: 1rem;
    }
}