.cy-language-switch {
    position: relative;
    z-index: 1200;
    flex: 0 0 auto;
    font-family: Arial, "Microsoft YaHei", "Myanmar Text", "Noto Sans Myanmar", sans-serif;
}

.cy-language-switch-button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 11px;
    color: #fff;
    background: rgba(125, 211, 252, 0.12);
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 11px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.cy-language-switch-button:hover,
.cy-language-switch-button:focus-visible,
.cy-language-switch.is-open .cy-language-switch-button {
    background: rgba(45, 212, 191, 0.2);
    border-color: rgba(94, 234, 212, 0.5);
    outline: none;
}

.cy-language-switch-button:active {
    transform: translateY(1px);
}

.cy-language-globe {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.cy-language-chevron {
    width: 12px;
    height: 12px;
    transition: transform .18s ease;
}

.cy-language-switch.is-open .cy-language-chevron {
    transform: rotate(180deg);
}

.cy-language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    min-width: 168px;
    padding: 7px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(6, 21, 38, 0.22);
    color: #102033;
    z-index: 1400;
}

.cy-topbar.cy-language-menu-open {
    overflow: visible;
}

.cy-language-switch.is-open .cy-language-menu {
    display: block;
}

.cy-language-option {
    display: grid;
    width: 100%;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    color: #183047;
    background: transparent;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
}

.cy-language-option:hover,
.cy-language-option:focus-visible {
    background: #eefaff;
    outline: none;
}

.cy-language-option.is-active {
    color: #075985;
    background: #e6f8ff;
}

.cy-language-check {
    color: #0f766e;
    font-size: 16px;
    font-weight: 950;
    text-align: center;
}

.cy-language-switch--floating {
    position: fixed;
    top: 14px;
    right: 16px;
    z-index: 9999;
}

.cy-language-switch--floating .cy-language-switch-button {
    color: #0c4a6e;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(14, 165, 233, 0.28);
    box-shadow: 0 10px 28px rgba(8, 47, 73, 0.14);
}

html.cy-lang-my body,
html.cy-lang-my button,
html.cy-lang-my input,
html.cy-lang-my select,
html.cy-lang-my textarea {
    font-family: "Myanmar Text", "Noto Sans Myanmar", "Pyidaungsu", Arial, sans-serif !important;
}

html.cy-lang-my body {
    line-height: 1.55;
}

html.cy-lang-my .table-responsive,
html.cy-lang-my .cy-table-wrap {
    max-width: 100%;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
}

html.cy-lang-my .cy-label-en,
html.cy-lang-my [data-cy-i18n-paired-en="1"],
html.cy-lang-my .cy-payment-en {
    display: none !important;
}

html.cy-lang-my button,
html.cy-lang-my .btn,
html.cy-lang-my .cy-btn,
html.cy-lang-my label,
html.cy-lang-my th,
html.cy-lang-my .card-label {
    line-height: 1.45;
}

@media (max-width: 760px) {
    .cy-language-switch-button {
        width: 38px;
        min-width: 38px;
        padding: 0;
    }

    .cy-language-current,
    .cy-language-chevron {
        display: none;
    }

    .cy-language-menu {
        min-width: 158px;
    }

    .cy-language-switch--floating .cy-language-switch-button {
        width: auto;
        min-width: 42px;
        padding: 0 10px;
    }

    .cy-language-switch--floating .cy-language-current,
    .cy-language-switch--floating .cy-language-chevron {
        display: inline;
    }
}

@media print {
    .cy-language-switch {
        display: none !important;
    }
}
