:root {
    --lux-bg-dark: #04152f;

    --lux-bg-blue: #0b4fb4;

    --lux-bg-light: #8bd8ff;

    --lux-primary: #59d2ff;

    --lux-primary-2: #0c63ff;

    --lux-white: #ffffff;

    --lux-text: #eef7ff;

    --lux-text-soft: #b8d7ee;

    --lux-border: rgba(255, 255, 255, 0.08);

    --lux-glass: rgba(255, 255, 255, 0.08);

    --lux-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

    --lux-radius-xl: 40px;

    --lux-radius-lg: 30px;

    --lux-radius-md: 22px;

    --lux-radius-sm: 16px;
}

/*
|--------------------------------------------------------------------------
| RESET
|--------------------------------------------------------------------------
*/

* {
    margin: 0;

    padding: 0;

    box-sizing: border-box;
}

html,
body {
    width: 100%;

    overflow-x: hidden;
}

body {
    font-family: "Google Sans", sans-serif;

    color: var(--lux-text);

    background: linear-gradient(135deg, #04152f 0%, #0c57c3 48%, #8fdcff 100%);

    min-height: 100vh;
}

img,
video {
    max-width: 100%;

    display: block;
}

a {
    text-decoration: none;

    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.lux-container {
    width: min(1400px, 92%);

    margin: auto;
}

/*
|--------------------------------------------------------------------------
| GLASS
|--------------------------------------------------------------------------
*/

.lux-glass {
    position: relative;

    overflow: hidden;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    padding: 20px;

    border: 1px solid var(--lux-border);

    box-shadow: var(--lux-shadow);

    border-radius: var(--lux-radius-xl);
    z-index: 0;
}

.lux-glass::before {
    position: absolute;

    inset: 0;

    z-index: 0;

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-radius: inherit;
}

.lux-glass > * {
    position: relative;

    z-index: 2;
}

/*
|--------------------------------------------------------------------------
| TYPOGRAPHY
|--------------------------------------------------------------------------
*/

.lux-title-xl {
    font-family: "Google Sans", serif;

    font-size: 88px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: 0.02em;
}

.lux-title-lg {
    font-family: "Google Sans", serif;

    font-size: 58px;

    line-height: 1.08;

    font-weight: 800;
}

.lux-title-md {
    font-family: "Google Sans", serif;

    font-size: 38px;

    font-weight: 800;
}

.lux-text {
    font-size: 16px;

    line-height: 1.9;

    color: var(--lux-text-soft);
}

.lux-label {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.28em;
}

/*
|--------------------------------------------------------------------------
| TEXT EFFECTS
|--------------------------------------------------------------------------
*/

.lux-text-glow {
    color: #a8ebff;

    text-shadow:
        0 0 12px rgba(168, 235, 255, 0.9),
        0 0 30px rgba(168, 235, 255, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.35);
}

.lux-text-gradient {
    background: linear-gradient(135deg, #ffffff, #8fe8ff, #4bc7ff);
    background-clip: text;
    align-items: center;
    justify-content: center;
    -webkit-text-fill-color: transparent;
}

.lux-text-3d {
    color: #bff3ff;

    text-shadow:
        0 1px 0 #8fe8ff,
        0 2px 0 #7adfff,
        0 3px 0 #57d0ff,
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 0, 0, 0.25);
}

.lux-text-shine {
    background: linear-gradient(90deg, #fff, #8ee7ff, #fff);

    background-size: 200% auto;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: luxShine 4s linear infinite;
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.lux-btn {
    position: relative;

    overflow: hidden;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: max-content;

    height: 56px;

    padding: 0 28px;

    border: none;

    cursor: pointer;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 800;

    transition: 0.35s;
}

.lux-btn-primary {
    background: linear-gradient(135deg, #66d9ff, #0c63ff);

    color: white;

    box-shadow: 0 20px 40px rgba(12, 99, 255, 0.32);
}

.lux-btn-dark {
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;
}

.lux-btn-del {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgb(140, 1, 1);
    color: white;
}

.lux-btn-edit {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgb(185, 148, 1);
    color: white;
}

.lux-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );

    transform: translateX(-120%);
}

.lux-btn:hover::before {
    animation: luxBtnShine 1s linear;
}

.lux-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

/*
|--------------------------------------------------------------------------
| CARDS
|--------------------------------------------------------------------------
*/

.lux-card {
    position: relative;

    overflow: hidden;

    padding: 34px;

    border-radius: var(--lux-radius-xl);

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.04)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: var(--lux-shadow);

    transition: 0.4s;
}

.lux-card:hover {
    transform: translateY(-6px);
}

.lux-card-title {
    margin-bottom: 18px;
}

/*
|--------------------------------------------------------------------------
| INPUTS
|--------------------------------------------------------------------------
*/

.lux-input,
.lux-select,
.lux-textarea {
    width:100%;

    min-height: 60px;

    padding: 18px 22px;

    border: none;

    outline: none;

    border-radius: var(--lux-radius-md);

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;

    font-size: 15px;

    transition: 0.3s;
}

.lux-textarea {
    resize: none;

    min-height: 160px;
}

.lux-input:focus,
.lux-select:focus,
.lux-textarea:focus {
    background: #0b4fb4;
    border: 1px solid rgba(115, 223, 255, 0.6);
    max-width:100%;
    box-shadow: 0 0 0 4px rgba(115, 223, 255, 0.12);
}

.lux-input::placeholder,
.lux-textarea::placeholder {
    color: #bdd8ef;
}

/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/
.mt {
    margin-top: 6px;
}
.mt-1 {
    margin-top: 16px;
}
.mt-2 {
    margin-top: 24px;
}
.mt-3 {
    margin-top: 30px;
}
.mb {
    margin-bottom: 6px;
}
.mb-1 {
    margin-bottom: 16px;
}
.mb-2 {
    margin-bottom: 24px;
}
.mb-3 {
    margin-bottom: 30px;
}

.lux-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lux-flex {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lux-flex-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.lux-flex-3 {
    display: flex;
    flex-direction: flex;
    justify-content: space-between;
    gap: 16px;
}

.lux-flex-4 {
    display: flex;
    flex-direction: flex;
    justify-content: space-between;
    gap: 16px;
}

.lux-bg {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 10px 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.lux-grid {
    display: grid;
    gap: 24px;
}

.lux-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lux-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lux-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/*
|--------------------------------------------------------------------------
| TABLE
|--------------------------------------------------------------------------
*/

.lux-table-wrap {
    overflow: auto;

    border-radius: 30px;
}

.lux-table {
    width: 100%;

    border-collapse: collapse;
}

.lux-table th {
    padding: 20px;

    background: rgba(255, 255, 255, 0.08);

    font-size: 12px;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.lux-table td {
    padding: 20px;

    background: rgba(255, 255, 255, 0.04);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/*
|--------------------------------------------------------------------------
| BADGE
|--------------------------------------------------------------------------
*/

.lux-badge {
    min-width: 110px;

    height: 40px;

    padding: 0 18px;

    border-radius: 999px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 800;
}

.lux-badge.success {
    background: rgba(34, 197, 94, 0.16);

    color: #95ffb8;
}

.lux-badge.warning {
    background: rgba(245, 158, 11, 0.16);

    color: #ffd98e;
}

.lux-badge.danger {
    background: rgba(239, 68, 68, 0.16);

    color: #ffabab;
}

/*
|--------------------------------------------------------------------------
| ALERT
|--------------------------------------------------------------------------
*/

.lux-alert {
    padding: 20px 22px;

    border-radius: 24px;

    margin-bottom: 20px;

    font-weight: 700;
}

.lux-alert.info {
    background: rgba(11, 245, 241, 0.16);
}

.lux-alert.success {
    background: rgba(34, 197, 94, 0.16);
}

.lux-alert.error {
    background: rgba(239, 68, 68, 0.16);
}

.lux-alert.warning {
    background: rgba(245, 158, 11, 0.16);
}

/*
|--------------------------------------------------------------------------
| MOBILE BAR
|--------------------------------------------------------------------------
*/

.lux-mobilebar {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 76px;

    z-index: 999;

    display: none;

    grid-template-columns: repeat(5, 1fr);

    background: rgba(3, 18, 42, 0.96);

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-mobilebar a {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    font-size: 11px;

    font-weight: 700;

    color: white;
}

/*
|--------------------------------------------------------------------------
| ANIMATIONS
|--------------------------------------------------------------------------
*/

@keyframes luxBtnShine {
    100% {
        transform: translateX(120%);
    }
}

@keyframes luxShine {
    to {
        background-position: 200% center;
    }
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 1200px) {
    .lux-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .lux-grid-3,
    .lux-grid-2 {
        grid-template-columns: 1fr;
    }

    .lux-title-xl {
        font-size: 64px;
    }

    .lux-title-lg {
        font-size: 44px;
    }

    .lux-mobilebar {
        display: grid;
    }
}

@media (max-width: 768px) {
    .lux-title-xl {
        font-size: 48px;
    }

    .lux-title-lg {
        font-size: 34px;
    }

    .lux-card {
        padding: 24px;
    }

    .lux-btn {
        width: max-content;
    }

    .lux-grid-4 {
        grid-template-columns: 1fr;
    }
}

/*
|--------------------------------------------------------------------------
| STAFF POS SYSTEM
|--------------------------------------------------------------------------
*/

.lux-pos-page {
    position: relative;
}

.lux-pos-search-wrap {
    margin-bottom: 28px;
}

.lux-pos-search-form {
    width: 100%;
}

.lux-pos-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lux-pos-left {
    min-width: 0;
}

.lux-pos-category-bar {
    margin-bottom: 26px;
}

.lux-pos-category-select {
    width: 100%;
}

.lux-pos-category-block {
    top: 0;
}

.lux-pos-category-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;
}

.lux-pos-category-header span {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    letter-spacing: 0.18em;

    font-weight: 700;

    color: var(--primary-blue);
}

.lux-pos-category-header h2 {
    font-size: 38px;

    color: #fff;

    line-height: 1;
}

.lux-pos-services-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.lux-pos-service-card {
    position: relative;

    overflow: hidden;

    border-radius: 34px;

    min-height: 300px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);

    transition: 0.35s;
}

.lux-pos-service-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.lux-pos-service-media {
    position: absolute;

    inset: 0;
}

.lux-pos-service-media img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.lux-pos-service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12),
        rgba(0, 0, 0, 0.78)
    );
}

.lux-pos-price-top {
    display: flex;
    top: 0;
    align-items: flex-start;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.14);
}

.lux-pos-price-top small {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.lux-pos-price-top h4 {
    font-size: 32px;

    color: white;

    line-height: 1.1;

    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.lux-pos-qty-box {
    width: 60px;
    padding: 0px;
    border-radius: 22px;
    text-align: center;
    justify-content: center;
}

.lux-pos-qty-box input {
    width: 100%;

    height: 60px;

    border: none;

    border-radius: 14px;

    background: #cbd7e9(255, 255, 255, 0.9);

    text-align: center;

    font-size: 22px;

    font-weight: 800;

    color: #04152f;
}

.lux-pos-service-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;
}

.lux-pos-member-price {
    display: inline-flex;

    align-items: center;

    min-height: 40px;

    padding: 0 16px;

    border-radius: 999px;

    background: linear-gradient(135deg, #38bdf8, #2563eb);

    font-size: 14px;

    font-weight: 800;

    margin-bottom: 12px;

    color: white;

    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

.lux-pos-service-bottom h3 {
    font-size: 28px;

    line-height: 1.2;

    color: white;

    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.lux-pos-cart-sidebar {
    position: sticky;
}

.lux-pos-cart-card {
    padding: 28px;
}

.lux-pos-cart-header {
    margin-bottom: 16px;
}

.lux-pos-cart-header span {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    letter-spacing: 0.16em;

    color: var(--primary-blue);
}

.lux-pos-cart-header h2 {
    font-size: 40px;

    color: white;
}

.lux-pos-cart-items {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 10px;
}

.lux-pos-cart-item {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 16px;

    padding: 16px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lux-pos-cart-item strong {
    color: white;
}

.lux-pos-cart-empty {
    color: rgba(255, 255, 255, 0.6);
}

.lux-pos-cart-footer {
    padding-top: 16px;
}

.lux-pos-payment-row,
.lux-pos-total-row,
.lux-pos-grand-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;
}

.lux-pos-payment-select {
    height: 46px;

    border: none;

    border-radius: 14px;

    padding: 0 14px;

    font-weight: 700;

    background: white;
}

.lux-pos-grand-total {
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 26px;

    font-weight: 800;

    color: #7dd3fc;
}

.lux-pos-action-group {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 24px;
}

.lux-btn-group {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0 16px;
}

.lux-btn-soft {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.08)
    ) !important;

    color: white !important;
}

.lux-pos-user-text {
    font-size: 28px !important;
}

@media (max-width: 1400px) {
    .lux-pos-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .lux-pos-layout {
        grid-template-columns: 1fr;
    }

    .lux-pos-cart-sidebar {
        position: relative;

        top: auto;
    }
}

@media (max-width: 768px) {
    .lux-pos-category-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }

    .lux-pos-category-header h2 {
        font-size: 28px;
    }

    .lux-pos-service-card {
        min-height: 340px;
    }

    .lux-pos-price-top h4 {
        font-size: 22px;
    }

    .lux-pos-service-bottom h3 {
        font-size: 22px;
    }

    .lux-pos-action-group {
        grid-template-columns: 1fr;
    }

    .lux-pos-user-grid {
        grid-template-columns: 1fr !important;
    }
}

.hidden {
    display: none !important;
}

.lux-form-container {
    max-width: 900px;
}

.lux-upload-box {
    position: relative;

    width: 100%;

    height: 220px;

    border-radius: 28px;

    overflow: hidden;

    background: var(--lux-glass);

    border: 2px dashed rgba(191, 46, 30, 0.18);

    cursor: pointer;
}

.lux-file-input {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    opacity: 0;

    z-index: 5;

    cursor: pointer;
}

.lux-upload-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    text-align: center;

    padding: 20px;
}

.lux-upload-placeholder span {
    font-size: 16px;

    font-weight: 700;

    color: var(--primary-red);
}

.lux-upload-placeholder small {
    font-size: 13px;

    color: var(--text-soft);
}

.lux-upload-preview {
    position: absolute;

    inset: 0;
}

.lux-upload-preview img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

/*
|--------------------------------------------------------------------------
| DANOI TOAST
|--------------------------------------------------------------------------
*/

.lux-toast {
    position: fixed;

    top: 30px;

    right: 30px;

    z-index: 99999;

    width: 420px;

    max-width: calc(100vw - 40px);

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 22px;

    border-radius: 28px;

    overflow: hidden;

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

    animation: luxToastShow 0.5s ease;
}

.lux-toast::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.04)
    );
}

