:root {
--ml-primary: #0f172a;
--ml-primary-dark: #020617;
--ml-primary-light: #f1f5f9;
--ml-accent: #111827;
--ml-accent-dark: #000000;
--ml-accent-light: #e2e8f0;
--ml-success: #22c55e;
--ml-success-light: #dcfce7;
--ml-warning: #f59e0b;
--ml-warning-light: #fef3c7;
--ml-danger: #ef4444;
--ml-danger-light: #fee2e2;
--ml-info: #3b82f6;
--ml-info-light: #eff6ff;
--ml-text: #1e293b;
--ml-text-muted: #64748b;
--ml-text-light: #94a3b8;
--ml-border: #e2e8f0;
--ml-border-light: #f8fafc;
--ml-border-hover: #cbd5e1;
--ml-bg: #f8fafc;
--ml-bg-white: #ffffff;
--ml-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
--ml-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03);
--ml-radius: 6px;
--ml-radius-lg: 8px;
} html::-webkit-scrollbar {
width: 8px;
height: 8px;
}
html::-webkit-scrollbar-track {
background: transparent;
}
html::-webkit-scrollbar-thumb {
background: var(--ml-border-hover);
border-radius: 4px;
}
html::-webkit-scrollbar-thumb:hover {
background: var(--ml-text-light);
}
body {
scrollbar-width: thin;
scrollbar-color: var(--ml-border-hover) transparent;
}
.ml-admin-container {
background: var(--ml-bg);
margin: 0 0 0 -20px;
padding-top: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--ml-text);
}
.ml-admin-container * {
box-sizing: border-box;
}
.ml-wrap {
max-width: 1400px;
margin: 0 auto;
padding: 40px 30px;
min-height: 90vh;
}
.ml-wrap-notice {
max-width: 1400px;
margin: 0 auto;
padding: 40px 30px;
}
.ml-wrap-regular{
padding-right: 30px;
} .ml-page-title, .ml-card-title, .ml-section-title, .ml-stat-value { letter-spacing: -0.03em;
} .ml-topbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 40px;
background: transparent;
max-width: 1400px;
margin: 0 auto;
margin-top: 10px;
}
.ml-branding {
display: flex;
align-items: center;
gap: 12px;
}
.ml-logo-icon {
width: 32px;
height: 32px;
color: #22c55e;
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-branding:hover .ml-logo-icon {
transform: rotate(10deg) scale(1.05);
}
.ml-brand-text { font-size: 20px;
font-weight: 700;
color: var(--ml-text);
letter-spacing: -0.02em;
display: flex;
align-items: center;
gap: 10px;
}
.ml-version-badge {
display: inline-flex;
align-items: center;
padding: 3px 10px;
font-size: 11px;
font-weight: 700;
color: #fff;
background: var(--ml-primary);
border-radius: 20px;
letter-spacing: 0.02em;
line-height: 1;
} .ml-nav-pills {
display: flex;
gap: 4px;
background: rgba(255,255,255,0.8);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
padding: 5px; border-radius: var(--ml-radius-lg);
border: 1px solid var(--ml-border);
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.ml-nav-pill {
padding: 9px 18px;
font-size: 13px;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--ml-text-muted); border-radius: var(--ml-radius);
text-decoration: none;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.ml-nav-pill:hover, .ml-nav-pill:focus {
color: var(--ml-text);
background: rgba(0,0,0,0.04);
outline: none;
box-shadow: none;
}
.ml-nav-pill.active {
background: var(--ml-text);
color: #ffffff;
box-shadow: 0 2px 8px rgba(0,0,0,0.12);
font-weight: 600;
} .ml-topbar-actions {
display: flex;
align-items: center;
gap: 16px;
}
.ml-topbar-alert {
position: relative;
width: 38px;
height: 38px;
background: #ffffff;
border-radius: 50%;
border: 1px solid var(--ml-border);
display: flex;
align-items: center;
justify-content: center;
color: var(--ml-text-muted);
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
cursor: pointer;
transition: all 0.2s ease;
}
.ml-topbar-alert:hover {
transform: scale(1.05);
border-color: var(--ml-border-hover);
color: var(--ml-text);
}
.ml-topbar-alert svg {
width: 18px;
height: 18px;
}
.ml-topbar-alert-dot {
position: absolute;
top: 8px;
right: 9px;
width: 7px;
height: 7px;
background: var(--ml-danger);
border-radius: 50%;
border: 2px solid #ffffff;
}
.ml-topbar-profile img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ml-topbar-profile:hover img {
transform: scale(1.05);
box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.ml-nav {
background: var(--ml-bg-white);
border-bottom: 1px solid var(--ml-border);
padding: 8px 24px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ml-nav-inner {
padding-left: 30px;
max-width: 1400px;
margin: 0 auto;
display: flex;
gap: 4px;
}
.ml-nav-item {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
font-size: 13.5px;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--ml-text-light);
text-decoration: none;
border-radius: var(--radius, 6px);
transition: all 0.15s ease;
position: relative;
white-space: nowrap;
}
.ml-nav-item:hover, .ml-nav-item:focus {
color: var(--ml-text);
text-decoration: none;
outline: none;
box-shadow: none;
background: var(--ml-primary-light);
}
.ml-nav-item.active {
color: var(--ml-bg-white);
background: var(--ml-primary);
box-shadow: 0 1px 3px rgba(15, 23, 42, 0.15);
}
.ml-nav-item svg {
width: 16px;
height: 16px;
opacity: 0.6;
transition: opacity 0.15s;
flex-shrink: 0;
}
.ml-nav-item:hover svg {
opacity: 0.85;
}
.ml-nav-item.active svg {
opacity: 1;
}
.ml-page-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 28px 32px;
gap: 16px;
background: var(--ml-bg-white);
border: 1px solid var(--ml-border);
border-radius: var(--ml-radius-lg);
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
margin-bottom: 24px;
}
.ml-page-title { font-size: 24px;
font-weight: 700;
color: var(--ml-text);
margin: 0 0 4px 0;
line-height: 1.2;
letter-spacing: -0.02em;
}
.ml-page-subtitle {
font-size: 14px;
color: var(--ml-text-muted);
margin: 0;
font-weight: 400;
}
.ml-card {
background: var(--ml-bg-white);
border: 1px solid var(--ml-border);
border-radius: var(--ml-radius-lg);
box-shadow: 0 1px 3px rgba(0,0,0,0.04);
margin-bottom: 24px;
overflow: hidden;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px -8px rgba(0,0,0,0.08);
}
.ml-card-header {
padding: 28px 28px 20px;
border-bottom: 1px solid var(--ml-border);
display: flex;
align-items: center;
justify-content: space-between;
}
.ml-card-title { font-size: 18px;
font-weight: 700;
color: var(--ml-text);
margin: 0;
letter-spacing: -0.01em;
}
.ml-card-body {
padding: 0 28px 28px;
}
.ml-restricted-menu-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.ml-restricted-menu-card {
display: flex;
align-items: flex-start;
gap: 16px;
padding: 16px 20px;
border: 1px solid var(--ml-border);
border-radius: 14px;
background: #ffffff;
cursor: pointer;
box-shadow: 0 1px 2px rgba(0,0,0,0.03);
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-restricted-menu-card:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
border-color: var(--ml-border-hover);
}
.ml-restricted-menu-card input {
margin: 2px 0 0;
}
.ml-restricted-menu-card__body {
display: flex;
flex-direction: column;
gap: 4px;
}
.ml-restricted-menu-card__body strong {
color: var(--ml-text);
font-size: 14px;
line-height: 1.3;
}
.ml-restricted-menu-card__body span {
color: var(--ml-text-muted);
font-size: 12px;
line-height: 1.45;
}
.ml-restricted-url-textarea {
width: 100%;
min-height: 120px;
resize: vertical;
background: #fff;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 12px;
line-height: 1.5;
}
@media (max-width: 900px) {
.ml-restricted-menu-grid {
grid-template-columns: 1fr;
}
} .ml-filters-bar {
display: flex;
align-items: flex-end;
flex-wrap: wrap;
gap: 24px;
padding: 20px 28px;
background: var(--ml-bg);
border-bottom: 1px solid var(--ml-border);
border-radius: var(--ml-radius-lg) var(--ml-radius-lg) 0 0;
} .ml-filterbar-search {
position: relative;
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
min-width: 260px;
}
.ml-filterbar-search-icon {
position: absolute;
left: 12px;
bottom: 12px;
width: 16px;
height: 16px;
color: var(--ml-text-light);
pointer-events: none;
z-index: 1;
}
.ml-filterbar-input {
width: 100%;
padding: 10px 10px 10px 36px;
font-size: 14px;
color: var(--ml-text);
background: #fff;
border: 1.5px solid var(--ml-border);
border-radius: 10px;
font-family: inherit;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
outline: none;
box-shadow: none;
}
.ml-filterbar-input:focus {
border-color: var(--ml-accent);
box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.06);
}
.ml-filterbar-clear-input {
position: absolute;
right: 10px;
bottom: 10px;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
background: #f1f5f9;
border: none;
border-radius: 50%;
cursor: pointer;
color: var(--ml-text-muted);
transition: all 0.15s ease;
}
.ml-filterbar-clear-input:hover {
background: #e2e8f0;
color: var(--ml-text);
} .ml-filterbar-label {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
color: var(--ml-text-muted);
text-transform: uppercase;
letter-spacing: 0.03em;
}
.ml-filterbar-label svg {
width: 14px;
height: 14px;
color: var(--ml-text-light);
} .ml-filterbar-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.ml-filterbar-select {
padding: 10px 32px 10px 12px;
font-size: 14px;
font-weight: 500;
color: var(--ml-text);
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center, #fff;
background-size: 14px;
border: 1.5px solid var(--ml-border);
border-radius: 10px;
cursor: pointer;
outline: none;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
min-width: 140px;
}
.ml-filterbar-select:focus {
border-color: var(--ml-accent);
box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.06);
} .ml-filterbar-daterange {
display: flex;
align-items: center;
gap: 8px;
}
.ml-filterbar-date {
padding: 10px 12px;
font-size: 14px;
color: var(--ml-text);
background: #fff;
border: 1.5px solid var(--ml-border);
border-radius: 10px;
outline: none;
width: 150px;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-filterbar-date:focus {
border-color: var(--ml-accent);
box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.06);
}
.ml-filterbar-date-arrow {
color: var(--ml-text-light);
} .ml-filterbar-actions {
display: flex;
gap: 10px;
margin-left: auto;
align-items: center;
}
.ml-filterbar-apply {
padding: 8px 20px;
font-size: 13px;
font-weight: 600;
color: #fff;
background: var(--ml-primary);
border: 1.5px solid var(--ml-primary);
border-radius: 10px;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
display: inline-flex;
align-items: center;
justify-content: center;
}
.ml-filterbar-apply:hover {
background: var(--ml-primary-dark);
border-color: var(--ml-primary-dark);
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ml-filterbar-reset {
padding: 8px 16px;
font-size: 13px;
font-weight: 500;
color: var(--ml-text-muted);
background: #fff;
border: 1.5px solid var(--ml-border);
border-radius: 10px;
text-decoration: none;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
display: inline-flex;
align-items: center;
justify-content: center;
}
.ml-filterbar-reset:hover {
color: var(--ml-danger);
border-color: var(--ml-danger);
background: var(--ml-danger-light);
}
@media (max-width: 1100px) {
.ml-filterbar-actions {
width: 100%;
margin-left: 0;
padding-top: 16px;
border-top: 1px solid var(--ml-border-light);
}
}
@media (max-width: 768px) {
.ml-filters-bar {
padding: 24px;
gap: 20px;
}
.ml-filterbar-search {
min-width: 100%;
}
.ml-filterbar-group {
width: 100%;
}
.ml-filterbar-date {
flex: 1;
}
}
.ml-filter-group {
display: flex;
flex-direction: column;
gap: 6px;
}
.ml-filter-group.ml-filter-search {
flex: 1;
min-width: 250px;
max-width: 400px;
}
.ml-filter-label {
font-size: 13px;
font-weight: 600;
color: var(--ml-text-muted);
}
.ml-admin-container .ml-input,
.ml-admin-container .ml-select,
.ml-admin-container .ml-textarea,
.ml-admin-container .ml-copy-input,
.ml-filter-input,
.ml-filter-select {
padding: 11px 16px !important;
font-size: 14px !important;
color: var(--ml-text) !important;
background-color: #ffffff !important;
border: 1px solid #cbd5e1 !important;
border-radius: 8px !important;
transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05) !important;
height: auto !important;
line-height: normal !important;
outline: none !important;
}
.ml-admin-container .ml-input:hover,
.ml-admin-container .ml-select:hover,
.ml-admin-container .ml-textarea:hover,
.ml-filter-input:hover {
border-color: #94a3b8 !important;
}
.ml-admin-container .ml-input:focus,
.ml-admin-container .ml-select:focus,
.ml-admin-container .ml-textarea:focus,
.ml-filter-input:focus {
border-color: #6366f1 !important;
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12), 0 1px 2px rgba(15, 23, 42, 0.05) !important;
background-color: #ffffff !important;
}
.ml-admin-container .ml-input:disabled,
.ml-admin-container .ml-select:disabled,
.ml-admin-container .ml-textarea:disabled {
background: #f8fafc !important;
border-color: var(--ml-border) !important;
color: var(--ml-text-light) !important;
cursor: not-allowed !important;
opacity: 0.7 !important;
} .ml-input-sm {
padding: 7px 10px !important;
font-size: 13px !important;
border-radius: 8px !important;
}
.ml-filter-input {
width: 100%;
}
.ml-filter-select {
min-width: 140px;
cursor: pointer;
} .ml-select {
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
background-repeat: no-repeat !important;
background-position: right 12px center !important;
background-size: 16px !important;
padding-right: 36px !important;
cursor: pointer;
min-height: 42px;
}
.ml-select:hover {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
}
.ml-select:focus {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
} select.ml-input {
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
background-repeat: no-repeat !important;
background-position: right 12px center !important;
background-size: 16px !important;
padding-right: 36px !important;
cursor: pointer;
min-height: 42px;
}
select.ml-input:hover {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
} .ml-select-sm {
padding: 6px 30px 6px 10px !important;
font-size: 13px !important;
border-radius: 8px !important;
min-height: 36px !important;
}
.ml-filter-date {
width: 150px;
}
.ml-filter-actions {
display: flex;
gap: 12px;
margin-left: auto;
}
.ml-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 10px 22px;
font-size: 14px;
font-weight: 600;  border-radius: var(--ml-radius);
cursor: pointer;
text-decoration: none;
border: 1px solid transparent;
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
line-height: 1.4;
position: relative;
white-space: nowrap;
}
.ml-btn svg {
width: 16px;
height: 16px;
flex-shrink: 0;
} .ml-btn-sm {
padding: 6px 14px !important;
font-size: 12px !important;
border-radius: 8px !important;
gap: 5px !important;
}
.ml-btn-sm svg {
width: 14px;
height: 14px;
}
.ml-btn-lg {
padding: 13px 28px !important;
font-size: 15px !important;
} .ml-btn-primary {
background: var(--ml-primary);
color: var(--ml-bg-white);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.ml-btn-primary:hover {
transform: translateY(-1px);
background: var(--ml-primary-dark);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
color: var(--ml-bg-white);
}
.ml-btn-primary:active {
transform: translateY(0);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} .ml-btn-secondary {
background: var(--ml-bg-white);
color: var(--ml-text);
border: 1px solid var(--ml-border);
}
.ml-btn-secondary:hover {
background: var(--ml-bg);
border-color: var(--ml-border-hover);
color: var(--ml-text);
} .ml-btn-danger {
background: var(--ml-danger);
color: #fff;
box-shadow: 0 1px 2px rgba(239, 68, 68, 0.2);
}
.ml-btn-danger:hover {
transform: translateY(-1px);
background: #dc2626;
box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
color: #fff;
} .ml-btn-outline {
background: transparent;
color: var(--ml-text);
border: 1.5px solid var(--ml-border);
box-shadow: none;
}
.ml-btn-outline:hover {
background: var(--ml-bg);
border-color: var(--ml-border-hover);
color: var(--ml-text);
} .ml-btn-outline-danger {
background: transparent;
color: var(--ml-danger);
border: 1.5px solid #fca5a5;
box-shadow: none;
}
.ml-btn-outline-danger:hover {
background: var(--ml-danger-light);
border-color: var(--ml-danger);
color: #b91c1c;
} .ml-btn-outline-primary {
background: transparent;
color: var(--ml-primary);
border: 1.5px solid var(--ml-primary-light);
box-shadow: none;
}
.ml-btn-outline-primary:hover {
background: var(--ml-primary-light);
border-color: var(--ml-primary);
color: var(--ml-primary-dark);
} .ml-btn:disabled,
.ml-btn[disabled],
.ml-btn-disabled {
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
} .ml-btn-loading {
pointer-events: none;
position: relative;
color: transparent !important;
}
.ml-btn-loading::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
border: 2px solid rgba(255,255,255,0.3);
border-top-color: #fff;
border-radius: 50%;
animation: ml-spin 0.6s linear infinite;
}
.ml-btn-secondary.ml-btn-loading::after,
.ml-btn-outline.ml-btn-loading::after {
border-color: rgba(0,0,0,0.1);
border-top-color: var(--ml-text);
}
@keyframes ml-spin {
to { transform: rotate(360deg); }
} .ml-btn-group {
display: flex;
justify-content: flex-end;
align-items: center;
gap: 12px;
padding: 16px 24px;
background: var(--ml-bg);
border-top: 1px solid var(--ml-border);
border-radius: 0 0 var(--ml-radius-lg) var(--ml-radius-lg);
}
.ml-btn-group--start {
justify-content: flex-start;
}
.ml-btn-group--between {
justify-content: space-between;
}
.ml-filter-btn {
padding: 10px 16px;
font-size: 14px;
font-weight: 600;
border-radius: var(--ml-radius);
cursor: pointer;
border: 1px solid var(--ml-border);
background: var(--ml-bg-white);
color: var(--ml-text);
transition: all 0.2s ease;
box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.ml-filter-btn:hover {
background: var(--ml-border-light);
border-color: var(--ml-border-hover);
}
.ml-filter-btn.ml-filter-clear {
color: var(--ml-danger);
border-color: transparent;
background: transparent;
box-shadow: none;
}
.ml-filter-btn.ml-filter-clear:hover {
background: var(--ml-danger-light);
}
.ml-filter-results {
font-size: 13px;
color: var(--ml-text-muted);
padding: 12px 24px;
background: var(--ml-bg-white);
border-bottom: 1px solid var(--ml-border);
font-weight: 500;
}
.ml-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
margin-bottom: 24px;
}
.ml-stat-card {
position: relative;
background: var(--ml-bg-white);
border: 1px solid var(--ml-border);
border-radius: 14px;
padding: 22px 24px;
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
display: flex;
flex-direction: column;
align-items: stretch;
text-align: left;
gap: 14px;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
cursor: pointer;
overflow: hidden;
isolation: isolate;
}
.ml-stat-card::before {
content: "";
position: absolute;
inset: 0 auto 0 0;
width: 3px;
background: var(--ml-text-light);
opacity: 0;
transition: opacity 0.25s ease, width 0.25s ease;
z-index: 1;
display: none;
}
.ml-stat-card:hover {
transform: translateY(-2px);
box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.12);
border-color: var(--ml-border-hover);
}
.ml-stat-card:hover::before {
display: none;
}
.ml-stat-card.active-filter {
border-color: var(--ml-primary);
background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.18);
}
.ml-stat-card.active-filter::before {
display: none;
}
.ml-stat-card .ml-stat-icon {
width: 38px;
height: 38px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-stat-card:hover .ml-stat-icon {
transform: rotate(-4deg) scale(1.05);
}
.ml-stat-card .ml-stat-icon svg {
width: 18px;
height: 18px;
stroke-width: 2.25;
}
.ml-stat-card-top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.ml-stat-card-label {
font-size: 12px;
font-weight: 600;
color: var(--ml-text-muted);
letter-spacing: 0.02em;
text-transform: uppercase;
}
.ml-stat-trend {
display: inline-flex;
align-items: center;
gap: 3px;
font-size: 11px;
font-weight: 600;
padding: 2px 7px;
border-radius: 999px;
background: var(--ml-bg);
color: var(--ml-text-muted);
border: 1px solid var(--ml-border);
}
.ml-stat-trend svg {
width: 10px;
height: 10px;
}
.ml-stat-trend.up {
color: #047857;
background: var(--ml-success-light);
border-color: rgba(4, 120, 87, 0.15);
}
.ml-stat-trend.down {
color: #b91c1c;
background: var(--ml-danger-light);
border-color: rgba(220, 38, 38, 0.15);
}
.ml-stat-content {
display: flex;
flex-direction: column;
justify-content: center;
gap: 2px;
margin-top: 2px;
}
.ml-stat-card.total .ml-stat-icon { background: #f1f5f9; color: #334155; }
.ml-stat-card.active .ml-stat-icon { background: var(--ml-success-light); color: #047857; }
.ml-stat-card.used .ml-stat-icon { background: #eff6ff; color: #1d4ed8; }
.ml-stat-card.expired .ml-stat-icon { background: var(--ml-warning-light); color: #b45309; }
.ml-stat-value {
font-size: 30px;
font-weight: 700;
color: var(--ml-text);
line-height: 1;
margin-bottom: 0;
letter-spacing: -0.025em;
font-variant-numeric: tabular-nums;
}
.ml-stat-label {
display: none;
}
.ml-stat-sublabel {
font-size: 12px;
color: var(--ml-text-muted);
font-weight: 500;
margin-top: 2px;
} .ml-stat-card-passkeys {
cursor: default;
}
.ml-stat-card-passkeys--keys .ml-stat-icon {
background: #eef2ff;
color: #4f46e5;
}
.ml-stat-card-passkeys--users .ml-stat-icon {
background: #ecfdf5;
color: #047857;
} .magic-login_page_magic-login-passkeys-report .ml-stats.ml-stats-passkeys {
grid-template-columns: 1fr 1fr;
} .magic-login_page_magic-login-banned-ips .ml-stats.ml-stats-banned-ips {
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
.magic-login_page_magic-login-banned-ips .ml-stats.ml-stats-banned-ips {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 640px) {
.magic-login_page_magic-login-passkeys-report .ml-stats.ml-stats-passkeys,
.magic-login_page_magic-login-banned-ips .ml-stats.ml-stats-banned-ips {
grid-template-columns: 1fr;
}
}
.ml-form-group {
margin-bottom: 20px;
}
.ml-form-label {
display: block;
font-size: 13px;
font-weight: 600;
color: var(--ml-text);
margin-bottom: 8px;
letter-spacing: -0.01em;
} .ml-form-description {
font-size: 12px;
color: var(--ml-text-muted);
margin-top: 6px;
line-height: 1.5;
} .ml-inline-form {
display: flex;
gap: 10px;
align-items: center;
}
.ml-textarea {
min-height: 120px;
resize: vertical;
}
.ml-checkbox-label {
display: flex;
align-items: flex-start;
gap: 10px;
font-size: 14px;
color: var(--ml-text);
cursor: pointer;
line-height: 1.5;
}
.ml-checkbox-label input[type="checkbox"], .ml-radio-label input[type="radio"] {
width: 18px;
height: 18px;
margin-top: 2px;
accent-color: var(--ml-primary);
cursor: pointer;
}
.ml-radio-label {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-size: 14px;
}
.ml-table-wrap {
overflow-x: auto;
} .ml-pagination {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 24px;
background: var(--ml-bg-white);
border-top: 1px solid var(--ml-border);
border-radius: 0 0 var(--ml-radius-lg) var(--ml-radius-lg);
}
.ml-pagination-info {
font-size: 13px;
color: var(--ml-text-muted);
font-weight: 500;
}
.ml-pagination-links .page-numbers,
.ml-pagination-links span.page-numbers,
.ml-pagination-links a.page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 34px;
height: 34px;
padding: 0 10px;
margin: 0 3px;
font-size: 13px;
font-weight: 600;
text-decoration: none !important;
color: var(--ml-text) !important;
background: var(--ml-bg-white) !important;
border: 1px solid var(--ml-border) !important; border-radius: var(--ml-radius) !important;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: none !important;
}
.ml-pagination-links a.page-numbers:hover {
border-color: var(--ml-primary) !important;
color: var(--ml-bg-white) !important;
background: var(--ml-primary) !important;
}
.ml-pagination-links .page-numbers.current {
background: var(--ml-primary) !important;
border-color: var(--ml-primary) !important;
color: #fff !important;
}
.ml-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
font-size: 14px;
background: #ffffff;
}
.ml-table th {
text-align: left;
padding: 14px 24px;
font-size: 11.5px;
font-weight: 600;
color: #64748b;
background: #fafbfc;
border-bottom: 1px solid var(--ml-border);
letter-spacing: 0.06em;
text-transform: uppercase;
white-space: nowrap;
}
.ml-table th:first-child {
border-top-left-radius: 0;
}
.ml-table th:last-child {
border-top-right-radius: 0;
}
.ml-table td {
padding: 18px 24px;
color: #334155;
border-bottom: 1px solid #f1f5f9;
vertical-align: middle;
}
.ml-table tbody tr {
transition: background-color 0.15s ease;
position: relative;
}
.ml-table tbody tr:hover td {
background-color: #fafbfc;
}
.ml-table tbody tr:last-child td {
border-bottom: none;
}
.ml-table tbody tr td {
transition: background-color 0.15s ease;
}
.ml-user-cell {
display: flex;
align-items: center;
gap: 12px;
}
.ml-user-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 13px;
color: #ffffff;
flex-shrink: 0;
letter-spacing: -0.01em;
text-transform: uppercase;
}
.ml-user-link {
text-decoration: none;
color: inherit;
display: block;
}
.ml-user-link:hover strong {
color: var(--ml-accent);
}
.ml-table code {
background: var(--ml-bg);
padding: 4px 8px;
border-radius: 4px;
font-size: 13px;
font-family: 'SF Mono', 'Fira Code', monospace;
border: 1px solid var(--ml-border);
color: var(--ml-accent);
}
.ml-status {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 11px;
border-radius: 999px;
font-size: 11.5px;
font-weight: 600;
text-transform: capitalize;
letter-spacing: 0.01em;
line-height: 1.4;
border: 1px solid transparent;
}
.ml-status::before {
content: "";
width: 6px;
height: 6px;
border-radius: 50%;
flex-shrink: 0;
background: currentColor;
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.ml-status-active {
background: #f0fdf4;
color: #047857;
border-color: rgba(4, 120, 87, 0.16);
}
.ml-status-active::before {
background: #10b981;
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.ml-status-used {
background: #eff6ff;
color: #1d4ed8;
border-color: rgba(29, 78, 216, 0.14);
}
.ml-status-used::before {
background: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}
.ml-status-expired {
background: #fffbeb;
color: #b45309;
border-color: rgba(180, 83, 9, 0.16);
}
.ml-status-expired::before {
background: #f59e0b;
box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}
.ml-status-revoked {
background: #fef2f2;
color: #b91c1c;
border-color: rgba(185, 28, 28, 0.14);
}
.ml-status-revoked::before {
background: #ef4444;
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}
.ml-table-timestamp {
display: flex;
flex-direction: column;
gap: 2px;
font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.ml-table-timestamp-primary {
color: var(--ml-text);
font-weight: 500;
font-size: 13.5px;
}
.ml-table-timestamp-secondary {
color: var(--ml-text-muted);
font-size: 12px;
}
.ml-actions {
display: flex;
gap: 6px;
align-items: center;
justify-content: flex-end;
}
.ml-action-link {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12.5px;
font-weight: 500;
padding: 6px 12px;
border-radius: 8px;
cursor: pointer;
border: 1px solid var(--ml-border);
background: #ffffff;
color: var(--ml-text-muted);
text-decoration: none;
transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
line-height: 1;
}
.ml-action-link svg {
width: 13px;
height: 13px;
stroke-width: 2;
}
.ml-action-link.revoke {
color: #b45309;
border-color: rgba(180, 83, 9, 0.18);
background: #fffbeb;
}
.ml-action-link.revoke:hover {
background: #fde68a;
color: #78350f;
border-color: rgba(180, 83, 9, 0.35);
}
.ml-action-link.delete {
color: #b91c1c;
border-color: rgba(185, 28, 28, 0.18);
background: #fef2f2;
}
.ml-action-link.delete:hover {
background: #fecaca;
color: #7f1d1d;
border-color: rgba(185, 28, 28, 0.35);
}
.ml-notice {
display: flex;
align-items: center;
gap: 16px;
padding: 14px 20px;
border-radius: 14px;
margin-bottom: 24px;
font-size: 14px;
font-weight: 500;
line-height: 1.5;
animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
border: none;
}
@keyframes slideDown {
from { opacity: 0; transform: translateY(-8px); }
to { opacity: 1; transform: translateY(0); }
}
.ml-notice-success {
background: var(--ml-success-light);
color: #065f46;
}
.ml-notice-error {
background: var(--ml-danger-light);
color: #7f1d1d;
}
.ml-notice-icon {
width: 20px;
height: 20px;
flex-shrink: 0;
}
.ml-copy-box {
display: flex;
gap: 10px;
}
.ml-copy-input {
flex: 1;
padding: 10px 14px;
font-size: 13px;
border: 1px solid var(--ml-border);
background: var(--ml-bg);
border-radius: 10px;
color: var(--ml-text);
font-family: 'SF Mono', 'Fira Code', monospace;
}
.ml-settings-section {
padding: 32px 24px;
border-bottom: 1px solid var(--ml-border);
background: var(--ml-bg-white);
}
.ml-settings-section:first-child {
border-radius: var(--ml-radius-lg) var(--ml-radius-lg) 0 0;
}
.ml-settings-section:last-child {
border-bottom: none;
border-radius: 0 0 var(--ml-radius-lg) var(--ml-radius-lg);
}
.ml-section-title { font-size: 16px;
font-weight: 700;
color: var(--ml-primary);
margin: 0 0 8px;
display: flex;
align-items: center;
gap: 10px;
margin-top: 20px !important;
letter-spacing: -0.01em;
}
.ml-empty-state {
text-align: center;
padding: 64px 24px;
}
.ml-empty-state-icon {
width: 56px;
height: 56px;
margin: 0 auto 20px;
color: #cbd5e1;
border-radius: 16px;
background: #f8fafc;
padding: 14px;
display: flex;
align-items: center;
justify-content: center;
}
.ml-empty-state-title { font-size: 18px;
font-weight: 700;
color: var(--ml-text);
margin-bottom: 8px;
}
.ml-empty-state-text {
font-size: 14px;
color: var(--ml-text-muted);
margin-bottom: 24px;
line-height: 1.6;
}
.ml-modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(15, 23, 42, 0.5);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 100000;
align-items: center;
justify-content: center;
padding: 20px;
animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.ml-modal-overlay.active {
display: flex;
}
.ml-modal {
background: var(--ml-bg-white);
border-radius: 20px;
max-width: 440px;
width: 100%;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0,0,0,0.04);
transform: scale(0.96) translateY(8px);
opacity: 0;
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}
.ml-modal-overlay.active .ml-modal {
transform: scale(1) translateY(0);
opacity: 1;
}
.ml-modal-header {
padding: 24px 24px 0;
display: flex;
align-items: center;
gap: 16px;
}
.ml-modal-icon {
width: 48px;
height: 48px;
border-radius: 14px;
background: var(--ml-danger-light);
display: flex;
align-items: center;
justify-content: center;
color: var(--ml-danger);
flex-shrink: 0;
}
.ml-modal-icon svg {
width: 22px;
height: 22px;
}
.ml-modal-title { font-size: 18px;
font-weight: 700;
color: var(--ml-text);
margin: 0;
letter-spacing: -0.01em;
}
.ml-modal-body {
padding: 20px 24px 24px;
color: #475569;
font-size: 14px;
line-height: 1.6;
}
.ml-modal-body p {
margin: 0 0 12px;
line-height: 1.7;
}
.ml-modal-body p:last-child {
margin-bottom: 0;
}
.ml-modal-body ul {
margin: 0 0 12px;
padding: 0;
list-style: none;
}
.ml-modal-body ul:last-child {
margin-bottom: 0;
}
.ml-modal-body ul li {
position: relative;
padding: 0 0 6px 18px;
line-height: 1.6;
color: #475569;
}
.ml-modal-body ul li:last-child {
padding-bottom: 0;
}
.ml-modal-body ul li::before {
content: '';
position: absolute;
left: 2px;
top: 9px;
width: 6px;
height: 6px;
background: #3b82f6;
border-radius: 50%;
flex-shrink: 0;
}
.ml-modal-actions {
padding: 16px 24px;
background: #f8fafc;
border-top: 1px solid #e2e8f0;
border-radius: 0 0 20px 20px;
display: flex;
gap: 12px;
justify-content: flex-end;
}
.ml-two-col {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 24px;
margin-bottom: 24px;
align-items: flex-start;
}
.ml-help-card {
position: sticky;
top: 50px;
}
.ml-code-editor-wrap {
border: 1px solid var(--ml-border);
border-radius: 14px;
overflow: hidden;
} .ml-settings-section > div {
display: flex;
gap: 32px;
align-items: flex-start;
}
.ml-settings-section > div > div:first-child {
flex: 0 0 260px;
}
.ml-settings-section > div > div:last-child {
flex: 1;
min-width: 0;
background: #ffffff;
padding: 28px;
border-radius: 16px;
border: 1px solid var(--ml-border);
box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.ml-settings-section .ml-form-group {
background: transparent !important;
padding: 0 !important;
border: none !important;
}
.ml-color-input {
width: 120px !important;
}
.ml-color-picker .wp-picker-container,
.ml-color-picker .wp-picker-container .wp-picker-input-wrap {
max-width: 100%;
}
.ml-color-picker .wp-picker-container .wp-color-result.button,
.ml-color-picker .wp-picker-container .wp-picker-input-wrap input[type="text"],
.ml-color-picker .wp-picker-container .wp-picker-input-wrap input[type="button"] {
border-color: var(--ml-border) !important;
box-shadow: none !important;
}
.ml-color-picker .wp-picker-container .wp-color-result.button:hover,
.ml-color-picker .wp-picker-container .wp-picker-input-wrap input[type="text"]:hover,
.ml-color-picker .wp-picker-container .wp-picker-input-wrap input[type="button"]:hover {
border-color: var(--ml-border-hover) !important;
}
.ml-color-picker .wp-picker-container .wp-color-result.button:focus,
.ml-color-picker .wp-picker-container .wp-picker-input-wrap input[type="text"]:focus,
.ml-color-picker .wp-picker-container .wp-picker-input-wrap input[type="button"]:focus {
border-color: var(--ml-primary) !important;
box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08) !important;
}
.ml-url-input-section,
#ml-bg-external-url {
width: 100%;
}
#ml-bg-external-url {
display: block;
}
div[data-lastpass-icon-root] {
display: none !important;
width: 0 !important;
height: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
}
.toplevel_page_magic-login .ml-wrap-regular {
max-width: 1280px;
}
.toplevel_page_magic-login .ml-links-hero {
align-items: center;
padding: 30px 32px;
border-color: #dbe3ea;
background: #ffffff;
box-shadow: 0 18px 45px -34px rgba(15, 23, 42, 0.45);
}
.toplevel_page_magic-login .ml-links-hero .ml-page-title {
font-size: 28px;
margin-bottom: 6px;
}
.toplevel_page_magic-login .ml-links-hero .ml-page-subtitle {
max-width: 560px;
line-height: 1.55;
}
.toplevel_page_magic-login .ml-links-hero-meta {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 16px;
}
.toplevel_page_magic-login .ml-links-hero-meta span {
display: inline-flex;
align-items: center;
min-height: 28px;
padding: 5px 10px;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: var(--ml-radius);
background: rgba(255, 255, 255, 0.74);
color: #475569;
font-size: 12px;
font-weight: 700;
}
.toplevel_page_magic-login .ml-links-hero .ml-btn-primary {
min-height: 42px;
padding-inline: 18px;
box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.75);
}
.toplevel_page_magic-login .ml-stats {
gap: 16px;
margin-bottom: 20px;
}
.toplevel_page_magic-login .ml-stat-card {
position: relative;
min-height: 124px;
padding: 22px 24px;
gap: 12px;
overflow: hidden;
border-color: var(--ml-border);
}
.toplevel_page_magic-login .ml-stat-card.active-filter {
background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
border-color: var(--ml-primary);
box-shadow: 0 12px 28px -24px rgba(15, 23, 42, 0.5);
}
.toplevel_page_magic-login .ml-stat-card .ml-stat-icon {
width: 38px;
height: 38px;
border-radius: 10px;
}
.toplevel_page_magic-login .ml-stat-value {
font-size: 28px;
}
.toplevel_page_magic-login .ml-stat-card-label {
color: #64748b;
}
.toplevel_page_magic-login .ml-card {
border-color: #dbe3ea;
box-shadow: 0 20px 48px -38px rgba(15, 23, 42, 0.55);
}
.toplevel_page_magic-login .ml-card:hover {
transform: none;
}
.toplevel_page_magic-login .ml-filters-bar {
align-items: flex-end;
gap: 16px;
padding: 18px;
background: #ffffff;
}
.toplevel_page_magic-login .ml-filterbar-label {
color: #475569;
}
.toplevel_page_magic-login .ml-filterbar-input,
.toplevel_page_magic-login .ml-filterbar-select,
.toplevel_page_magic-login .ml-filterbar-date {
min-height: 40px;
border-radius: var(--ml-radius);
border: 1px solid #cfd8e3;
}
.toplevel_page_magic-login .ml-filterbar-input {
padding-left: 38px;
}
.toplevel_page_magic-login .ml-filterbar-search-icon {
bottom: 12px;
}
.toplevel_page_magic-login .ml-filterbar-apply,
.toplevel_page_magic-login .ml-filterbar-reset {
min-height: 40px;
border-radius: var(--ml-radius);
}
.toplevel_page_magic-login .ml-filter-results {
padding: 12px 18px;
background: #f8fafc;
}
.toplevel_page_magic-login .ml-table-wrap {
background: #ffffff;
}
.toplevel_page_magic-login .ml-table th {
padding: 13px 22px;
background: #fafbfc;
color: #475569;
font-size: 11px;
letter-spacing: 0.07em;
}
.toplevel_page_magic-login .ml-table td {
padding: 16px 22px;
border-bottom-color: #f1f5f9;
}
.toplevel_page_magic-login .ml-table tbody tr:hover td {
background-color: #fafbfc;
}
.toplevel_page_magic-login .ml-user-cell {
display: flex;
align-items: center;
gap: 12px;
}
.toplevel_page_magic-login .ml-user-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 13px;
color: #ffffff;
flex-shrink: 0;
background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
}
.toplevel_page_magic-login .ml-user-link {
display: flex;
flex-direction: column;
gap: 2px;
width: max-content;
max-width: 100%;
}
.toplevel_page_magic-login .ml-user-email {
color: #0f172a;
font-weight: 600;
overflow-wrap: anywhere;
font-size: 13.5px;
line-height: 1.3;
}
.toplevel_page_magic-login .ml-user-login {
color: #94a3b8;
font-size: 12px;
font-weight: 500;
}
.toplevel_page_magic-login .ml-status {
min-height: 24px;
padding: 3px 10px;
font-size: 11.5px;
}
.toplevel_page_magic-login .ml-actions {
justify-content: flex-end;
flex-wrap: wrap;
gap: 6px;
}
.toplevel_page_magic-login .ml-action-link {
min-height: 30px;
padding: 6px 11px;
border-radius: 8px;
font-weight: 500;
}
.toplevel_page_magic-login .ml-links-cleanup {
padding: 16px 18px;
background: #fbfcfe;
border-top: 1px solid #edf1f5;
border-radius: 0 0 var(--ml-radius-lg) var(--ml-radius-lg);
}
.toplevel_page_magic-login .ml-empty-state {
padding: 72px 24px;
background:
linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.toplevel_page_magic-login .ml-empty-state-icon {
width: 64px;
height: 64px;
color: #334155;
background: #ffffff;
border: 1px solid #dbe3ea;
box-shadow: 0 18px 35px -30px rgba(15, 23, 42, 0.7);
}
.toplevel_page_magic-login .ml-empty-state-title {
margin: 0 0 8px;
font-size: 20px;
}
.toplevel_page_magic-login .ml-empty-state-text {
margin: 0 auto 24px;
max-width: 360px;
}
@media (max-width: 1100px) {
.toplevel_page_magic-login .ml-stats {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 782px) {
.toplevel_page_magic-login .ml-links-hero {
flex-direction: column;
padding: 24px;
}
.toplevel_page_magic-login .ml-links-hero .ml-btn-primary {
width: 100%;
justify-content: center;
}
.toplevel_page_magic-login .ml-links-hero .ml-page-title {
font-size: 24px;
}
.toplevel_page_magic-login .ml-stats {
grid-template-columns: 1fr;
}
.toplevel_page_magic-login .ml-stat-card {
min-height: 104px;
}
.toplevel_page_magic-login .ml-filterbar-actions {
align-items: stretch;
}
.toplevel_page_magic-login .ml-filterbar-apply,
.toplevel_page_magic-login .ml-filterbar-reset {
flex: 1;
}
.toplevel_page_magic-login .ml-filterbar-daterange {
flex-wrap: wrap;
}
.toplevel_page_magic-login .ml-filterbar-date-arrow {
display: none;
}
}
@media (max-width: 768px) {
.ml-admin-container {
margin-left: -10px;
}
.ml-wrap {
padding: 16px;
}
.ml-header-inner,
.ml-nav-inner {
flex-direction: column;
align-items: flex-start;
gap: 16px;
}
.ml-nav-inner {
gap: 4px;
width: 100%;
overflow-x: auto;
padding-bottom: 4px;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.ml-nav-inner::-webkit-scrollbar {
display: none;
}
.ml-stats {
grid-template-columns: 1fr;
}
.ml-filters {
flex-direction: column;
align-items: stretch;
}
.ml-filter-group.ml-filter-search {
max-width: 100%;
}
.ml-topbar {
flex-direction: column;
gap: 16px;
padding: 16px 20px;
}
.ml-nav-pills {
overflow-x: auto;
width: 100%;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.ml-nav-pills::-webkit-scrollbar {
display: none;
}
.ml-topbar-actions {
width: 100%;
justify-content: flex-end;
}
}
.ml-media-preview {
border: 1px solid var(--ml-border);
border-radius: 14px;
padding: 16px;
background: var(--ml-bg);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
flex-shrink: 0;
}
.ml-media-preview img {
max-width: 200px;
max-height: 100px;
display: block;
border-radius: 4px;
}
.ml-media-preview-bg {
padding: 0 !important;
width: 100% !important;
aspect-ratio: 16 / 9 !important;
background: var(--ml-bg) !important;
overflow: hidden !important;
min-height: auto !important;
border: 1px solid var(--ml-border) !important;
border-radius: 12px !important;
}
.ml-media-preview-bg img {
width: 100% !important;
height: 100% !important;
max-width: none !important;
max-height: none !important;
object-fit: cover !important;
border-radius: 12px !important;
box-shadow: none !important;
}
.ml-media-buttons {
display: flex;
flex-direction: row;
gap: 8px;
align-items: flex-start;
flex-shrink: 0;
}
.ml-media-upload {
display: grid;
grid-template-columns: auto 1fr;
gap: 16px;
align-items: center;
} .ml-image-upload-container {
border: 1px solid var(--ml-border);
border-radius: 14px;
overflow: hidden;
background: var(--ml-bg-white);
}
.ml-image-upload-header {
display: flex;
gap: 24px;
padding: 16px 20px;
background: var(--ml-bg);
border-bottom: 1px solid var(--ml-border);
}
.ml-image-upload-body {
padding: 20px;
display: flex;
flex-direction: column;
gap: 16px;
} .ml-passkeys-list {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 24px;
}
.ml-passkey-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 18px 20px;
background: #ffffff;
border: 1px solid var(--ml-border);
border-radius: 14px;
box-shadow: 0 1px 2px rgba(0,0,0,0.03);
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-passkey-item:hover {
transform: translateY(-1px);
box-shadow: 0 4px 12px -4px rgba(0,0,0,0.08);
border-color: var(--ml-border-hover);
}
.ml-passkey-info {
display: flex;
align-items: center;
gap: 16px;
}
.ml-passkey-icon {
width: 40px;
height: 40px;
border-radius: 8px;
background: var(--ml-primary-light);
color: var(--ml-primary);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.ml-passkey-details {
display: flex;
flex-direction: column;
gap: 4px;
}
.ml-passkey-name {
font-weight: 600;
color: var(--ml-text);
font-size: 14px;
}
.ml-passkey-meta {
font-size: 13px;
color: var(--ml-text-muted);
} .ml-toggle-wrap {
display: flex;
align-items: flex-start;
gap: 16px;
background: #ffffff;
padding: 18px 20px;
border-radius: 14px;
border: 1px solid var(--ml-border);
box-shadow: 0 1px 2px rgba(0,0,0,0.03);
cursor: pointer;
margin: 0;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ml-toggle-wrap:hover {
border-color: var(--ml-border-hover);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
} .ml-toggle-wrap > div > strong,
.ml-toggle-title {
display: block;
margin-bottom: 3px;
color: var(--ml-text);
font-size: 14px;
font-weight: 600;
line-height: 1.4;
}
.ml-toggle-wrap > div > span,
.ml-toggle-description {
font-size: 13px;
color: var(--ml-text-muted);
display: block;
line-height: 1.5;
}
.ml-toggle {
position: relative;
display: inline-block;
width: 48px;
height: 26px;
flex-shrink: 0;
margin-top: 1px;
border-radius:20px !important;
}
.ml-toggle input {
opacity: 0;
width: 0;
height: 0;
position: absolute;
}
.ml-toggle input[type=checkbox] {
opacity: 0;
}
.ml-toggle-slider {
position: absolute;
cursor: pointer;
top: 0; left: 0; right: 0; bottom: 0;
background-color: #cbd5e1;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 26px;
box-shadow: inset 0 1px 2px rgba(0,0,0,0.08);
}
.ml-toggle-slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 3px;
bottom: 3px;
background-color: white;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 50%;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 1px rgba(0,0,0,0.06);
}
.ml-toggle input:checked + .ml-toggle-slider {
background-color: var(--ml-primary);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.15);
}
.ml-toggle input:focus + .ml-toggle-slider {
box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1), inset 0 1px 2px rgba(0,0,0,0.08);
}
.ml-toggle input:checked + .ml-toggle-slider:before {
transform: translateX(22px);
} .ml-toggle-wrap--borderless {
border: none;
box-shadow: none;
border-radius: 0;
padding: 14px 20px;
background: transparent;
}
.ml-toggle-wrap--borderless:hover {
box-shadow: none;
border: none;
}
.ml-toggle-wrap--borderless + .ml-toggle-wrap--borderless {
border-top: 1px solid var(--ml-border);
} .ml-segmented-control {
display: inline-flex;
background-color: #f1f5f9;
padding: 4px;
border-radius: 10px;
border: 1px solid var(--ml-border);
gap: 2px;
}
.ml-segmented-label {
margin: 0;
cursor: pointer;
}
.ml-segmented-label input[type="radio"],
.ml-segmented-label input[type="checkbox"] {
display: none;
}
.ml-segmented-text {
display: inline-block;
padding: 8px 16px;
font-size: 13px;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--ml-text-muted);
border-radius: 8px;
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap;
user-select: none;
}
.ml-segmented-text:hover {
color: var(--ml-text);
}
.ml-segmented-label input:checked + .ml-segmented-text {
background-color: #ffffff;
color: var(--ml-text);
box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.03);
font-weight: 600;
} .ml-vtabs[data-vtabs="license"] {
border-radius: var(--ml-radius-lg) var(--ml-radius-lg) 0 0;
}
.ml-vtabs[data-vtabs="email-template"] {
border-radius: var(--ml-radius-lg) var(--ml-radius-lg) 0 0;
}
.ml-vtabs {
display: flex;
min-height: 480px;
border: 1px solid var(--ml-border) !important;
border-radius: var(--ml-radius-lg);
background: #ffffff;
overflow: hidden;
box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03) !important;
}
.ml-vtabs-nav {
width: 280px;
flex-shrink: 0;
border-right: 1px solid var(--ml-border);
background: #f8fafc;
padding: 24px 16px;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: #cbd5e1 transparent;
}
.ml-vtabs-nav::-webkit-scrollbar {
width: 4px;
}
.ml-vtabs-nav::-webkit-scrollbar-track {
background: transparent;
}
.ml-vtabs-nav::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
.ml-vtab-item {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
margin-bottom: 6px;
font-size: 14px;
font-weight: 500;
color: #475569;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
border-radius: 8px;
line-height: 1.4;
position: relative;
}
.ml-vtab-item:hover {
background: rgba(15, 23, 42, 0.04);
color: #0f172a;
text-decoration: none;
}
.ml-vtab-item.ml-vtab-active {
background: #0f172a; color: #ffffff;
font-weight: 600;
box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.ml-vtab-item svg {
width: 18px;
height: 18px;
opacity: 0.6;
flex-shrink: 0;
transition: all 0.2s ease;
}
.ml-vtab-item:hover svg {
opacity: 0.9;
}
.ml-vtab-item.ml-vtab-active svg {
opacity: 1;
color: #ffffff !important;
}
.ml-vtab-pro {
background: rgba(249, 115, 22, 0.12);
color: #ea580c;
font-size: 9px;
padding: 2px 6px;
border-radius: 4px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap;
line-height: 1.2;
margin-left: auto;
}
.ml-vtabs .ml-settings-section {
display: none;
}
.ml-vtabs .ml-settings-section.ml-vtab-active {
display: block;
animation: mlTabFadeIn 0.25s ease;
}
@keyframes mlTabFadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
.ml-vtabs .ml-settings-section > div {
flex-direction: column !important;
gap: 0 !important;
}
.ml-vtabs .ml-settings-section > div > div:first-child {
flex: none !important;
width: 100% !important;
max-width: 100% !important;
padding-bottom: 20px !important;
margin-bottom: 24px !important;
border-bottom: 1px solid var(--ml-border) !important;
}
.ml-vtabs .ml-settings-section > div > div:first-child .ml-section-title {
margin-top: 10px !important;
font-size: 18px !important;
font-weight: 700 !important;
color: #1e293b !important;
letter-spacing: -0.3px !important; }
.ml-vtabs .ml-settings-section > div > div:first-child .ml-section-title svg {
width: 20px !important;
height: 20px !important;
color: var(--ml-accent) !important;
opacity: 1 !important;
}
.ml-vtabs .ml-settings-section > div > div:first-child p {
font-size: 13px !important;
color: #64748b !important;
line-height: 1.6 !important;
margin-top: 6px !important;
}
.ml-vtab-help {
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
margin-left: auto;
flex-shrink: 0;
color: #64748b;
background: transparent;
border: none;
border-radius: 50%;
cursor: pointer;
transition: all 0.2s ease;
font-family: inherit;
line-height: 1;
padding: 0;
}
.ml-vtab-help:hover {
color: #111827;
background: rgba(255, 255, 255, 0.75);
}
.ml-vtab-help svg {
width: 18px;
height: 18px;
flex-shrink: 0;
}
.ml-vtabs .ml-settings-section > div > div:last-child {
flex: 1 !important;
min-width: 0 !important;
background: transparent !important;
padding: 0 !important;
border-radius: 0 !important;
border: none !important;
}
.ml-vtabs .ml-settings-section {
padding: 28px 36px !important;
border-bottom: none !important;
border-radius: 0 !important;
overflow-y: auto;
}
.ml-vtabs .ml-settings-section.ml-vtab-active {
border-bottom: none !important;
}
.ml-vtabs[data-vtabs="license"] .ml-settings-section.ml-vtab-active {
flex: 1;
}
.ml-vtabs > fieldset {
display: contents;
border: none;
padding: 0;
margin: 0;
}
@media (max-width: 782px) {
.ml-vtabs {
flex-direction: column;
min-height: 0;
}
.ml-vtabs-nav {
width: 100%;
min-width: 100%;
border-right: none;
border-bottom: 1px solid var(--ml-border);
background: #f5f7fa;
display: flex;
overflow-x: auto;
padding: 8px 12px;
gap: 4px;
scrollbar-width: none;
-webkit-overflow-scrolling: touch;
}
.ml-vtabs-nav::-webkit-scrollbar {
display: none;
}
.ml-vtab-item {
padding: 8px 16px;
border-left: none;
border-bottom: 3px solid transparent;
white-space: nowrap;
flex-shrink: 0;
margin-bottom: 0;
}
.ml-vtab-item.ml-vtab-active {
border-left: none;
border-bottom-color: var(--ml-accent);
border-radius: 30px;
}
.ml-vtabs .ml-settings-section {
padding: 20px 16px !important;
}
} .ml-autocomplete-wrapper {
position: relative;
width: 100%;
}
.ml-autocomplete-dropdown {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 99999;
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 6px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
max-height: 280px;
overflow-y: auto;
margin-top: 2px;
}
.ml-autocomplete-dropdown.ml-autocomplete-open {
display: block;
}
.ml-autocomplete-item {
padding: 10px 14px;
cursor: pointer;
border-bottom: 1px solid #f1f5f9;
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 4px 10px;
transition: background-color 0.1s;
}
.ml-autocomplete-item:last-child {
border-bottom: none;
}
.ml-autocomplete-item:hover,
.ml-autocomplete-item.ml-autocomplete-active {
background-color: #f0f7ff;
}
.ml-autocomplete-email {
font-size: 13px;
color: #1e293b;
font-weight: 500;
}
.ml-autocomplete-email strong,
.ml-autocomplete-login strong {
color: #2563eb;
background: #eff6ff;
padding: 0 1px;
}
.ml-autocomplete-login {
font-size: 12px;
color: #64748b;
}
.ml-autocomplete-name {
font-size: 12px;
color: #94a3b8;
width: 100%;
padding-left: 2px;
}
.ml-autocomplete-empty {
padding: 16px 14px;
text-align: center;
color: #94a3b8;
font-size: 13px;
}
.ml-autocomplete-loading {
padding: 16px 14px;
text-align: center;
color: #94a3b8;
font-size: 13px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.ml-autocomplete-spinner {
display: inline-block;
width: 14px;
height: 14px;
border: 2px solid #e2e8f0;
border-top-color: #3b82f6;
border-radius: 50%;
animation: ml-spin 0.6s linear infinite;
}
.ml-form-group-parent {
width: 85%;
}
.ml-boxed-field {
margin: 0 !important;
background: #f8fafc;
padding: 16px;
border-radius: 4px;
border: 1px solid #e2e8f0;
}
input#ml-import-settings-file::file-selector-button{
height: 28px;
border: 0;
}
.ml-brand-colors {
width: 100%;
}
.ml-brand-colors-hero {
display: grid;
grid-template-columns: minmax(260px, 380px) 1fr;
gap: 18px;
align-items: stretch;
margin-bottom: 20px;
padding: 16px;
background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 46%, #f0fdf4 100%);
border: 1px solid #dbe4f0;
border-radius: var(--ml-radius-lg);
}
.ml-brand-colors-preview {
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: var(--ml-preview-page);
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: var(--ml-radius-lg);
box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}
.ml-preview-card {
width: min(100%, 260px);
padding: 22px;
background: var(--ml-preview-card);
border: 1px solid var(--ml-preview-border);
border-radius: var(--ml-radius-lg);
color: var(--ml-preview-text);
box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
}
.ml-preview-title {
margin-bottom: 4px;
color: var(--ml-preview-title);
font-size: 18px;
font-weight: 700;
line-height: 1.2;
}
.ml-preview-subtitle {
margin-bottom: 18px;
color: var(--ml-preview-subtitle);
font-size: 12px;
line-height: 1.4;
}
.ml-preview-label {
margin-bottom: 7px;
color: var(--ml-preview-text);
font-size: 11px;
font-weight: 600;
}
.ml-preview-input {
margin-bottom: 10px;
padding: 10px 12px;
background: var(--ml-preview-input);
border: 1px solid var(--ml-preview-input-border);
border-radius: var(--ml-radius);
color: var(--ml-preview-input-text);
font-size: 12px;
}
.ml-preview-button {
display: flex;
align-items: center;
justify-content: center;
min-height: 36px;
margin-top: 8px;
padding: 8px 12px;
border-radius: var(--ml-radius);
font-size: 12px;
font-weight: 700;
line-height: 1.2;
text-align: center;
}
.ml-preview-button-primary {
background: var(--ml-preview-primary);
color: var(--ml-preview-primary-text);
}
.ml-preview-button-passkey {
background: var(--ml-preview-passkey);
color: var(--ml-preview-passkey-text);
}
.ml-brand-colors-summary {
display: flex;
flex-direction: column;
justify-content: center;
gap: 8px;
min-width: 0;
padding: 18px;
}
.ml-brand-colors-summary span {
width: fit-content;
padding: 4px 10px;
background: #ffffff;
border: 1px solid #dbe4f0;
border-radius: var(--ml-radius);
color: #475569;
font-size: 11px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.ml-brand-colors-summary strong {
max-width: 460px;
color: #0f172a;
font-size: 24px;
font-weight: 700;
line-height: 1.2;
letter-spacing: 0;
}
.ml-color-card-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.ml-color-card {
padding: 16px;
background: #ffffff;
border: 1px solid var(--ml-border);
border-radius: var(--ml-radius-lg);
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.ml-color-card-header {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
padding-bottom: 14px;
border-bottom: 1px solid #eef2f7;
}
.ml-color-card-icon {
width: 38px;
height: 38px;
flex: 0 0 38px;
border: 1px solid rgba(15, 23, 42, 0.12);
border-radius: var(--ml-radius);
box-shadow: inset 0 0 0 3px rgba(255,255,255,0.28), 0 5px 14px rgba(15, 23, 42, 0.12);
}
.ml-color-card-icon-split {
background: linear-gradient(135deg, var(--left) 0 50%, var(--right) 50% 100%) !important;
}
.ml-color-card h4 {
margin: 0 0 4px;
color: #0f172a;
font-size: 14px;
font-weight: 700;
line-height: 1.25;
}
.ml-color-card p {
margin: 0;
color: var(--ml-text-muted);
font-size: 12px;
line-height: 1.45;
}
.ml-color-fields {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.ml-brand-colors .ml-boxed-field {
min-width: 0;
padding: 12px !important;
background: #f8fafc !important;
border: 1px solid #e5ebf3 !important;
border-radius: var(--ml-radius) !important;
}
.ml-brand-colors .ml-form-label {
display: block;
margin-bottom: 8px;
color: #334155;
font-size: 12px;
font-weight: 700;
line-height: 1.3;
}
.ml-brand-colors .wp-color-result.button {
min-height: 34px !important;
margin: 0 !important;
border-radius: var(--ml-radius) !important;
}
.ml-brand-colors .wp-color-result-text {
min-height: 32px;
padding: 0 10px !important;
border-radius: 0 var(--ml-radius) var(--ml-radius) 0 !important;
font-size: 12px !important;
font-weight: 600;
line-height: 32px !important;
}
.ml-brand-colors .wp-picker-input-wrap {
margin-top: 8px;
}
.ml-range-field {
grid-column: auto;
}
.ml-range-control {
display: flex;
align-items: center;
gap: 12px;
}
.ml-range-control input[type="range"] {
flex: 1;
min-width: 0;
}
.ml-range-control strong {
min-width: 30px;
color: var(--ml-text);
font-size: 13px;
text-align: right;
}
.ml-background-image-panel {
margin-top: 16px !important;
padding: 16px !important;
background: #ffffff !important;
border: 1px solid var(--ml-border) !important;
border-radius: var(--ml-radius-lg) !important;
}
@media (max-width: 1180px) {
.ml-brand-colors-hero,
.ml-color-card-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 782px) {
.ml-brand-colors-hero,
.ml-color-fields {
grid-template-columns: 1fr;
}
.ml-brand-colors-summary strong {
font-size: 20px;
}
}
.ml-create-link-section .ml-create-link-layout {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: 18px;
width: 100%;
}
.ml-vtabs .ml-create-link-section > div > div:first-child .ml-section-title {
color: #334155 !important;
}
.ml-vtabs .ml-create-link-section > div > div:first-child .ml-section-title svg {
color: #475569 !important;
}
.ml-create-link-main {
display: flex;
flex-direction: column;
gap: 16px;
min-width: 0;
}
.ml-create-panel {
padding: 18px;
background: #ffffff;
border: 1px solid var(--ml-border);
border-radius: var(--ml-radius-lg);
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.ml-create-panel-primary {
background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
border-color: #dbe4f0;
}
.ml-create-panel-header {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
padding-bottom: 14px;
border-bottom: 1px solid #eef2f7;
}
.ml-create-step {
width: 30px;
height: 30px;
flex: 0 0 30px;
display: inline-flex;
align-items: center;
justify-content: center;
background: #f1f5f9;
color: #334155;
border: 1px solid #dbe4f0;
border-radius: var(--ml-radius);
font-size: 13px;
font-weight: 700;
box-shadow: 0 6px 14px rgba(71, 85, 105, 0.10);
}
.ml-create-panel h4 {
margin: 0 0 4px;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 8px;
color: #263548;
font-size: 15px;
font-weight: 700;
line-height: 1.25;
}
.ml-create-requirement-badge {
display: inline-flex;
align-items: center;
min-height: 20px;
padding: 3px 8px;
background: #f8fafc;
border: 1px solid #dbe4f0;
border-radius: 999px;
color: #64748b;
font-size: 11px;
font-weight: 700;
line-height: 1;
}
.ml-create-requirement-required {
background: #fef2f2;
border-color: #fecaca;
color: #b91c1c;
}
.ml-create-panel p {
margin: 0;
}
.ml-create-field-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.ml-create-link-section .ml-form-label {
display: block;
margin-bottom: 8px;
color: #334155;
font-size: 12px;
font-weight: 700;
line-height: 1.3;
}
.ml-create-link-section .ml-input,
.ml-create-link-section .ml-select {
width: 100%;
min-height: 40px;
background-color: #ffffff;
}
.ml-create-boxed-field {
margin: 0 !important;
padding: 14px !important;
background: #f8fafc !important;
border: 1px solid #e5ebf3 !important;
border-radius: var(--ml-radius) !important;
}
.ml-create-inline-input {
display: flex;
align-items: center;
gap: 10px;
}
.ml-create-inline-input input {
flex: 1;
min-width: 0;
}
.ml-create-inline-input span {
color: var(--ml-text-muted);
font-size: 13px;
white-space: nowrap;
}
.ml-create-expiry-row {
max-width: 520px;
}
.ml-create-expiry-control {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.ml-create-restricted-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ml-create-restricted-card {
position: relative;
align-items: flex-start;
padding-left: 52px;
}
.ml-create-restricted-card input {
position: absolute;
opacity: 0;
pointer-events: none;
}
.ml-restricted-checkmark {
position: absolute;
left: 16px;
top: 17px;
width: 22px;
height: 22px;
display: inline-flex;
align-items: center;
justify-content: center;
background: #ffffff;
border: 1px solid #cbd5e1;
border-radius: var(--ml-radius);
color: transparent;
transition: all 0.18s ease;
}
.ml-create-restricted-card:has(input:checked) {
background: #f0f9ff;
border-color: #38bdf8;
box-shadow: 0 6px 18px rgba(14, 165, 233, 0.10);
}
.ml-create-restricted-card input:checked + .ml-restricted-checkmark {
background: #0284c7;
border-color: #0284c7;
color: #ffffff;
}
.ml-create-toggle-card {
margin: 0 0 16px !important;
padding: 16px !important;
background: #f8fafc !important;
border: 1px solid #e5ebf3 !important;
border-radius: var(--ml-radius-lg) !important;
}
.ml-create-toggle-card strong {
display: block;
margin-bottom: 4px;
color: var(--ml-text);
font-size: 14px;
font-weight: 700;
}
.ml-create-toggle-card span {
display: block;
color: var(--ml-text-muted);
font-size: 13px;
line-height: 1.5;
}
.ml-create-url-block {
margin: 0 !important;
}
.ml-create-url-block textarea {
min-height: 140px;
}
.ml-create-action-bar {
margin: 0 !important;
padding: 18px 24px !important;
display: flex !important;
align-items: center;
justify-content: space-between !important;
gap: 16px;
background: #f8fafc !important;
border-top: 1px solid #e2e8f0 !important;
border-radius: 0 !important;
}
.ml-create-action-copy {
min-width: 0;
}
.ml-create-action-copy strong {
display: block;
margin-bottom: 3px;
color: #0f172a;
font-size: 13px;
font-weight: 700;
line-height: 1.3;
}
.ml-create-action-copy span {
display: block;
color: var(--ml-text-muted);
font-size: 12px;
line-height: 1.4;
}
.ml-create-action-buttons {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 10px;
flex-shrink: 0;
}
.ml-create-action-primary,
.ml-create-action-secondary {
min-height: 40px;
padding: 10px 18px !important;
display: inline-flex !important;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 13px !important;
font-weight: 700 !important;
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08) !important;
}
@media (max-width: 1180px) {
.ml-create-link-section .ml-create-link-layout {
grid-template-columns: 1fr;
}
}
@media (max-width: 900px) {
.ml-create-field-grid,
.ml-create-expiry-control,
.ml-create-restricted-grid {
grid-template-columns: 1fr;
}
.ml-create-action-bar {
align-items: stretch;
flex-direction: column;
}
.ml-create-action-buttons {
justify-content: flex-start;
flex-wrap: wrap;
}
} .ml-settings-card-group {
background: #fdfdfd;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 24px;
margin-bottom: 24px;
box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ml-settings-card-group:hover {
border-color: #cbd5e1;
box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.ml-settings-card-group-title {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #475569;
margin: 0 0 20px 0;
border-bottom: 1px dashed #e2e8f0;
padding-bottom: 12px;
display: flex;
align-items: center;
gap: 8px;
}
@media (max-width: 782px) {
.ml-settings-card-group > div {
grid-template-columns: 1fr !important;
}
} .ml-admin-container .ml-table {
border-collapse: separate !important;
border-spacing: 0 !important;
width: 100% !important;
}
.ml-admin-container .ml-table th {
font-size: 11px !important;
font-weight: 700 !important;
text-transform: uppercase !important;
letter-spacing: 0.05em !important;
color: #64748b !important;
background: #f8fafc !important;
border-bottom: 1px solid #e2e8f0 !important;
padding: 16px 20px !important;
}
.ml-admin-container .ml-table th a {
color: #475569 !important;
font-weight: 700 !important;
text-decoration: none !important;
transition: color 0.15s ease !important;
}
.ml-admin-container .ml-table th a:hover {
color: #0f172a !important;
}
.ml-admin-container .ml-table th a svg {
color: #94a3b8 !important;
transition: transform 0.2s ease, color 0.2s ease !important;
}
.ml-admin-container .ml-table th a:hover svg {
color: #475569 !important;
transform: translateY(-1px) !important;
}
.ml-admin-container .ml-table td {
padding: 18px 20px !important;
border-bottom: 1px solid #f1f5f9 !important;
vertical-align: middle !important;
}
.ml-admin-container .ml-table tbody tr {
transition: background-color 0.15s ease !important;
}
.ml-admin-container .ml-table tbody tr:hover td {
background-color: #f8fafc !important;
} .ml-user-avatar-gradient {
width: 38px !important;
height: 38px !important;
border-radius: 50% !important;
color: #ffffff !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
font-size: 14px !important;
font-weight: 700 !important;
flex-shrink: 0 !important;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08) !important;
background-size: 120% 120% !important;
} .ml-email-link {
color: #475569 !important;
text-decoration: none !important;
font-size: 13.5px !important;
display: inline-flex !important;
align-items: center !important;
gap: 6px !important;
transition: color 0.2s ease !important;
}
.ml-email-link:hover {
color: #10b981 !important;
}
.ml-email-link svg {
opacity: 0.5 !important;
transition: opacity 0.2s ease, transform 0.2s ease !important;
}
.ml-email-link:hover svg {
opacity: 1 !important;
transform: translateY(0.5px) !important;
} .ml-passkey-count-badge {
background: #ecfdf5 !important;
color: #059669 !important;
font-weight: 600 !important;
padding: 4px 10px !important;
border-radius: 12px !important;
font-size: 12px !important;
display: inline-flex !important;
align-items: center !important;
gap: 5px !important;
border: 1px solid #a7f3d0 !important;
} .ml-action-btn-manage {
padding: 8px 16px !important;
border-radius: 8px !important;
font-weight: 600 !important;
font-size: 12.5px !important;
border: 1.5px solid #e2e8f0 !important;
color: #334155 !important;
background: #ffffff !important;
text-decoration: none !important;
display: inline-flex !important;
align-items: center !important;
gap: 8px !important;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
box-shadow: 0 1px 2px rgba(15,23,42,0.04) !important;
cursor: pointer !important;
}
.ml-action-btn-manage:hover {
border-color: #cbd5e1 !important;
background: #f8fafc !important;
color: #0f172a !important;
box-shadow: 0 2px 4px rgba(15,23,42,0.06) !important;
}
.ml-action-btn-manage svg {
transition: transform 0.2s ease !important;
}
.ml-action-btn-manage:hover svg {
transform: translateX(3px) !important;
} .ml-filters-bar {
align-items: flex-end !important;
background: #ffffff !important;
border-bottom: 1px solid #f1f5f9 !important;
padding: 24px !important;
}
.ml-admin-container .ml-filterbar-apply {
padding: 10px 24px !important;
font-size: 14px !important;
height: auto !important;
line-height: normal !important;
border-radius: 10px !important;
}
.ml-admin-container .ml-filterbar-reset {
padding: 10px 16px !important;
font-size: 14px !important;
height: auto !important;
line-height: normal !important;
}
.ml-filterbar-search {
position: relative !important;
}
.ml-filterbar-search .ml-filterbar-input {
padding-left: 38px !important;
}
.ml-filterbar-search-icon {
position: absolute !important;
left: 12px !important;
bottom: 12px !important;
width: 16px !important;
height: 16px !important;
color: #94a3b8 !important;
pointer-events: none !important;
} .ml-admin-container .ml-file-input {
background-color: #ffffff !important;
border: 2px dashed #cbd5e1 !important;
padding: 16px 20px !important;
border-radius: 12px !important;
cursor: pointer !important;
transition: all 0.2s ease !important;
display: block !important;
width: 100% !important;
height: auto !important;
box-shadow: none !important;
}
.ml-admin-container .ml-file-input:hover {
border-color: #6366f1 !important;
background-color: #f8fafc !important;
}
.ml-admin-container .ml-file-input:focus {
border-color: #6366f1 !important;
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12) !important;
} .ml-admin-container .ml-file-input::file-selector-button {
background-color: var(--ml-primary, #0f172a) !important;
color: #ffffff !important;
border: none !important;
padding: 8px 16px !important;
border-radius: 6px !important;
font-size: 13px !important;
font-weight: 500 !important;
cursor: pointer !important;
margin-right: 12px !important;
transition: background-color 0.2s ease, transform 0.1s ease !important;
}
.ml-admin-container .ml-file-input::file-selector-button:hover {
background-color: #1e293b !important;
}
.ml-admin-container .ml-file-input::file-selector-button:active {
transform: scale(0.97) !important;
} .ml-admin-container .ml-file-input::-webkit-file-upload-button {
background-color: var(--ml-primary, #0f172a) !important;
color: #ffffff !important;
border: none !important;
padding: 8px 16px !important;
border-radius: 6px !important;
font-size: 13px !important;
font-weight: 500 !important;
cursor: pointer !important;
margin-right: 12px !important;
transition: background-color 0.2s ease, transform 0.1s ease !important;
}
.ml-admin-container .ml-file-input::-webkit-file-upload-button:hover {
background-color: #1e293b !important;
}
.ml-admin-container .ml-file-input::-webkit-file-upload-button:active {
transform: scale(0.97) !important;
} .ml-admin-container input:focus,
.ml-admin-container select:focus,
.ml-admin-container textarea:focus,
.ml-admin-container button:focus,
.ml-admin-container a:focus,
.ml-admin-container input:active,
.ml-admin-container select:active,
.ml-admin-container textarea:active,
.ml-admin-container button:active,
.ml-admin-container a:active {
outline: none !important;
box-shadow: none;
} .ml-admin-container :invalid,
.ml-admin-container :-moz-ui-invalid,
.ml-admin-container .ml-input:invalid,
.ml-admin-container .ml-select:invalid,
.ml-admin-container .ml-file-input:invalid,
.ml-admin-container .ml-file-input:-moz-ui-invalid {
box-shadow: none !important;
border-color: #cbd5e1 !important;
} .ml-admin-container .ml-input:focus,
.ml-admin-container .ml-select:focus,
.ml-admin-container .ml-textarea:focus,
.ml-admin-container .ml-file-input:focus,
.ml-admin-container .ml-filterbar-input:focus,
.ml-admin-container .ml-filterbar-select:focus,
.ml-admin-container .ml-filterbar-date:focus,
.ml-filter-input:focus {
border-color: #cbd5e1 !important;
box-shadow: none !important;
background-color: #ffffff !important;
}
.ml-ip-textarea {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
font-size: 13px !important;
line-height: 1.6 !important;
white-space: pre !important;
overflow-wrap: normal !important;
tab-size: 4 !important;
}@font-face{font-family:"Happy Icons";src:url(//demo-x.happyaddons.com/wp-content/plugins/happy-elementor-addons/assets/fonts/happy-icons.woff2) format("woff2"),url(//demo-x.happyaddons.com/wp-content/plugins/happy-elementor-addons/assets/fonts/happy-icons.woff) format("woff"),url(//demo-x.happyaddons.com/wp-content/plugins/happy-elementor-addons/assets/fonts/happy-icons.svg#happy-icons) format("svg");font-weight:normal;font-style:normal;font-display:swap;}.hm,.fashm{font-family:"Happy Icons"!important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.hm-3d-rotate:before{content:"\e900";}.hm-degree:before{content:"\e901";}.hm-accordion-horizontal:before{content:"\e902";}.hm-accordion-vertical:before{content:"\e903";}.hm-alarm-clock:before{content:"\e904";}.hm-alien-gun:before{content:"\e905";}.hm-alien:before{content:"\e906";}.hm-anchor:before{content:"\e907";}.hm-android:before{content:"\e908";}.hm-angle-down:before{content:"\e909";}.hm-angle-left:before{content:"\e90a";}.hm-angle-right:before{content:"\e90b";}.hm-angle-up:before{content:"\e90c";}.hm-apple:before{content:"\e90d";}.hm-arrow-left:before{content:"\e90e";}.hm-arrow-right:before{content:"\e90f";}.hm-arrow-zoom-out:before{content:"\e910";}.hm-arrow-corner:before{content:"\e911";}.hm-arrow-down:before{content:"\e912";}.hm-arrow-left1:before{content:"\e913";}.hm-arrow-right1:before{content:"\e914";}.hm-arrow-up:before{content:"\e915";}.hm-article:before{content:"\e916";}.hm-avatar-man:before{content:"\e917";}.hm-avatar-woman:before{content:"\e918";}.hm-badge1:before{content:"\e919";}.hm-badge2:before{content:"\e91a";}.hm-badge3:before{content:"\e91b";}.hm-bamboo:before{content:"\e91c";}.hm-basketball:before{content:"\e91d";}.hm-battery:before{content:"\e91e";}.hm-beach-seat:before{content:"\e91f";}.hm-bell:before{content:"\e920";}.hm-bicycle:before{content:"\e921";}.hm-blog-content:before{content:"\e922";}.hm-bluetooth:before{content:"\e923";}.hm-board:before{content:"\e924";}.hm-body:before{content:"\e925";}.hm-bomb:before{content:"\e926";}.hm-bond-hand:before{content:"\e927";}.hm-bond:before{content:"\e928";}.hm-bonsai:before{content:"\e929";}.hm-book:before{content:"\e92a";}.hm-bowl:before{content:"\e92b";}.hm-brick-wall:before{content:"\e92c";}.hm-brush-paint:before{content:"\e92d";}.hm-brush-roll:before{content:"\e92e";}.hm-brush:before{content:"\e92f";}.hm-bug:before{content:"\e930";}.hm-bulb:before{content:"\e931";}.hm-calculation:before{content:"\e932";}.hm-calendar:before{content:"\e933";}.hm-camera:before{content:"\e934";}.hm-candle:before{content:"\e935";}.hm-candles:before{content:"\e936";}.hm-car:before{content:"\e937";}.hm-card:before{content:"\e938";}.hm-caret-down:before{content:"\e939";}.hm-caret-fill-down:before{content:"\e93a";}.hm-caret-fill-left:before{content:"\e93b";}.hm-caret-fill-right:before{content:"\e93c";}.hm-caret-fill-up:before{content:"\e93d";}.hm-caret-left:before{content:"\e93e";}.hm-caret-right:before{content:"\e93f";}.hm-caret-up:before{content:"\e940";}.hm-carousal:before{content:"\e941";}.hm-cart-empty:before{content:"\e942";}.hm-cart-full:before{content:"\e943";}.hm-caution:before{content:"\e944";}.hm-chair:before{content:"\e945";}.hm-chair2:before{content:"\e946";}.hm-chat-bubble-single:before{content:"\e947";}.hm-chat-bubble:before{content:"\e948";}.hm-cheese:before{content:"\e949";}.hm-chef-cap:before{content:"\e94a";}.hm-clip-board:before{content:"\e94b";}.hm-clip:before{content:"\e94c";}.hm-cloud-down:before{content:"\e94d";}.hm-cloud-up:before{content:"\e94e";}.hm-cloud:before{content:"\e94f";}.hm-code-browser:before{content:"\e950";}.hm-code-clean:before{content:"\e951";}.hm-code:before{content:"\e952";}.hm-cog:before{content:"\e953";}.hm-color-card:before{content:"\e954";}.hm-color-plate:before{content:"\e955";}.hm-compass-math:before{content:"\e956";}.hm-compass:before{content:"\e957";}.hm-corner:before{content:"\e958";}.hm-crop:before{content:"\e959";}.hm-cross-circle:before{content:"\e95a";}.hm-cross-game:before{content:"\e95b";}.hm-cross-gap:before{content:"\e95c";}.hm-cross:before{content:"\e95d";}.hm-crown:before{content:"\e95e";}.hm-cube:before{content:"\e95f";}.hm-cup-coffee:before{content:"\e960";}.hm-cup:before{content:"\e961";}.hm-currency-paper:before{content:"\e962";}.hm-dashboard:before{content:"\e963";}.hm-delivery-van:before{content:"\e964";}.hm-diamond-ring:before{content:"\e965";}.hm-direction-both:before{content:"\e966";}.hm-direction-right:before{content:"\e967";}.hm-disable-person:before{content:"\e968";}.hm-disc:before{content:"\e969";}.hm-dislike:before{content:"\e96a";}.hm-dollar-on-hand:before{content:"\e96b";}.hm-door-path:before{content:"\e96c";}.hm-Download-circle:before{content:"\e96d";}.hm-download:before{content:"\e96e";}.hm-drag-inside:before{content:"\e96f";}.hm-drag-outside:before{content:"\e970";}.hm-drag:before{content:"\e971";}.hm-drawer:before{content:"\e972";}.hm-dribbble:before{content:"\e973";}.hm-dropper:before{content:"\e974";}.hm-egg-fry:before{content:"\e975";}.hm-ellipsis-fill-h:before{content:"\e976";}.hm-ellipsis-fill-v:before{content:"\e977";}.hm-ellipsis-horizontal:before{content:"\e978";}.hm-ellipsis-vertical:before{content:"\e979";}.hm-emo-normal:before{content:"\e97a";}.hm-emo-sad:before{content:"\e97b";}.hm-emo-smile:before{content:"\e97c";}.hm-envelop:before{content:"\e97d";}.hm-facebook:before{content:"\e97e";}.hm-fancy-futton:before{content:"\e97f";}.hm-feeder:before{content:"\e980";}.hm-file-cabinet:before{content:"\e981";}.hm-file-rotate:before{content:"\e982";}.hm-file:before{content:"\e983";}.hm-files:before{content:"\e984";}.hm-film-roll:before{content:"\e985";}.hm-film:before{content:"\e986";}.hm-finger-index:before{content:"\e987";}.hm-finger-print:before{content:"\e988";}.hm-fire-flame:before{content:"\e989";}.hm-flag:before{content:"\e98a";}.hm-flip-card1:before{content:"\e98b";}.hm-flip-card2:before{content:"\e98c";}.hm-folder-network:before{content:"\e98d";}.hm-folder:before{content:"\e98e";}.hm-football:before{content:"\e98f";}.hm-footer:before{content:"\e990";}.hm-form:before{content:"\e991";}.hm-forward:before{content:"\e992";}.hm-fountain-pen:before{content:"\e993";}.hm-gender-female:before{content:"\e994";}.hm-gender-male:before{content:"\e995";}.hm-gender-sign:before{content:"\e996";}.hm-gender:before{content:"\e997";}.hm-ghost:before{content:"\e998";}.hm-gift-box:before{content:"\e999";}.hm-globe1:before{content:"\e99a";}.hm-globe2:before{content:"\e99b";}.hm-globe3:before{content:"\e99c";}.hm-globe4:before{content:"\e99d";}.hm-google:before{content:"\e99e";}.hm-graduate-cap:before{content:"\e99f";}.hm-graph-bar:before{content:"\e9a0";}.hm-graph-pie:before{content:"\e9a1";}.hm-graph:before{content:"\e9a2";}.hm-grid-even:before{content:"\e9a3";}.hm-grid-masonry:before{content:"\e9a4";}.hm-grid-twist:before{content:"\e9a5";}.hm-grid:before{content:"\e9a6";}.hm-group:before{content:"\e9a7";}.hm-hand-mike:before{content:"\e9a8";}.hm-hand-watch:before{content:"\e9a9";}.hm-hand:before{content:"\e9aa";}.hm-header:before{content:"\e9ab";}.hm-headphone:before{content:"\e9ac";}.hm-headset:before{content:"\e9ad";}.hm-heart-beat:before{content:"\e9ae";}.hm-hexa:before{content:"\e9af";}.hm-highlighter:before{content:"\e9b0";}.hm-home:before{content:"\e9b1";}.hm-hot-spot:before{content:"\e9b2";}.hm-hotdog:before{content:"\e9b3";}.hm-ice-cream:before{content:"\e9b4";}.hm-icon-box:before{content:"\e9b5";}.hm-imac:before{content:"\e9b6";}.hm-image-compare:before{content:"\e9b7";}.hm-image-slider:before{content:"\e9b8";}.hm-image:before{content:"\e9b9";}.hm-inbox:before{content:"\e9ba";}.hm-infinity:before{content:"\e9bb";}.hm-info:before{content:"\e9bc";}.hm-injection:before{content:"\e9bd";}.hm-instagram:before{content:"\e9be";}.hm-jar-chemical:before{content:"\e9bf";}.hm-key:before{content:"\e9c0";}.hm-language-change:before{content:"\e9c1";}.hm-laptop:before{content:"\e9c2";}.hm-layer:before{content:"\e9c3";}.hm-lens:before{content:"\e9c4";}.hm-like:before{content:"\e9c5";}.hm-line-graph-pointed:before{content:"\e9c6";}.hm-link:before{content:"\e9c7";}.hm-linkedin:before{content:"\e9c8";}.hm-linux:before{content:"\e9c9";}.hm-list-2:before{content:"\e9ca";}.hm-list-group:before{content:"\e9cb";}.hm-list:before{content:"\e9cc";}.hm-location-pointer:before{content:"\e9cd";}.hm-lock:before{content:"\e9ce";}.hm-logo-carousel:before{content:"\e9cf";}.hm-logo-grid:before{content:"\e9d0";}.hm-lotus:before{content:"\e9d1";}.hm-love:before{content:"\e9d2";}.hm-madel:before{content:"\e9d3";}.hm-magic-wand:before{content:"\e9d4";}.hm-magnet:before{content:"\e9d5";}.hm-mail-open:before{content:"\e9d6";}.hm-man-range:before{content:"\e9d7";}.hm-map-marker:before{content:"\e9d8";}.hm-map-pointer:before{content:"\e9d9";}.hm-measurement:before{content:"\e9da";}.hm-memory:before{content:"\e9db";}.hm-menu-price:before{content:"\e9dc";}.hm-micro-chip:before{content:"\e9dd";}.hm-microphone1:before{content:"\e9de";}.hm-microphone2:before{content:"\e9df";}.hm-mobile:before{content:"\e9e0";}.hm-money-bag:before{content:"\e9e1";}.hm-money:before{content:"\e9e2";}.hm-monitor:before{content:"\e9e3";}.hm-mouse:before{content:"\e9e4";}.hm-muscle:before{content:"\e9e5";}.hm-net:before{content:"\e9e6";}.hm-network1:before{content:"\e9e7";}.hm-network2:before{content:"\e9e8";}.hm-newspaper:before{content:"\e9e9";}.hm-nuclear-circle:before{content:"\e9ea";}.hm-office-file:before{content:"\e9eb";}.hm-pacman:before{content:"\e9ec";}.hm-paper-fold:before{content:"\e9ed";}.hm-paper-plane-alt:before{content:"\e9ee";}.hm-paper-plane:before{content:"\e9ef";}.hm-pause:before{content:"\e9f0";}.hm-pen-head:before{content:"\e9f1";}.hm-pen-pencil:before{content:"\e9f2";}.hm-pen-scale:before{content:"\e9f3";}.hm-pen-paper:before{content:"\e9f4";}.hm-pen:before{content:"\e9f5";}.hm-pencil:before{content:"\e9f6";}.hm-pendrive:before{content:"\e9f7";}.hm-phone:before{content:"\e9f8";}.hm-pillar:before{content:"\e9f9";}.hm-pin-man-range:before{content:"\e9fa";}.hm-pin-man:before{content:"\e9fb";}.hm-pin:before{content:"\e9fc";}.hm-plane:before{content:"\e9fd";}.hm-play-end:before{content:"\e9fe";}.hm-play-next:before{content:"\e9ff";}.hm-play-previous:before{content:"\ea00";}.hm-play-start:before{content:"\ea01";}.hm-play-button:before{content:"\ea02";}.hm-play-store:before{content:"\ea03";}.hm-play:before{content:"\ea04";}.hm-playing-card:before{content:"\ea05";}.hm-plus-box:before{content:"\ea06";}.hm-plus-circle:before{content:"\ea07";}.hm-plus-gap:before{content:"\ea08";}.hm-plus-open:before{content:"\ea09";}.hm-popup:before{content:"\ea0a";}.hm-power:before{content:"\ea0b";}.hm-printer:before{content:"\ea0c";}.hm-progress-bar:before{content:"\ea0d";}.hm-promo:before{content:"\ea0e";}.hm-pulse:before{content:"\ea0f";}.hm-puzzle:before{content:"\ea10";}.hm-question:before{content:"\ea11";}.hm-quote:before{content:"\ea12";}.hm-radar:before{content:"\ea13";}.hm-radiation:before{content:"\ea14";}.hm-reading-glass-alt:before{content:"\ea15";}.hm-reading-glass:before{content:"\ea16";}.hm-recycle-bin:before{content:"\ea17";}.hm-recycle:before{content:"\ea18";}.hm-refresh-time:before{content:"\ea19";}.hm-reply:before{content:"\ea1a";}.hm-responsive-device:before{content:"\ea1b";}.hm-review:before{content:"\ea1c";}.hm-rocket1:before{content:"\ea1d";}.hm-rocket2:before{content:"\ea1e";}.hm-rss:before{content:"\ea1f";}.hm-safety-cap:before{content:"\ea20";}.hm-safety-kit:before{content:"\ea21";}.hm-sand-watch:before{content:"\ea22";}.hm-scale:before{content:"\ea23";}.hm-scanner:before{content:"\ea24";}.hm-scissor:before{content:"\ea25";}.hm-screen:before{content:"\ea26";}.hm-search:before{content:"\ea27";}.hm-seo:before{content:"\ea28";}.hm-server-network:before{content:"\ea29";}.hm-server:before{content:"\ea2a";}.hm-share:before{content:"\ea2b";}.hm-shield:before{content:"\ea2c";}.hm-ship:before{content:"\ea2d";}.hm-shirt:before{content:"\ea2e";}.hm-shopping-bag1:before{content:"\ea2f";}.hm-shopping-bag2:before{content:"\ea30";}.hm-shopping-bag3:before{content:"\ea31";}.hm-shopping-bag4:before{content:"\ea32";}.hm-shuffle:before{content:"\ea33";}.hm-shutter:before{content:"\ea34";}.hm-sign-in:before{content:"\ea35";}.hm-sign-out:before{content:"\ea36";}.hm-sitemap1:before{content:"\ea37";}.hm-sitemap2:before{content:"\ea38";}.hm-skart:before{content:"\ea39";}.hm-skull:before{content:"\ea3a";}.hm-skyscraper:before{content:"\ea3b";}.hm-slider-doc:before{content:"\ea3c";}.hm-slider-h-range:before{content:"\ea3d";}.hm-slider-image:before{content:"\ea3e";}.hm-slider-range-h:before{content:"\ea3f";}.hm-slider-v-open:before{content:"\ea40";}.hm-slider-video:before{content:"\ea41";}.hm-slider:before{content:"\ea42";}.hm-smart-watch:before{content:"\ea43";}.hm-snow:before{content:"\ea44";}.hm-spa-face:before{content:"\ea45";}.hm-spa-stone-flower:before{content:"\ea46";}.hm-spa-stone:before{content:"\ea47";}.hm-spark:before{content:"\ea48";}.hm-speaker-off:before{content:"\ea49";}.hm-speaker-on:before{content:"\ea4a";}.hm-spoon-fork:before{content:"\ea4b";}.hm-spoon:before{content:"\ea4c";}.hm-star:before{content:"\ea4d";}.hm-step-flow:before{content:"\ea4e";}.hm-steps:before{content:"\ea4f";}.hm-stop-watch:before{content:"\ea50";}.hm-stop:before{content:"\ea51";}.hm-support-call:before{content:"\ea52";}.hm-tab:before{content:"\ea53";}.hm-table-lamp:before{content:"\ea54";}.hm-tablet:before{content:"\ea55";}.hm-tag:before{content:"\ea56";}.hm-target-arrow:before{content:"\ea57";}.hm-target:before{content:"\ea58";}.hm-target1:before{content:"\ea59";}.hm-team-carousel:before{content:"\ea5a";}.hm-team-member:before{content:"\ea5b";}.hm-tennis-ball:before{content:"\ea5c";}.hm-terminal:before{content:"\ea5d";}.hm-testimonial-carousel:before{content:"\ea5e";}.hm-testimonial:before{content:"\ea5f";}.hm-text-animation:before{content:"\ea60";}.hm-theatre:before{content:"\ea61";}.hm-tick-circle:before{content:"\ea62";}.hm-tick:before{content:"\ea63";}.hm-tickets:before{content:"\ea64";}.hm-tie-knot:before{content:"\ea65";}.hm-tie:before{content:"\ea66";}.hm-timeline:before{content:"\ea67";}.hm-toggle:before{content:"\ea68";}.hm-tools:before{content:"\ea69";}.hm-tree-square:before{content:"\ea6a";}.hm-twitter-bird:before{content:"\ea6b";}.hm-twitter:before{content:"\ea6c";}.hm-ufo:before{content:"\ea6d";}.hm-umbralla:before{content:"\ea6e";}.hm-unlock:before{content:"\ea6f";}.hm-up-down:before{content:"\ea70";}.hm-upload:before{content:"\ea71";}.hm-upward-top-right:before{content:"\ea72";}.hm-user-female:before{content:"\ea73";}.hm-user-id:before{content:"\ea74";}.hm-user-male:before{content:"\ea75";}.hm-video-camera:before{content:"\ea76";}.hm-water-drop:before{content:"\ea77";}.hm-weather-cloud-day:before{content:"\ea78";}.hm-weather-cloud:before{content:"\ea79";}.hm-weather-day-rain:before{content:"\ea7a";}.hm-weather-day-snow:before{content:"\ea7b";}.hm-weather-day-windy-rain:before{content:"\ea7c";}.hm-weather-flood:before{content:"\ea7d";}.hm-weather-night-cloud:before{content:"\ea7e";}.hm-weather-rain-alt:before{content:"\ea7f";}.hm-weather-rain:before{content:"\ea80";}.hm-weather-snow:before{content:"\ea81";}.hm-weather-sun-rain:before{content:"\ea82";}.hm-weather-sun:before{content:"\ea83";}.hm-weather-sunny-day:before{content:"\ea84";}.hm-weather-thunder:before{content:"\ea85";}.hm-weather-windy-rain:before{content:"\ea86";}.hm-webcam1:before{content:"\ea87";}.hm-webcam2:before{content:"\ea88";}.hm-weight-scale:before{content:"\ea89";}.hm-windows:before{content:"\ea8a";}.hm-wine-glass2:before{content:"\ea8b";}.hm-wine-glass:before{content:"\ea8c";}.hm-worker-cap:before{content:"\ea8d";}.hm-youtube:before{content:"\ea8e";}.hm-centralize:before{content:"\ea8f";}.hm-add-section:before{content:"\ea90";}.hm-advanced-heading:before{content:"\ea91";}.hm-air-baloon:before{content:"\ea92";}.hm-arrow2:before{content:"\ea93";}.hm-bicycle2:before{content:"\ea94";}.hm-bond2:before{content:"\ea95";}.hm-bond3:before{content:"\ea96";}.hm-bond4:before{content:"\ea97";}.hm-calendar2:before{content:"\ea98";}.hm-carousel:before{content:"\ea99";}.hm-code-page:before{content:"\ea9a";}.hm-comment-circle:before{content:"\ea9b";}.hm-comment-square:before{content:"\ea9c";}.hm-copy:before{content:"\ea9d";}.hm-cursor:before{content:"\ea9e";}.hm-envelop2:before{content:"\ea9f";}.hm-factory:before{content:"\eaa0";}.hm-finger-point:before{content:"\eaa1";}.hm-finger-swipe-both:before{content:"\eaa2";}.hm-finger-swipe-corner:before{content:"\eaa3";}.hm-finger-swipe-left:before{content:"\eaa4";}.hm-finger-swipe-up:before{content:"\eaa5";}.hm-finger-swipe:before{content:"\eaa6";}.hm-finger-touch:before{content:"\eaa7";}.hm-folder-network:before{content:"\eaa8";}.hm-folder-sync:before{content:"\eaa9";}.hm-graph-bar2:before{content:"\eaaa";}.hm-graph-pie2:before{content:"\eaab";}.hm-heading-h:before{content:"\eaac";}.hm-heading-html:before{content:"\eaad";}.hm-heart:before{content:"\eaae";}.hm-home2:before{content:"\eaaf";}.hm-indent-left:before{content:"\eab0";}.hm-indent-right:before{content:"\eab1";}.hm-lock-close:before{content:"\eab2";}.hm-lock-open:before{content:"\eab3";}.hm-map-pointer-add:before{content:"\eab4";}.hm-map-pointer-check:before{content:"\eab5";}.hm-map-pointer-delete:before{content:"\eab6";}.hm-map-pointer2:before{content:"\eab7";}.hm-map:before{content:"\eab8";}.hm-navigation1:before{content:"\eab9";}.hm-navigation2:before{content:"\eaba";}.hm-page-export:before{content:"\eabb";}.hm-page-sync:before{content:"\eabc";}.hm-piramid:before{content:"\eabd";}.hm-plug:before{content:"\eabe";}.hm-point-marker:before{content:"\eabf";}.hm-quote2:before{content:"\eac0";}.hm-refresh-check:before{content:"\eac1";}.hm-refresh:before{content:"\eac2";}.hm-refresh2:before{content:"\eac3";}.hm-scrolling-image:before{content:"\eac4";}.hm-sign-turn-right:before{content:"\eac5";}.hm-speedometer:before{content:"\eac6";}.hm-sticky:before{content:"\eac7";}.hm-sync-cloud:before{content:"\eac8";}.hm-sync:before{content:"\eac9";}.hm-sync2:before{content:"\eaca";}.hm-table-lamp2:before{content:"\eacb";}.hm-target2:before{content:"\eacc";}.hm-timeline-spiral:before{content:"\eacd";}.hm-tv:before{content:"\eace";}.hm-vespa:before{content:"\eacf";}.hm-happyaddons:before{content:"\ead0";}.hm-brain:before{content:"\ead1";}.hm-breadcrumbs:before{content:"\ead2";}.hm-circular-chat:before{content:"\ead3";}.hm-currency-exchange:before{content:"\ead4";}.hm-cta:before{content:"\ead5";}.hm-data-table:before{content:"\ead6";}.hm-display-condition:before{content:"\ead7";}.hm-digital-memory:before{content:"\ead8";}.hm-dollar-box:before{content:"\ead9";}.hm-faq:before{content:"\eada";}.hm-facebook-feed:before{content:"\eadb";}.hm-header-footer:before{content:"\eadc";}.hm-heart:before{content:"\eadd";}.hm-image-accordion:before{content:"\eade";}.hm-image-masking:before{content:"\eadf";}.hm-instagram:before{content:"\eae0";}.hm-mail-chimp:before{content:"\eae1";}.hm-minus-large:before{content:"\eae2";}.hm-minus-small:before{content:"\eae3";}.hm-mobile-chat:before{content:"\eae4";}.hm-motion-button:before{content:"\eae5";}.hm-news-ticker:before{content:"\eae6";}.hm-offcanvas-menu:before{content:"\eae7";}.hm-post-grid:before{content:"\eae8";}.hm-post-list:before{content:"\eae9";}.hm-post-tab:before{content:"\eaea";}.hm-pricing-menu:before{content:"\eaeb";}.hm-scheduled-section:before{content:"\eaec";}.hm-section-link:before{content:"\eaed";}.hm-sticky-video:before{content:"\eaee";}.hm-section-nesting:before{content:"\eaef";}.hm-traffic-signal:before{content:"\eaf0";}.hm-tshirt:before{content:"\eaf1";}.hm-twitter-feed:before{content:"\eaf2";}.hm-grid-layout:before{content:"\eaf3";}.hm-add-to-cart-button:before{content:"\eaf4";}.hm-billing-address:before{content:"\eaf5";}.hm-cart:before{content:"\eaf6";}.hm-Category-Carousel:before{content:"\eaf7";}.hm-Category-Grid:before{content:"\eaf8";}.hm-Category-List:before{content:"\eaf9";}.hm-checkout-1:before{content:"\eafa";}.hm-checkout-2:before{content:"\eafb";}.hm-compare:before{content:"\eafc";}.hm-edit-menu:before{content:"\eafd";}.hm-facebook-review:before{content:"\eafe";}.hm-fb-messanger:before{content:"\eaff";}.hm-filter:before{content:"\eb00";}.hm-google-review:before{content:"\eb01";}.hm-grid-filter:before{content:"\eb02";}.hm-home3:before{content:"\eb03";}.hm-horizontal-timeline:before{content:"\eb04";}.hm-image-scroll:before{content:"\eb05";}.hm-mini-cart:before{content:"\eb06";}.hm-off-canvas-cart:before{content:"\eb07";}.hm-popup1:before{content:"\eb08";}.hm-post-list:before{content:"\eb09";}.hm-Product-Carousel:before{content:"\eb0a";}.hm-product-filter:before{content:"\eb0b";}.hm-product-gallery:before{content:"\eb0c";}.hm-Product-Grid:before{content:"\eb0d";}.hm-Product-List-double:before{content:"\eb0e";}.hm-product-list-single:before{content:"\eb0f";}.hm-product-rating:before{content:"\eb10";}.hm-product-table:before{content:"\eb11";}.hm-product-variation:before{content:"\eb12";}.hm-retina-image:before{content:"\eb13";}.hm-shipping-address:before{content:"\eb14";}.hm-shop:before{content:"\eb15";}.hm-shopping-details:before{content:"\eb16";}.hm-sticky-video-2:before{content:"\eb17";}.hm-Template-Import:before{content:"\eb18";}.hm-trendy-product:before{content:"\eb19";}.hm-user-check:before{content:"\eb1a";}.hm-User-Circle:before{content:"\eb1b";}.hm-user-plus:before{content:"\eb1c";}.hm-user:before{content:"\eb1d";}.hm-video-gallery:before{content:"\eb1e";}.hm-wishlist:before{content:"\eb1f";}.hm-mouse-scroll-h:before{content:"\eb20";}.hm-mouse-scroll-v:before{content:"\eb21";}.hm-speaker:before{content:"\eb22";}.hm-mega-menu:before{content:"\eb23";}.hm-content-slider:before{content:"\eb24";}.hm-text-outline:before{content:"\eb25";}.hm-vector-path:before{content:"\eb26";}.hm-rough-notation:before{content:"\eb27";}.hm-unfold-folder:before{content:"\eb28";}.hm-unfold-paper:before{content:"\eb29";}.hm-speaker2:before{content:"\eb2a";}.hm-video-mask:before{content:"\eb2b";}.hm-dot-navigation:before{content:"\eb2c";}.hm-cursor-hover-click:before{content:"\eb2d";}.hm-finger-hover-touch:before{content:"\eb2e";}.hm-repeat:before{content:"\eb2f";}.hm-event-calendar:before{content:"\eb30";}.hm-map-location-unfold:before{content:"\eb31";}.hm-ticket2:before{content:"\eb32";}.hm-thunder1:before{content:"\eb33";}.hm-thunder2:before{content:"\eb34";}.hm-shield1:before{content:"\eb35";}.hm-switcher:before{content:"\eb36";}.hm-global-badge:before{content:"\eb37";}.hm-wallet:before{content:"\eb38";}.hm-asteroid:before{content:"\eb39";}.hm-repeat2:before{content:"\eb3a";}.hm-corona-covid1:before{content:"\eb3b";}.hm-corona-covid2:before{content:"\eb3c";}.hm-fixed-size-button:before{content:"\eb3d";}.hm-full-page-scroll:before{content:"\eb3e";}.hm-multi-page-scroll:before{content:"\eb3f";}.hm-flag2:before{content:"\eb40";}.hm-advanced-data-table:before{content:"\eb41";}.hm-add-group:before{content:"\eb42";}.hm-add-peoples:before{content:"\eb43";}.hm-age-gate:before{content:"\eb44";}.hm-age-gate2:before{content:"\eb45";}.hm-animated-link:before{content:"\eb46";}.hm-behance-feed:before{content:"\eb47";}.hm-binary-digit:before{content:"\eb48";}.hm-both-way-arrow:before{content:"\eb49";}.hm-camera-plus:before{content:"\eb4a";}.hm-cancel-meeting:before{content:"\eb4b";}.hm-chat-bubble1:before{content:"\eb4c";}.hm-checkout1:before{content:"\eb4d";}.hm-clap:before{content:"\eb4e";}.hm-dribbble-feed:before{content:"\eb4f";}.hm-edd-cart:before{content:"\eb50";}.hm-edd-category-carousel:before{content:"\eb51";}.hm-edd-category:before{content:"\eb52";}.hm-edd-discount:before{content:"\eb53";}.hm-edd-download:before{content:"\eb54";}.hm-edd-login1:before{content:"\eb55";}.hm-edd-login2:before{content:"\eb56";}.hm-edd-mini-cart:before{content:"\eb57";}.hm-edd-my-account-tab:before{content:"\eb58";}.hm-edd-product-carousel:before{content:"\eb59";}.hm-edd-product-grid:before{content:"\eb5a";}.hm-edd-profile-edit:before{content:"\eb5b";}.hm-edd-purchased:before{content:"\eb5c";}.hm-edd-register:before{content:"\eb5d";}.hm-edd-search-bar:before{content:"\eb5e";}.hm-edd-single-product:before{content:"\eb5f";}.hm-facebook-review1:before{content:"\eb60";}.hm-feather:before{content:"\eb61";}.hm-file2:before{content:"\eb62";}.hm-fly-out-menu:before{content:"\eb63";}.hm-grid-link:before{content:"\eb64";}.hm-hexa-bond:before{content:"\eb65";}.hm-image-accordion1:before{content:"\eb66";}.hm-image-swap:before{content:"\eb67";}.hm-link-box:before{content:"\eb68";}.hm-meeting:before{content:"\eb69";}.hm-pdf1:before{content:"\eb6a";}.hm-pdf2:before{content:"\eb6b";}.hm-photo-stack:before{content:"\eb6c";}.hm-qr-code:before{content:"\eb6d";}.hm-remote_carousel:before{content:"\eb6e";}.hm-scroll-top:before{content:"\eb6f";}.hm-square-clock:before{content:"\eb70";}.hm-step-flow2:before{content:"\eb71";}.hm-sub-list:before{content:"\eb72";}.hm-swap-left:before{content:"\eb73";}.hm-tooltips:before{content:"\eb74";}.hm-traveller:before{content:"\eb75";}.hm-tb-archieve-content:before{content:"\eb76";}.hm-tb-archieve-title:before{content:"\eb77";}.hm-tb-author-meta:before{content:"\eb78";}.hm-tb-comments:before{content:"\eb79";}.hm-tb-featured-image:before{content:"\eb7a";}.hm-tb-page-title:before{content:"\eb7b";}.hm-tb-post-content:before{content:"\eb7c";}.hm-tb-post-excerpt:before{content:"\eb7d";}.hm-tb-post-grid:before{content:"\eb7e";}.hm-tb-post-info:before{content:"\eb7f";}.hm-tb-post-list:before{content:"\eb80";}.hm-tb-post-title:before{content:"\eb81";}.hm-tb-site-logo:before{content:"\eb82";}.hm-tb-site-title:before{content:"\eb83";}.hm-lordicon:before{content:"\eb84";}.hm-vault:before{content:"\eb85";}.hm-liquid-hover-image:before{content:"\eb86";}.hm-image-replace:before{content:"\eb87";}.hm-title-tips-vector-path:before{content:"\eb88";}.hm-reading-progress-bar:before{content:"\eb89";}.hm-metro-grid-text-outline:before{content:"\eb8a";}.hm-loop-grid-content-slider:before{content:"\eb8b";}.hm-woo-builder:before{content:"\eb8c";}.hm-verified-info:before{content:"\eb8d";}.hm-unused-media:before{content:"\eb8e";}.hm-related-product:before{content:"\eb8f";}.hm-reading-book:before{content:"\eb90";}.hm-product-title:before{content:"\eb91";}.hm-product-stock:before{content:"\eb92";}.hm-product-rating-78:before{content:"\eb93";}.hm-product-price:before{content:"\eb94";}.hm-product-meta:before{content:"\eb95";}.hm-product-image:before{content:"\eb96";}.hm-product-grid:before{content:"\eb97";}.hm-product-description:before{content:"\eb98";}.hm-product-atribute:before{content:"\eb99";}.hm-media-all:before{content:"\eb9a";}.hm-magic-scroll:before{content:"\eb9b";}.hm-lightbox:before{content:"\eb9c";}.hm-invoice:before{content:"\eb9d";}.hm-global-badge1:before{content:"\eb9e";}.hm-empty-cart-notice:before{content:"\eb9f";}.hm-creative-slider-two:before{content:"\eba0";}.hm-creative-slider-one:before{content:"\eba1";}.hm-comparison-table:before{content:"\eba2";}.hm-checkout-shipping:before{content:"\eba3";}.hm-checkout-payment-method:before{content:"\eba4";}.hm-checkout-order-review:before{content:"\eba5";}.hm-checkout-login:before{content:"\eba6";}.hm-checkout-invoice:before{content:"\eba7";}.hm-checkout-info:before{content:"\eba8";}.hm-checkout-coupon:before{content:"\eba9";}.hm-checkout-bill-form:before{content:"\ebaa";}.hm-cart-total:before{content:"\ebab";}.hm-cart-table:before{content:"\ebac";}.hm-cart-redirection:before{content:"\ebad";}.hm-cart-checkout:before{content:"\ebae";}.hm-cart-btn-number:before{content:"\ebaf";}.hm-ai:before{content:"\ebb0";}@font-face{font-family:"Happy Icons";src:url(//demo-x.happyaddons.com/wp-content/plugins/happy-elementor-addons/assets/fonts/happy-icons.woff2) format("woff2"),url(//demo-x.happyaddons.com/wp-content/plugins/happy-elementor-addons/assets/fonts/happy-icons.woff) format("woff"),url(//demo-x.happyaddons.com/wp-content/plugins/happy-elementor-addons/assets/fonts/happy-icons.svg#happy-icons) format("svg");font-weight:normal;font-style:normal;font-display:swap;}.hm,.fashm{font-family:"Happy Icons"!important;speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.hm-3d-rotate:before{content:"\e900";}.hm-degree:before{content:"\e901";}.hm-accordion-horizontal:before{content:"\e902";}.hm-accordion-vertical:before{content:"\e903";}.hm-alarm-clock:before{content:"\e904";}.hm-alien-gun:before{content:"\e905";}.hm-alien:before{content:"\e906";}.hm-anchor:before{content:"\e907";}.hm-android:before{content:"\e908";}.hm-angle-down:before{content:"\e909";}.hm-angle-left:before{content:"\e90a";}.hm-angle-right:before{content:"\e90b";}.hm-angle-up:before{content:"\e90c";}.hm-apple:before{content:"\e90d";}.hm-arrow-left:before{content:"\e90e";}.hm-arrow-right:before{content:"\e90f";}.hm-arrow-zoom-out:before{content:"\e910";}.hm-arrow-corner:before{content:"\e911";}.hm-arrow-down:before{content:"\e912";}.hm-arrow-left1:before{content:"\e913";}.hm-arrow-right1:before{content:"\e914";}.hm-arrow-up:before{content:"\e915";}.hm-article:before{content:"\e916";}.hm-avatar-man:before{content:"\e917";}.hm-avatar-woman:before{content:"\e918";}.hm-badge1:before{content:"\e919";}.hm-badge2:before{content:"\e91a";}.hm-badge3:before{content:"\e91b";}.hm-bamboo:before{content:"\e91c";}.hm-basketball:before{content:"\e91d";}.hm-battery:before{content:"\e91e";}.hm-beach-seat:before{content:"\e91f";}.hm-bell:before{content:"\e920";}.hm-bicycle:before{content:"\e921";}.hm-blog-content:before{content:"\e922";}.hm-bluetooth:before{content:"\e923";}.hm-board:before{content:"\e924";}.hm-body:before{content:"\e925";}.hm-bomb:before{content:"\e926";}.hm-bond-hand:before{content:"\e927";}.hm-bond:before{content:"\e928";}.hm-bonsai:before{content:"\e929";}.hm-book:before{content:"\e92a";}.hm-bowl:before{content:"\e92b";}.hm-brick-wall:before{content:"\e92c";}.hm-brush-paint:before{content:"\e92d";}.hm-brush-roll:before{content:"\e92e";}.hm-brush:before{content:"\e92f";}.hm-bug:before{content:"\e930";}.hm-bulb:before{content:"\e931";}.hm-calculation:before{content:"\e932";}.hm-calendar:before{content:"\e933";}.hm-camera:before{content:"\e934";}.hm-candle:before{content:"\e935";}.hm-candles:before{content:"\e936";}.hm-car:before{content:"\e937";}.hm-card:before{content:"\e938";}.hm-caret-down:before{content:"\e939";}.hm-caret-fill-down:before{content:"\e93a";}.hm-caret-fill-left:before{content:"\e93b";}.hm-caret-fill-right:before{content:"\e93c";}.hm-caret-fill-up:before{content:"\e93d";}.hm-caret-left:before{content:"\e93e";}.hm-caret-right:before{content:"\e93f";}.hm-caret-up:before{content:"\e940";}.hm-carousal:before{content:"\e941";}.hm-cart-empty:before{content:"\e942";}.hm-cart-full:before{content:"\e943";}.hm-caution:before{content:"\e944";}.hm-chair:before{content:"\e945";}.hm-chair2:before{content:"\e946";}.hm-chat-bubble-single:before{content:"\e947";}.hm-chat-bubble:before{content:"\e948";}.hm-cheese:before{content:"\e949";}.hm-chef-cap:before{content:"\e94a";}.hm-clip-board:before{content:"\e94b";}.hm-clip:before{content:"\e94c";}.hm-cloud-down:before{content:"\e94d";}.hm-cloud-up:before{content:"\e94e";}.hm-cloud:before{content:"\e94f";}.hm-code-browser:before{content:"\e950";}.hm-code-clean:before{content:"\e951";}.hm-code:before{content:"\e952";}.hm-cog:before{content:"\e953";}.hm-color-card:before{content:"\e954";}.hm-color-plate:before{content:"\e955";}.hm-compass-math:before{content:"\e956";}.hm-compass:before{content:"\e957";}.hm-corner:before{content:"\e958";}.hm-crop:before{content:"\e959";}.hm-cross-circle:before{content:"\e95a";}.hm-cross-game:before{content:"\e95b";}.hm-cross-gap:before{content:"\e95c";}.hm-cross:before{content:"\e95d";}.hm-crown:before{content:"\e95e";}.hm-cube:before{content:"\e95f";}.hm-cup-coffee:before{content:"\e960";}.hm-cup:before{content:"\e961";}.hm-currency-paper:before{content:"\e962";}.hm-dashboard:before{content:"\e963";}.hm-delivery-van:before{content:"\e964";}.hm-diamond-ring:before{content:"\e965";}.hm-direction-both:before{content:"\e966";}.hm-direction-right:before{content:"\e967";}.hm-disable-person:before{content:"\e968";}.hm-disc:before{content:"\e969";}.hm-dislike:before{content:"\e96a";}.hm-dollar-on-hand:before{content:"\e96b";}.hm-door-path:before{content:"\e96c";}.hm-Download-circle:before{content:"\e96d";}.hm-download:before{content:"\e96e";}.hm-drag-inside:before{content:"\e96f";}.hm-drag-outside:before{content:"\e970";}.hm-drag:before{content:"\e971";}.hm-drawer:before{content:"\e972";}.hm-dribbble:before{content:"\e973";}.hm-dropper:before{content:"\e974";}.hm-egg-fry:before{content:"\e975";}.hm-ellipsis-fill-h:before{content:"\e976";}.hm-ellipsis-fill-v:before{content:"\e977";}.hm-ellipsis-horizontal:before{content:"\e978";}.hm-ellipsis-vertical:before{content:"\e979";}.hm-emo-normal:before{content:"\e97a";}.hm-emo-sad:before{content:"\e97b";}.hm-emo-smile:before{content:"\e97c";}.hm-envelop:before{content:"\e97d";}.hm-facebook:before{content:"\e97e";}.hm-fancy-futton:before{content:"\e97f";}.hm-feeder:before{content:"\e980";}.hm-file-cabinet:before{content:"\e981";}.hm-file-rotate:before{content:"\e982";}.hm-file:before{content:"\e983";}.hm-files:before{content:"\e984";}.hm-film-roll:before{content:"\e985";}.hm-film:before{content:"\e986";}.hm-finger-index:before{content:"\e987";}.hm-finger-print:before{content:"\e988";}.hm-fire-flame:before{content:"\e989";}.hm-flag:before{content:"\e98a";}.hm-flip-card1:before{content:"\e98b";}.hm-flip-card2:before{content:"\e98c";}.hm-folder-network:before{content:"\e98d";}.hm-folder:before{content:"\e98e";}.hm-football:before{content:"\e98f";}.hm-footer:before{content:"\e990";}.hm-form:before{content:"\e991";}.hm-forward:before{content:"\e992";}.hm-fountain-pen:before{content:"\e993";}.hm-gender-female:before{content:"\e994";}.hm-gender-male:before{content:"\e995";}.hm-gender-sign:before{content:"\e996";}.hm-gender:before{content:"\e997";}.hm-ghost:before{content:"\e998";}.hm-gift-box:before{content:"\e999";}.hm-globe1:before{content:"\e99a";}.hm-globe2:before{content:"\e99b";}.hm-globe3:before{content:"\e99c";}.hm-globe4:before{content:"\e99d";}.hm-google:before{content:"\e99e";}.hm-graduate-cap:before{content:"\e99f";}.hm-graph-bar:before{content:"\e9a0";}.hm-graph-pie:before{content:"\e9a1";}.hm-graph:before{content:"\e9a2";}.hm-grid-even:before{content:"\e9a3";}.hm-grid-masonry:before{content:"\e9a4";}.hm-grid-twist:before{content:"\e9a5";}.hm-grid:before{content:"\e9a6";}.hm-group:before{content:"\e9a7";}.hm-hand-mike:before{content:"\e9a8";}.hm-hand-watch:before{content:"\e9a9";}.hm-hand:before{content:"\e9aa";}.hm-header:before{content:"\e9ab";}.hm-headphone:before{content:"\e9ac";}.hm-headset:before{content:"\e9ad";}.hm-heart-beat:before{content:"\e9ae";}.hm-hexa:before{content:"\e9af";}.hm-highlighter:before{content:"\e9b0";}.hm-home:before{content:"\e9b1";}.hm-hot-spot:before{content:"\e9b2";}.hm-hotdog:before{content:"\e9b3";}.hm-ice-cream:before{content:"\e9b4";}.hm-icon-box:before{content:"\e9b5";}.hm-imac:before{content:"\e9b6";}.hm-image-compare:before{content:"\e9b7";}.hm-image-slider:before{content:"\e9b8";}.hm-image:before{content:"\e9b9";}.hm-inbox:before{content:"\e9ba";}.hm-infinity:before{content:"\e9bb";}.hm-info:before{content:"\e9bc";}.hm-injection:before{content:"\e9bd";}.hm-instagram:before{content:"\e9be";}.hm-jar-chemical:before{content:"\e9bf";}.hm-key:before{content:"\e9c0";}.hm-language-change:before{content:"\e9c1";}.hm-laptop:before{content:"\e9c2";}.hm-layer:before{content:"\e9c3";}.hm-lens:before{content:"\e9c4";}.hm-like:before{content:"\e9c5";}.hm-line-graph-pointed:before{content:"\e9c6";}.hm-link:before{content:"\e9c7";}.hm-linkedin:before{content:"\e9c8";}.hm-linux:before{content:"\e9c9";}.hm-list-2:before{content:"\e9ca";}.hm-list-group:before{content:"\e9cb";}.hm-list:before{content:"\e9cc";}.hm-location-pointer:before{content:"\e9cd";}.hm-lock:before{content:"\e9ce";}.hm-logo-carousel:before{content:"\e9cf";}.hm-logo-grid:before{content:"\e9d0";}.hm-lotus:before{content:"\e9d1";}.hm-love:before{content:"\e9d2";}.hm-madel:before{content:"\e9d3";}.hm-magic-wand:before{content:"\e9d4";}.hm-magnet:before{content:"\e9d5";}.hm-mail-open:before{content:"\e9d6";}.hm-man-range:before{content:"\e9d7";}.hm-map-marker:before{content:"\e9d8";}.hm-map-pointer:before{content:"\e9d9";}.hm-measurement:before{content:"\e9da";}.hm-memory:before{content:"\e9db";}.hm-menu-price:before{content:"\e9dc";}.hm-micro-chip:before{content:"\e9dd";}.hm-microphone1:before{content:"\e9de";}.hm-microphone2:before{content:"\e9df";}.hm-mobile:before{content:"\e9e0";}.hm-money-bag:before{content:"\e9e1";}.hm-money:before{content:"\e9e2";}.hm-monitor:before{content:"\e9e3";}.hm-mouse:before{content:"\e9e4";}.hm-muscle:before{content:"\e9e5";}.hm-net:before{content:"\e9e6";}.hm-network1:before{content:"\e9e7";}.hm-network2:before{content:"\e9e8";}.hm-newspaper:before{content:"\e9e9";}.hm-nuclear-circle:before{content:"\e9ea";}.hm-office-file:before{content:"\e9eb";}.hm-pacman:before{content:"\e9ec";}.hm-paper-fold:before{content:"\e9ed";}.hm-paper-plane-alt:before{content:"\e9ee";}.hm-paper-plane:before{content:"\e9ef";}.hm-pause:before{content:"\e9f0";}.hm-pen-head:before{content:"\e9f1";}.hm-pen-pencil:before{content:"\e9f2";}.hm-pen-scale:before{content:"\e9f3";}.hm-pen-paper:before{content:"\e9f4";}.hm-pen:before{content:"\e9f5";}.hm-pencil:before{content:"\e9f6";}.hm-pendrive:before{content:"\e9f7";}.hm-phone:before{content:"\e9f8";}.hm-pillar:before{content:"\e9f9";}.hm-pin-man-range:before{content:"\e9fa";}.hm-pin-man:before{content:"\e9fb";}.hm-pin:before{content:"\e9fc";}.hm-plane:before{content:"\e9fd";}.hm-play-end:before{content:"\e9fe";}.hm-play-next:before{content:"\e9ff";}.hm-play-previous:before{content:"\ea00";}.hm-play-start:before{content:"\ea01";}.hm-play-button:before{content:"\ea02";}.hm-play-store:before{content:"\ea03";}.hm-play:before{content:"\ea04";}.hm-playing-card:before{content:"\ea05";}.hm-plus-box:before{content:"\ea06";}.hm-plus-circle:before{content:"\ea07";}.hm-plus-gap:before{content:"\ea08";}.hm-plus-open:before{content:"\ea09";}.hm-popup:before{content:"\ea0a";}.hm-power:before{content:"\ea0b";}.hm-printer:before{content:"\ea0c";}.hm-progress-bar:before{content:"\ea0d";}.hm-promo:before{content:"\ea0e";}.hm-pulse:before{content:"\ea0f";}.hm-puzzle:before{content:"\ea10";}.hm-question:before{content:"\ea11";}.hm-quote:before{content:"\ea12";}.hm-radar:before{content:"\ea13";}.hm-radiation:before{content:"\ea14";}.hm-reading-glass-alt:before{content:"\ea15";}.hm-reading-glass:before{content:"\ea16";}.hm-recycle-bin:before{content:"\ea17";}.hm-recycle:before{content:"\ea18";}.hm-refresh-time:before{content:"\ea19";}.hm-reply:before{content:"\ea1a";}.hm-responsive-device:before{content:"\ea1b";}.hm-review:before{content:"\ea1c";}.hm-rocket1:before{content:"\ea1d";}.hm-rocket2:before{content:"\ea1e";}.hm-rss:before{content:"\ea1f";}.hm-safety-cap:before{content:"\ea20";}.hm-safety-kit:before{content:"\ea21";}.hm-sand-watch:before{content:"\ea22";}.hm-scale:before{content:"\ea23";}.hm-scanner:before{content:"\ea24";}.hm-scissor:before{content:"\ea25";}.hm-screen:before{content:"\ea26";}.hm-search:before{content:"\ea27";}.hm-seo:before{content:"\ea28";}.hm-server-network:before{content:"\ea29";}.hm-server:before{content:"\ea2a";}.hm-share:before{content:"\ea2b";}.hm-shield:before{content:"\ea2c";}.hm-ship:before{content:"\ea2d";}.hm-shirt:before{content:"\ea2e";}.hm-shopping-bag1:before{content:"\ea2f";}.hm-shopping-bag2:before{content:"\ea30";}.hm-shopping-bag3:before{content:"\ea31";}.hm-shopping-bag4:before{content:"\ea32";}.hm-shuffle:before{content:"\ea33";}.hm-shutter:before{content:"\ea34";}.hm-sign-in:before{content:"\ea35";}.hm-sign-out:before{content:"\ea36";}.hm-sitemap1:before{content:"\ea37";}.hm-sitemap2:before{content:"\ea38";}.hm-skart:before{content:"\ea39";}.hm-skull:before{content:"\ea3a";}.hm-skyscraper:before{content:"\ea3b";}.hm-slider-doc:before{content:"\ea3c";}.hm-slider-h-range:before{content:"\ea3d";}.hm-slider-image:before{content:"\ea3e";}.hm-slider-range-h:before{content:"\ea3f";}.hm-slider-v-open:before{content:"\ea40";}.hm-slider-video:before{content:"\ea41";}.hm-slider:before{content:"\ea42";}.hm-smart-watch:before{content:"\ea43";}.hm-snow:before{content:"\ea44";}.hm-spa-face:before{content:"\ea45";}.hm-spa-stone-flower:before{content:"\ea46";}.hm-spa-stone:before{content:"\ea47";}.hm-spark:before{content:"\ea48";}.hm-speaker-off:before{content:"\ea49";}.hm-speaker-on:before{content:"\ea4a";}.hm-spoon-fork:before{content:"\ea4b";}.hm-spoon:before{content:"\ea4c";}.hm-star:before{content:"\ea4d";}.hm-step-flow:before{content:"\ea4e";}.hm-steps:before{content:"\ea4f";}.hm-stop-watch:before{content:"\ea50";}.hm-stop:before{content:"\ea51";}.hm-support-call:before{content:"\ea52";}.hm-tab:before{content:"\ea53";}.hm-table-lamp:before{content:"\ea54";}.hm-tablet:before{content:"\ea55";}.hm-tag:before{content:"\ea56";}.hm-target-arrow:before{content:"\ea57";}.hm-target:before{content:"\ea58";}.hm-target1:before{content:"\ea59";}.hm-team-carousel:before{content:"\ea5a";}.hm-team-member:before{content:"\ea5b";}.hm-tennis-ball:before{content:"\ea5c";}.hm-terminal:before{content:"\ea5d";}.hm-testimonial-carousel:before{content:"\ea5e";}.hm-testimonial:before{content:"\ea5f";}.hm-text-animation:before{content:"\ea60";}.hm-theatre:before{content:"\ea61";}.hm-tick-circle:before{content:"\ea62";}.hm-tick:before{content:"\ea63";}.hm-tickets:before{content:"\ea64";}.hm-tie-knot:before{content:"\ea65";}.hm-tie:before{content:"\ea66";}.hm-timeline:before{content:"\ea67";}.hm-toggle:before{content:"\ea68";}.hm-tools:before{content:"\ea69";}.hm-tree-square:before{content:"\ea6a";}.hm-twitter-bird:before{content:"\ea6b";}.hm-twitter:before{content:"\ea6c";}.hm-ufo:before{content:"\ea6d";}.hm-umbralla:before{content:"\ea6e";}.hm-unlock:before{content:"\ea6f";}.hm-up-down:before{content:"\ea70";}.hm-upload:before{content:"\ea71";}.hm-upward-top-right:before{content:"\ea72";}.hm-user-female:before{content:"\ea73";}.hm-user-id:before{content:"\ea74";}.hm-user-male:before{content:"\ea75";}.hm-video-camera:before{content:"\ea76";}.hm-water-drop:before{content:"\ea77";}.hm-weather-cloud-day:before{content:"\ea78";}.hm-weather-cloud:before{content:"\ea79";}.hm-weather-day-rain:before{content:"\ea7a";}.hm-weather-day-snow:before{content:"\ea7b";}.hm-weather-day-windy-rain:before{content:"\ea7c";}.hm-weather-flood:before{content:"\ea7d";}.hm-weather-night-cloud:before{content:"\ea7e";}.hm-weather-rain-alt:before{content:"\ea7f";}.hm-weather-rain:before{content:"\ea80";}.hm-weather-snow:before{content:"\ea81";}.hm-weather-sun-rain:before{content:"\ea82";}.hm-weather-sun:before{content:"\ea83";}.hm-weather-sunny-day:before{content:"\ea84";}.hm-weather-thunder:before{content:"\ea85";}.hm-weather-windy-rain:before{content:"\ea86";}.hm-webcam1:before{content:"\ea87";}.hm-webcam2:before{content:"\ea88";}.hm-weight-scale:before{content:"\ea89";}.hm-windows:before{content:"\ea8a";}.hm-wine-glass2:before{content:"\ea8b";}.hm-wine-glass:before{content:"\ea8c";}.hm-worker-cap:before{content:"\ea8d";}.hm-youtube:before{content:"\ea8e";}.hm-centralize:before{content:"\ea8f";}.hm-add-section:before{content:"\ea90";}.hm-advanced-heading:before{content:"\ea91";}.hm-air-baloon:before{content:"\ea92";}.hm-arrow2:before{content:"\ea93";}.hm-bicycle2:before{content:"\ea94";}.hm-bond2:before{content:"\ea95";}.hm-bond3:before{content:"\ea96";}.hm-bond4:before{content:"\ea97";}.hm-calendar2:before{content:"\ea98";}.hm-carousel:before{content:"\ea99";}.hm-code-page:before{content:"\ea9a";}.hm-comment-circle:before{content:"\ea9b";}.hm-comment-square:before{content:"\ea9c";}.hm-copy:before{content:"\ea9d";}.hm-cursor:before{content:"\ea9e";}.hm-envelop2:before{content:"\ea9f";}.hm-factory:before{content:"\eaa0";}.hm-finger-point:before{content:"\eaa1";}.hm-finger-swipe-both:before{content:"\eaa2";}.hm-finger-swipe-corner:before{content:"\eaa3";}.hm-finger-swipe-left:before{content:"\eaa4";}.hm-finger-swipe-up:before{content:"\eaa5";}.hm-finger-swipe:before{content:"\eaa6";}.hm-finger-touch:before{content:"\eaa7";}.hm-folder-network:before{content:"\eaa8";}.hm-folder-sync:before{content:"\eaa9";}.hm-graph-bar2:before{content:"\eaaa";}.hm-graph-pie2:before{content:"\eaab";}.hm-heading-h:before{content:"\eaac";}.hm-heading-html:before{content:"\eaad";}.hm-heart:before{content:"\eaae";}.hm-home2:before{content:"\eaaf";}.hm-indent-left:before{content:"\eab0";}.hm-indent-right:before{content:"\eab1";}.hm-lock-close:before{content:"\eab2";}.hm-lock-open:before{content:"\eab3";}.hm-map-pointer-add:before{content:"\eab4";}.hm-map-pointer-check:before{content:"\eab5";}.hm-map-pointer-delete:before{content:"\eab6";}.hm-map-pointer2:before{content:"\eab7";}.hm-map:before{content:"\eab8";}.hm-navigation1:before{content:"\eab9";}.hm-navigation2:before{content:"\eaba";}.hm-page-export:before{content:"\eabb";}.hm-page-sync:before{content:"\eabc";}.hm-piramid:before{content:"\eabd";}.hm-plug:before{content:"\eabe";}.hm-point-marker:before{content:"\eabf";}.hm-quote2:before{content:"\eac0";}.hm-refresh-check:before{content:"\eac1";}.hm-refresh:before{content:"\eac2";}.hm-refresh2:before{content:"\eac3";}.hm-scrolling-image:before{content:"\eac4";}.hm-sign-turn-right:before{content:"\eac5";}.hm-speedometer:before{content:"\eac6";}.hm-sticky:before{content:"\eac7";}.hm-sync-cloud:before{content:"\eac8";}.hm-sync:before{content:"\eac9";}.hm-sync2:before{content:"\eaca";}.hm-table-lamp2:before{content:"\eacb";}.hm-target2:before{content:"\eacc";}.hm-timeline-spiral:before{content:"\eacd";}.hm-tv:before{content:"\eace";}.hm-vespa:before{content:"\eacf";}.hm-happyaddons:before{content:"\ead0";}.hm-brain:before{content:"\ead1";}.hm-breadcrumbs:before{content:"\ead2";}.hm-circular-chat:before{content:"\ead3";}.hm-currency-exchange:before{content:"\ead4";}.hm-cta:before{content:"\ead5";}.hm-data-table:before{content:"\ead6";}.hm-display-condition:before{content:"\ead7";}.hm-digital-memory:before{content:"\ead8";}.hm-dollar-box:before{content:"\ead9";}.hm-faq:before{content:"\eada";}.hm-facebook-feed:before{content:"\eadb";}.hm-header-footer:before{content:"\eadc";}.hm-heart:before{content:"\eadd";}.hm-image-accordion:before{content:"\eade";}.hm-image-masking:before{content:"\eadf";}.hm-instagram:before{content:"\eae0";}.hm-mail-chimp:before{content:"\eae1";}.hm-minus-large:before{content:"\eae2";}.hm-minus-small:before{content:"\eae3";}.hm-mobile-chat:before{content:"\eae4";}.hm-motion-button:before{content:"\eae5";}.hm-news-ticker:before{content:"\eae6";}.hm-offcanvas-menu:before{content:"\eae7";}.hm-post-grid:before{content:"\eae8";}.hm-post-list:before{content:"\eae9";}.hm-post-tab:before{content:"\eaea";}.hm-pricing-menu:before{content:"\eaeb";}.hm-scheduled-section:before{content:"\eaec";}.hm-section-link:before{content:"\eaed";}.hm-sticky-video:before{content:"\eaee";}.hm-section-nesting:before{content:"\eaef";}.hm-traffic-signal:before{content:"\eaf0";}.hm-tshirt:before{content:"\eaf1";}.hm-twitter-feed:before{content:"\eaf2";}.hm-grid-layout:before{content:"\eaf3";}.hm-add-to-cart-button:before{content:"\eaf4";}.hm-billing-address:before{content:"\eaf5";}.hm-cart:before{content:"\eaf6";}.hm-Category-Carousel:before{content:"\eaf7";}.hm-Category-Grid:before{content:"\eaf8";}.hm-Category-List:before{content:"\eaf9";}.hm-checkout-1:before{content:"\eafa";}.hm-checkout-2:before{content:"\eafb";}.hm-compare:before{content:"\eafc";}.hm-edit-menu:before{content:"\eafd";}.hm-facebook-review:before{content:"\eafe";}.hm-fb-messanger:before{content:"\eaff";}.hm-filter:before{content:"\eb00";}.hm-google-review:before{content:"\eb01";}.hm-grid-filter:before{content:"\eb02";}.hm-home3:before{content:"\eb03";}.hm-horizontal-timeline:before{content:"\eb04";}.hm-image-scroll:before{content:"\eb05";}.hm-mini-cart:before{content:"\eb06";}.hm-off-canvas-cart:before{content:"\eb07";}.hm-popup1:before{content:"\eb08";}.hm-post-list:before{content:"\eb09";}.hm-Product-Carousel:before{content:"\eb0a";}.hm-product-filter:before{content:"\eb0b";}.hm-product-gallery:before{content:"\eb0c";}.hm-Product-Grid:before{content:"\eb0d";}.hm-Product-List-double:before{content:"\eb0e";}.hm-product-list-single:before{content:"\eb0f";}.hm-product-rating:before{content:"\eb10";}.hm-product-table:before{content:"\eb11";}.hm-product-variation:before{content:"\eb12";}.hm-retina-image:before{content:"\eb13";}.hm-shipping-address:before{content:"\eb14";}.hm-shop:before{content:"\eb15";}.hm-shopping-details:before{content:"\eb16";}.hm-sticky-video-2:before{content:"\eb17";}.hm-Template-Import:before{content:"\eb18";}.hm-trendy-product:before{content:"\eb19";}.hm-user-check:before{content:"\eb1a";}.hm-User-Circle:before{content:"\eb1b";}.hm-user-plus:before{content:"\eb1c";}.hm-user:before{content:"\eb1d";}.hm-video-gallery:before{content:"\eb1e";}.hm-wishlist:before{content:"\eb1f";}.hm-mouse-scroll-h:before{content:"\eb20";}.hm-mouse-scroll-v:before{content:"\eb21";}.hm-speaker:before{content:"\eb22";}.hm-mega-menu:before{content:"\eb23";}.hm-content-slider:before{content:"\eb24";}.hm-text-outline:before{content:"\eb25";}.hm-vector-path:before{content:"\eb26";}.hm-rough-notation:before{content:"\eb27";}.hm-unfold-folder:before{content:"\eb28";}.hm-unfold-paper:before{content:"\eb29";}.hm-speaker2:before{content:"\eb2a";}.hm-video-mask:before{content:"\eb2b";}.hm-dot-navigation:before{content:"\eb2c";}.hm-cursor-hover-click:before{content:"\eb2d";}.hm-finger-hover-touch:before{content:"\eb2e";}.hm-repeat:before{content:"\eb2f";}.hm-event-calendar:before{content:"\eb30";}.hm-map-location-unfold:before{content:"\eb31";}.hm-ticket2:before{content:"\eb32";}.hm-thunder1:before{content:"\eb33";}.hm-thunder2:before{content:"\eb34";}.hm-shield1:before{content:"\eb35";}.hm-switcher:before{content:"\eb36";}.hm-global-badge:before{content:"\eb37";}.hm-wallet:before{content:"\eb38";}.hm-asteroid:before{content:"\eb39";}.hm-repeat2:before{content:"\eb3a";}.hm-corona-covid1:before{content:"\eb3b";}.hm-corona-covid2:before{content:"\eb3c";}.hm-fixed-size-button:before{content:"\eb3d";}.hm-full-page-scroll:before{content:"\eb3e";}.hm-multi-page-scroll:before{content:"\eb3f";}.hm-flag2:before{content:"\eb40";}.hm-advanced-data-table:before{content:"\eb41";}.hm-add-group:before{content:"\eb42";}.hm-add-peoples:before{content:"\eb43";}.hm-age-gate:before{content:"\eb44";}.hm-age-gate2:before{content:"\eb45";}.hm-animated-link:before{content:"\eb46";}.hm-behance-feed:before{content:"\eb47";}.hm-binary-digit:before{content:"\eb48";}.hm-both-way-arrow:before{content:"\eb49";}.hm-camera-plus:before{content:"\eb4a";}.hm-cancel-meeting:before{content:"\eb4b";}.hm-chat-bubble1:before{content:"\eb4c";}.hm-checkout1:before{content:"\eb4d";}.hm-clap:before{content:"\eb4e";}.hm-dribbble-feed:before{content:"\eb4f";}.hm-edd-cart:before{content:"\eb50";}.hm-edd-category-carousel:before{content:"\eb51";}.hm-edd-category:before{content:"\eb52";}.hm-edd-discount:before{content:"\eb53";}.hm-edd-download:before{content:"\eb54";}.hm-edd-login1:before{content:"\eb55";}.hm-edd-login2:before{content:"\eb56";}.hm-edd-mini-cart:before{content:"\eb57";}.hm-edd-my-account-tab:before{content:"\eb58";}.hm-edd-product-carousel:before{content:"\eb59";}.hm-edd-product-grid:before{content:"\eb5a";}.hm-edd-profile-edit:before{content:"\eb5b";}.hm-edd-purchased:before{content:"\eb5c";}.hm-edd-register:before{content:"\eb5d";}.hm-edd-search-bar:before{content:"\eb5e";}.hm-edd-single-product:before{content:"\eb5f";}.hm-facebook-review1:before{content:"\eb60";}.hm-feather:before{content:"\eb61";}.hm-file2:before{content:"\eb62";}.hm-fly-out-menu:before{content:"\eb63";}.hm-grid-link:before{content:"\eb64";}.hm-hexa-bond:before{content:"\eb65";}.hm-image-accordion1:before{content:"\eb66";}.hm-image-swap:before{content:"\eb67";}.hm-link-box:before{content:"\eb68";}.hm-meeting:before{content:"\eb69";}.hm-pdf1:before{content:"\eb6a";}.hm-pdf2:before{content:"\eb6b";}.hm-photo-stack:before{content:"\eb6c";}.hm-qr-code:before{content:"\eb6d";}.hm-remote_carousel:before{content:"\eb6e";}.hm-scroll-top:before{content:"\eb6f";}.hm-square-clock:before{content:"\eb70";}.hm-step-flow2:before{content:"\eb71";}.hm-sub-list:before{content:"\eb72";}.hm-swap-left:before{content:"\eb73";}.hm-tooltips:before{content:"\eb74";}.hm-traveller:before{content:"\eb75";}.hm-tb-archieve-content:before{content:"\eb76";}.hm-tb-archieve-title:before{content:"\eb77";}.hm-tb-author-meta:before{content:"\eb78";}.hm-tb-comments:before{content:"\eb79";}.hm-tb-featured-image:before{content:"\eb7a";}.hm-tb-page-title:before{content:"\eb7b";}.hm-tb-post-content:before{content:"\eb7c";}.hm-tb-post-excerpt:before{content:"\eb7d";}.hm-tb-post-grid:before{content:"\eb7e";}.hm-tb-post-info:before{content:"\eb7f";}.hm-tb-post-list:before{content:"\eb80";}.hm-tb-post-title:before{content:"\eb81";}.hm-tb-site-logo:before{content:"\eb82";}.hm-tb-site-title:before{content:"\eb83";}.hm-lordicon:before{content:"\eb84";}.hm-vault:before{content:"\eb85";}.hm-liquid-hover-image:before{content:"\eb86";}.hm-image-replace:before{content:"\eb87";}.hm-title-tips-vector-path:before{content:"\eb88";}.hm-reading-progress-bar:before{content:"\eb89";}.hm-metro-grid-text-outline:before{content:"\eb8a";}.hm-loop-grid-content-slider:before{content:"\eb8b";}.hm-woo-builder:before{content:"\eb8c";}.hm-verified-info:before{content:"\eb8d";}.hm-unused-media:before{content:"\eb8e";}.hm-related-product:before{content:"\eb8f";}.hm-reading-book:before{content:"\eb90";}.hm-product-title:before{content:"\eb91";}.hm-product-stock:before{content:"\eb92";}.hm-product-rating-78:before{content:"\eb93";}.hm-product-price:before{content:"\eb94";}.hm-product-meta:before{content:"\eb95";}.hm-product-image:before{content:"\eb96";}.hm-product-grid:before{content:"\eb97";}.hm-product-description:before{content:"\eb98";}.hm-product-atribute:before{content:"\eb99";}.hm-media-all:before{content:"\eb9a";}.hm-magic-scroll:before{content:"\eb9b";}.hm-lightbox:before{content:"\eb9c";}.hm-invoice:before{content:"\eb9d";}.hm-global-badge1:before{content:"\eb9e";}.hm-empty-cart-notice:before{content:"\eb9f";}.hm-creative-slider-two:before{content:"\eba0";}.hm-creative-slider-one:before{content:"\eba1";}.hm-comparison-table:before{content:"\eba2";}.hm-checkout-shipping:before{content:"\eba3";}.hm-checkout-payment-method:before{content:"\eba4";}.hm-checkout-order-review:before{content:"\eba5";}.hm-checkout-login:before{content:"\eba6";}.hm-checkout-invoice:before{content:"\eba7";}.hm-checkout-info:before{content:"\eba8";}.hm-checkout-coupon:before{content:"\eba9";}.hm-checkout-bill-form:before{content:"\ebaa";}.hm-cart-total:before{content:"\ebab";}.hm-cart-table:before{content:"\ebac";}.hm-cart-redirection:before{content:"\ebad";}.hm-cart-checkout:before{content:"\ebae";}.hm-cart-btn-number:before{content:"\ebaf";}.hm-ai:before{content:"\ebb0";}