.equal-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.equal-height-card > .sd-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
    "meta  badge"
    "links links";
    gap: 0.75rem 1.5rem;
    align-items: start;
}

footer .footer-meta {
    grid-area: meta;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

footer .footer-meta .footer-build-info {
    opacity: 0.75;
    font-size: 0.875em;
}

footer .footer-badge {
    grid-area: badge;
    justify-self: end;
    align-self: start;
    flex-shrink: 0;
}

footer .footer-badge img {
    display: block;
}

footer .footer-links {
    grid-area: links;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid currentColor;
    opacity: 0.85;
}

footer .footer-links a {
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    footer .footer-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
        "meta"
        "badge"
        "links";
    }

    footer .footer-badge {
        justify-self: start;
    }
}

.mcl-lang-switcher {
    height: 90%;
    position: relative;
    border-top: 3px solid var(--mcl-search-bar-top-bg);
    border-left: 3px solid var(--mcl-search-bar-side-bg);
    background-color: var(--mcl-search-bar-bg-fallback);
    background-image: var(--mcl-search-bar-bg-gradient);
    width: 32px;
    margin-right: 10px;
    cursor: pointer;
}

.mcl-lang-switcher::before {
    display: block;
    content: " ";
    position: absolute;
    right: 0;
    top: -3px;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 3px 0 0 4px;
    border-color: var(--mcl-search-bar-trispective-right) transparent transparent transparent;
}

.mcl-lang-switcher::after {
    display: block;
    content: " ";
    position: absolute;
    bottom: 0;
    left: -3px;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 0 3px 3px 0;
    border-color: transparent transparent var(--mcl-search-bar-trispective-left) transparent;
}

.mcl-lang-switcher > ion-icon {
    color: var(--mcl-text-color);
    background-color: var(--mcl-search-bar-bg-bleacher);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    padding: 5px;
    pointer-events: none;
}

.mcl-lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100%);
    right: 0;
    z-index: 500;
    min-width: max-content;
    padding: 3px 0;
    border: var(--mcl-block-border);
    background: var(--mcl-block-bg);
}

.mcl-lang-switcher:focus-within > .mcl-lang-dropdown {
    display: block;
}

.mcl-lang-option {
    display: block;
    padding: 4px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;

    color: var(--mcl-text-color);
    text-decoration: none;
}

.mcl-lang-option:visited {
    color: var(--mcl-text-color);
}

.mcl-lang-option.current {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.seed-convert-widget > div > p > label > input {
    width: 100%;
}