.lux-toast > * {
    position: relative;

    z-index: 2;
}

.lux-toast-icon {
    flex-shrink: 0;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    font-weight: 900;
}

.lux-toast-title {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    font-weight: 800;

    color: white;

    margin-bottom: 4px;
}

.lux-toast-message {
    font-size: 14px;

    line-height: 1.6;

    color: #dbeafe;
}

.lux-toast-content {
    flex: 1;
}

.lux-toast-close {
    border: none;

    background: none;

    cursor: pointer;

    color: white;

    font-size: 24px;

    opacity: 0.7;
}

.lux-toast-close:hover {
    opacity: 1;
}

/*
|--------------------------------------------------------------------------
| SUCCESS
|--------------------------------------------------------------------------
*/

.lux-toast-success {
    background: linear-gradient(
        135deg,
        rgba(22, 163, 74, 0.55),
        rgba(34, 197, 94, 0.25)
    );
}

.lux-toast-success .lux-toast-icon {
    background: rgba(255, 255, 255, 0.14);

    color: #b7ffcf;
}

/*
|--------------------------------------------------------------------------
| WARNING
|--------------------------------------------------------------------------
*/

.lux-toast-warning {
    background: linear-gradient(
        135deg,
        rgba(217, 119, 6, 0.6),
        rgba(245, 158, 11, 0.25)
    );
}

