/* Simple Company Multilingual frontend styles */
.scm-language-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.scm-language-switcher__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    /* border: 1px solid currentColor;
    border-radius: 999px; */
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.2;
    /* background: #fff; */
}

.scm-language-switcher__link.is-current {
    font-weight: 700;
    text-decoration: underline;
}

.scm-language-switcher__link--disabled {
    opacity: .45;
    cursor: not-allowed;
    pointer-events: none;
}

.scm-language-flag-image {
    width: 1.25em;
    height: 1.25em;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    flex: 0 0 auto;
}

.scm-language-flag-text {
    line-height: 1;
}

.scm-language-status {
    font-size: 11px;
    opacity: .72;
    margin-left: 2px;
}

.scm-floating-language-switcher {
    position: fixed;
    z-index: 9999;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.scm-floating-language-switcher .scm-language-switcher {
    margin: 0;
}

.scm-floating-language-switcher--bottom-right {
    right: 16px;
    bottom: 16px;
}

.scm-floating-language-switcher--bottom-left {
    left: 16px;
    bottom: 16px;
}

.scm-floating-language-switcher--top-right {
    right: 16px;
    top: 16px;
}

.scm-floating-language-switcher--top-left {
    left: 16px;
    top: 16px;
}