.lux-toast-warning .lux-toast-icon {
    background: rgba(255, 255, 255, 0.14);

    color: #ffe0a4;
}

/*
|--------------------------------------------------------------------------
| ERROR
|--------------------------------------------------------------------------
*/

.lux-toast-error {
    background: linear-gradient(
        135deg,
        rgba(185, 28, 28, 0.65),
        rgba(239, 68, 68, 0.25)
    );
}

.lux-toast-error .lux-toast-icon {
    background: rgba(255, 255, 255, 0.14);

    color: #ffd0d0;
}

/*
|--------------------------------------------------------------------------
| ANIMATION
|--------------------------------------------------------------------------
*/

.lux-toast-hide {
    animation: luxToastHide 0.4s forwards;
}

@keyframes luxToastShow {
    from {
        opacity: 0;

        transform: translateX(60px) scale(0.95);
    }

    to {
        opacity: 1;

        transform: translateX(0) scale(1);
    }
}

@keyframes luxToastHide {
    to {
        opacity: 0;

        transform: translateX(60px) scale(0.95);
    }
}

@media (max-width: 768px) {
    .lux-toast {
        top: 20px;

        right: 20px;

        left: 20px;

        width: auto;
    }
}

@media(max-width:768px){
    .lux-header-actions{
        display:flex;
    }

    .lux-header-actions .lux-btn:not(.mobile-login-btn){
        display:none;
    }

    .mobile-login-btn{
        display:inline-flex;
        height:38px;
        padding:0 18px;
        font-size:13px;
    }
}


.lux-content-detail h1,
.lux-content-detail h2,
.lux-content-detail h3 {
    margin: 24px 0 12px;
    line-height: 1.35;
}

.lux-content-detail p {
    margin: 0 0 16px;
    line-height: 1.85;
}

.lux-content-detail ul,
.lux-content-detail ol {
    margin: 0 0 18px 24px;
}

.lux-content-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.lux-content-detail table {
    width: 100%;
    border-collapse: collapse;
    margin: 22px 0;
}

.lux-content-detail th,
.lux-content-detail td {
    border: 1px solid rgba(255,255,255,.18);
    padding: 10px 12px;
}
