:root {
--bg-main: #ffffff;
--bg-surface: #f9fafb;
--bg-inverse: #111827;
--border-color: #e5e7eb;
--text-main: #111827;
--text-muted: #6b7280;
--text-light: #9ca3af;
--text-inverse: #ffffff;
--brand-color: #2563eb;
--color-brand-light: #eff6ff;
--color-brand-shadow: rgba(37, 99, 235, 0.08);
--color-plage: #0ea5e9;
--color-shadow-sm: rgba(0, 0, 0, 0.15);
--color-white-90: rgba(255, 255, 255, 0.9);
--backdrop-bg: rgba(0, 0, 0, 0.45);
--font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
--text-on-brand: #ffffff;
--hero-gradient-end: #1e40af;
--hero-orb-1: #60a5fa;
--hero-orb-2: #3b82f6;
--hero-orb-3: #93c5fd;
--color-success: #15803d;
--bg-success: #f0fdf4;
--border-success: #bbf7d0;
--color-error: #b91c1c;
--bg-error: #fef2f2;
--border-error: #fecaca;
--color-warning: #92400e;
--bg-warning: #fffbeb;
--border-warning: #fde68a;
--meteo-clear-bg: #f59e0b;
--meteo-clear-text: #ffffff;
--meteo-clouds-bg: #94a3b8;
--meteo-clouds-text: #ffffff;
--meteo-rain-bg: #3b82f6;
--meteo-rain-text: #ffffff;
--meteo-storm-bg: #312e81;
--meteo-storm-text: #ffffff;
--meteo-snow-bg: #e0f2fe;
--meteo-snow-text: #0f172a;
--meteo-fog-bg: #cbd5e1;
--meteo-fog-text: #0f172a;
}
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
-webkit-text-size-adjust: 100%;
font-family: var(--font-base);
background-color: var(--bg-surface);
color: var(--text-main);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
line-height: 1.5;
}
ul, ol, li {
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
.app-layout {
display: flex;
min-height: 100vh;
}
.sidebar-backdrop {
display: none;
position: fixed;
inset: 0;
background: var(--backdrop-bg);
z-index: 999;
cursor: pointer;
}
.sidebar-backdrop.is-visible {
display: block;
}
.sidebar {
position: sticky;
top: 0;
height: 100vh;
width: 88px;
min-width: 88px;
background-color: var(--bg-main);
border-right: 1px solid var(--border-color);
transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
z-index: 1000;
overflow-x: hidden;
}
.sidebar.is-expanded {
width: 260px;
min-width: 260px;
}
.sidebar-header {
flex-shrink: 0;
height: 72px;
display: flex;
align-items: center;
padding: 0 24px;
border-bottom: 1px solid var(--border-color);
white-space: nowrap;
}
.sidebar-footer {
flex-shrink: 0;
padding: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.version-badge {
background-color: var(--bg-surface);
border: 1px solid var(--border-color);
color: var(--text-light);
font-size: 11px;
font-weight: 600;
padding: 4px 10px;
border-radius: 20px;
white-space: nowrap;
letter-spacing: 0.04em;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--text-main);
}
.brand-logo {
display: block;
width: 40px;
height: 40px;
object-fit: contain;
flex-shrink: 0;
}
.brand-name {
font-size: 22px;
font-weight: 600;
letter-spacing: -0.02em;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
}
.sidebar.is-expanded .brand-name {
opacity: 1;
visibility: visible;
}
.sidebar-menu {
flex: 1;
padding: 24px 16px;
display: flex;
flex-direction: column;
gap: 8px;
overflow-y: auto;
overflow-x: hidden;
scrollbar-width: none;
}
.sidebar-menu::-webkit-scrollbar {
display: none;
}
.menu-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.menu-item {
display: flex;
align-items: center;
gap: 16px;
height: 42px;
padding: 0 16px;
border-radius: 8px;
text-decoration: none;
color: var(--text-muted);
font-weight: 600;
font-size: 14px;
transition: background-color 0.15s, color 0.15s;
white-space: nowrap;
position: relative;
}
.menu-item:hover,
.menu-item:focus {
color: var(--brand-color);
background-color: var(--bg-surface);
outline: none;
}
.menu-item.active {
background-color: var(--brand-color);
color: #fff;
}
.menu-icon {
font-size: 20px;
min-width: 24px;
display: flex;
align-items: center;
justify-content: center;
}
.menu-text {
opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
}
.sidebar.is-expanded .menu-text {
opacity: 1;
visibility: visible;
}
.menu-badge {
margin-left: auto;
opacity: 0;
visibility: hidden;
}
.sidebar.is-expanded .menu-badge {
opacity: 1;
visibility: visible;
}
.custom-tooltip {
position: fixed;
background-color: var(--bg-inverse);
color: var(--text-inverse);
padding: 6px 12px;
border-radius: 6px;
font-size: 13px;
font-weight: 600;
pointer-events: none;
z-index: 100000;
opacity: 0;
visibility: hidden;
transition: opacity 0.15s ease-in-out;
white-space: nowrap;
}
.custom-tooltip.is-visible {
opacity: 1;
visibility: visible;
}
.custom-tooltip.tooltip-right {
transform: translateY(-50%);
}
.custom-tooltip.tooltip-right::before {
content: '';
position: absolute;
top: 50%;
left: -4px;
transform: translateY(-50%);
border-width: 5px 5px 5px 0;
border-style: solid;
border-color: transparent var(--bg-inverse) transparent transparent;
}
.custom-tooltip.tooltip-bottom {
transform: translateX(-50%);
}
.custom-tooltip.tooltip-bottom::before {
content: '';
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
border-width: 0 5px 5px 5px;
border-style: solid;
border-color: transparent transparent var(--bg-inverse) transparent;
}
.main-wrapper {
flex: 1;
display: flex;
flex-direction: column;
min-width: 0;
background-color: var(--bg-main);
}
.top-header {
height: 72px;
background-color: var(--bg-main);
border-bottom: 1px solid var(--border-color);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 24px;
position: sticky;
top: 0;
z-index: 90;
}
.header-left {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 24px;
}
.btn-toggle-sidebar {
background: none;
border: none;
padding: 8px;
cursor: pointer;
color: var(--text-muted);
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.15s;
flex-shrink: 0;
}
.btn-toggle-sidebar:hover {
color: var(--brand-color);
}
.top-nav {
display: none;
}
@media (min-width: 769px) {
.top-nav { display: block; }
}
.top-nav-list {
display: flex;
align-items: center;
gap: 32px;
}
.top-nav-link {
text-decoration: none;
color: var(--text-muted);
font-size: 13px;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 6px;
transition: color 0.15s;
}
.top-nav-link:hover,
.top-nav-link.active {
color: var(--brand-color);
}
@media (min-width: 769px) and (max-width: 1280px) {
.top-nav-list {
gap: 12px;
overflow: hidden;
}
.top-nav-link {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 120px;
display: block;
}
}
.header-right {
display: flex;
align-items: center;
gap: 20px;
}
.search-form {
position: relative;
display: flex;
align-items: center;
}
.icon-search {
position: absolute;
left: 12px;
color: var(--text-light);
font-size: 15px;
pointer-events: none;
}
.search-input {
width: 240px;
height: 40px;
padding: 0 16px 0 36px;
background-color: var(--bg-surface);
border: 1px solid var(--border-color);
border-radius: 6px;
font-family: inherit;
font-size: 14px;
color: var(--text-main);
transition: border-color 0.15s;
appearance: none;
}
.search-input::placeholder {
color: var(--text-light);
}
.search-input:focus {
outline: none;
border-color: var(--brand-color);
}
.btn-icon {
background: none;
border: none;
padding: 8px;
cursor: pointer;
color: var(--text-muted);
font-size: 20px;
transition: color 0.15s;
flex-shrink: 0;
}
.btn-icon:hover {
color: var(--brand-color);
}
.page-content {
padding: 32px 24px;
max-width: 1440px;
margin: 0 auto;
width: 100%;
}
.content-block {
background-color: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 24px;
}
.chat-widget {
position: fixed;
bottom: 24px;
right: 24px;
z-index: 10000;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
}
.btn-chat-toggle {
width: 56px;
height: 56px;
border-radius: 50%;
background-color: var(--brand-color);
color: #fff;
border: none;
font-size: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.chat-window {
width: 300px;
background-color: var(--bg-main);
border: 1px solid var(--border-color);
border-radius: 8px;
display: none;
flex-direction: column;
min-height: 100px;
max-height: 400px;
}
.chat-window.is-open { display: flex; }
.chat-header {
padding: 16px;
border-bottom: 1px solid var(--border-color);
font-weight: 600;
font-size: 14px;
color: var(--text-main);
}
.chat-body {
flex: 1;
overflow-y: auto;
padding: 8px;
}
.group-item {
display: flex;
align-items: center;
padding: 12px;
text-decoration: none;
color: var(--text-main);
border-radius: 6px;
font-size: 14px;
}
.group-item:hover { background-color: var(--bg-surface); }
.group-item i { margin-left: auto; color: var(--text-muted); }
.btn-pro {
display: inline-flex;
align-items: center;
gap: 7px;
height: 34px;
padding: 0 14px;
background: var(--brand-color);
color: var(--text-inverse);
border-radius: 8px;
font-family: var(--font-base);
font-size: 13px;
font-weight: 700;
text-decoration: none;
white-space: nowrap;
transition: opacity 0.15s;
flex-shrink: 0;
}
.btn-pro:hover { opacity: 0.88; }
.btn-pro i { font-size: 16px; line-height: 1; }
@media (max-width: 768px) {
.btn-pro-label { display: none; }
.btn-pro { padding: 0 10px; }
}
.menu-item-logout .menu-icon i {
color: #ef4444;
transition: color 0.15s;
}
.menu-item-logout:hover .menu-icon i {
color: #dc2626;
}
.menu-item-logout:hover {
color: #ef4444;
background-color: #fef2f2;
}
.icon-sidebar-open { display: none; }
.icon-sidebar-closed { display: block; }
.sidebar.is-expanded ~ .main-wrapper .icon-sidebar-open,
[aria-expanded="true"] .icon-sidebar-open { display: block; }
.sidebar.is-expanded ~ .main-wrapper .icon-sidebar-closed,
[aria-expanded="true"] .icon-sidebar-closed { display: none; }
.bottom-nav {
display: none;
}
.secondary-nav {
display: none;
}
.header-brand-mobile {
display: none;
}
.sidebar-mobile-nav {
display: none;
}
.sidebar-mobile-divider {
height: 1px;
background-color: var(--border-color);
margin: 8px 0 16px;
}
@media (max-width: 991px) {
.top-header {
padding: 0 16px;
}
.search-input {
width: 180px;
}
}
@media (max-width: 768px) {
.sidebar {
position: fixed;
top: 0;
left: 0;
height: 100vh;
height: 100dvh;
width: 260px !important;
min-width: 260px !important;
transform: translateX(-100%);
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 1000;
overflow-x: hidden;
overflow-y: hidden;
}
.sidebar-menu {
flex: 1;
min-height: 0;
overflow-y: auto;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.sidebar.is-expanded {
transform: translateX(0);
}
.sidebar .brand-name,
.sidebar .menu-text,
.sidebar .menu-badge {
opacity: 1 !important;
visibility: visible !important;
}
.custom-tooltip {
display: none !important;
}
.main-wrapper {
width: 100%;
min-width: 0;
}
.top-header {
padding: 0 12px;
gap: 8px;
}
.header-left {
gap: 8px;
min-width: 0;
}
.search-form {
display: none;
}
.header-brand-mobile {
display: flex;
align-items: center;
}
.sidebar-mobile-nav {
display: block;
}
.bottom-nav {
display: flex;
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 56px;
background: var(--bg-main);
border-top: 1px solid var(--border-color);
z-index: 900;
}
.secondary-nav {
display: flex;
position: sticky;
top: 72px;
left: 0;
right: 0;
height: 52px;
background: var(--bg-main);
border-bottom: 1px solid var(--border-color);
z-index: 89;
}
.secondary-nav-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2px;
text-decoration: none;
color: var(--text-muted);
font-size: 10px;
font-weight: 600;
transition: color 0.15s;
background: none;
border: none;
cursor: pointer;
padding: 0;
}
.secondary-nav-item i {
font-size: 20px;
line-height: 1;
}
.secondary-nav-item:hover,
.secondary-nav-item.active {
color: var(--brand-color);
}
.btn-toggle-sidebar {
display: none;
}
.header-brand-mobile-title {
display: none !important;
}
.bottom-nav-item {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 3px;
text-decoration: none;
color: var(--text-muted);
font-size: 10px;
font-weight: 600;
transition: color 0.15s;
}
.bottom-nav-item i {
font-size: 20px;
line-height: 1;
}
.bottom-nav-item:hover,
.bottom-nav-item.active {
color: var(--brand-color);
}
.main-wrapper {
padding-bottom: 56px;
}
.page-content {
padding: 16px 12px;
}
.chat-widget {
bottom: calc(56px + 12px);
right: 16px;
}
.chat-window {
width: calc(100vw - 32px);
max-width: 320px;
}
}
@media (max-width: 480px) {
.top-header {
padding: 0 10px;
}
.page-content {
padding: 12px 10px;
}
}
.simple-cookie-banner {
position: fixed;
bottom: -100px;
left: 50%;
transform: translateX(-50%);
width: 90%;
max-width: 500px;
background: var(--bg-main, #ffffff);
border: 1px solid var(--border-color, #e5e7eb);
border-radius: 12px;
padding: 16px 20px;
z-index: 999999;
display: flex;
flex-direction: column;
gap: 12px;
opacity: 0;
visibility: hidden;
transition: bottom 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.simple-cookie-banner.show {
bottom: 24px;
opacity: 1;
visibility: visible;
}
.simple-cookie-text {
font-size: 13px;
color: var(--text-main, #111827);
line-height: 1.5;
margin: 0;
text-align: center;
}
.simple-cookie-text a {
color: var(--brand-color, #2563eb);
text-decoration: none;
}
.simple-cookie-text a:hover {
text-decoration: underline;
}
.simple-cookie-buttons {
display: flex;
justify-content: center;
gap: 10px;
}
.simple-cookie-btn {
padding: 8px 16px;
border: none;
border-radius: 8px;
font-size: 13px;
font-weight: 700;
cursor: pointer;
transition: opacity 0.15s;
}
.simple-cookie-btn.refuse {
background: var(--bg-surface, #f9fafb);
color: var(--text-main, #111827);
border: 1px solid var(--border-color, #e5e7eb);
}
.simple-cookie-btn.accept {
background: var(--brand-color, #2563eb);
color: #ffffff;
}
.simple-cookie-btn:hover {
opacity: 0.85;
}
@media (max-width: 768px) {
.simple-cookie-banner.show {
bottom: 80px;
width: 95%;
}
}
.footer-bottom {
border-top: 1px solid var(--border-color);
background-color: var(--bg-main);
padding: 16px 24px;
font-size: 12px;
color: var(--text-muted);
}
.footer-container {
max-width: 1440px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-center a {
color: var(--text-muted);
font-size: 20px;
transition: color 0.15s;
}
.footer-center a:hover {
color: #1877f2;
}
.footer-right a {
color: var(--brand-color);
text-decoration: none;
font-weight: 600;
}
.footer-right a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.footer-container {
flex-direction: column;
gap: 12px;
padding-bottom: 56px;
}
}
.sidebar-reco {
flex-shrink: 0;
margin-top: 8px;
padding-top: 8px;
border-top: 1px solid var(--border-color);
}
.sidebar-reco-header {
display: flex;
align-items: center;
gap: 16px;
height: 42px;
padding: 0 16px;
border-radius: 8px;
color: var(--text-muted);
white-space: nowrap;
margin-bottom: 0;
}
.sidebar-reco-icon {
font-size: 20px;
min-width: 24px;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
flex-shrink: 0;
}
.sidebar-reco-title {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.07em;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s;
}
.sidebar.is-expanded .sidebar-reco-title {
opacity: 1;
visibility: visible;
}
.sidebar-reco-viewport,
.sidebar-reco-nav {
display: none;
}
.sidebar.is-expanded .sidebar-reco-viewport {
display: block;
overflow: hidden;
border-radius: 12px;
}
.sidebar.is-expanded .sidebar-reco-nav {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 4px;
padding-bottom: 8px;
}
.sidebar-reco-track {
display: flex;
transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
will-change: transform;
}
.sidebar-reco-card {
flex: 0 0 100%;
width: 100%;
height: 200px;
position: relative;
border-radius: 12px;
overflow: hidden;
text-decoration: none;
display: block;
}
.sidebar-reco-img {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.sidebar-reco-card:hover .sidebar-reco-img {
transform: scale(1.06);
}
.sidebar-reco-overlay {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
z-index: 1;
}
.sidebar-reco-badge {
position: absolute;
top: 12px;
left: 12px;
background: var(--bg-surface);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid var(--border-color);
color: var(--text-main);
font-size: 10px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 5px 12px;
border-radius: 30px;
z-index: 2;
max-width: calc(100% - 24px);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sidebar-reco-content {
position: absolute;
bottom: 16px; left: 16px; right: 16px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
z-index: 2;
}
.sidebar-reco-infos {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.sidebar-reco-price {
color: #fff;
font-weight: 700;
font-size: 14px;
line-height: 1.2;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.sidebar-reco-duration {
color: rgba(255,255,255,0.8);
font-size: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.sidebar-reco-arrow {
width: 32px; height: 32px;
border-radius: 50%;
background: var(--brand-color);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.2s ease, background-color 0.2s ease;
}
.sidebar-reco-card:hover .sidebar-reco-arrow {
transform: scale(1.1);
background: #1e40af;
}
.sidebar-reco-btn {
width: 36px; height: 36px;
border-radius: 50%;
border: 1px solid var(--border-color);
background: var(--bg-surface);
color: var(--text-main);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
font-size: 14px;
flex-shrink: 0;
}
.sidebar-reco-btn:hover {
background: var(--brand-color);
color: var(--text-inverse);
border-color: var(--brand-color);
}
.sidebar-reco-counter {
font-size: 11px;
font-weight: 600;
color: var(--text-light);
line-height: 36px;
}
@media (max-width: 768px) {
.sidebar.is-expanded .sidebar-reco-viewport,
.sidebar.is-expanded .sidebar-reco-nav {
display: flex;
}
.sidebar.is-expanded .sidebar-reco-viewport {
display: block;
}
}
.header-brand-mobile-title {
display: none;
}
@media (max-width: 768px) {
.header-brand-mobile-title {
display: none;
}
}
[data-theme="dark"] {
--bg-main: #111827;
--bg-surface: #1f2937;
--bg-inverse: #ffffff;
--border-color: #374151;
--text-main: #f9fafb;
--text-muted: #9ca3af;
--text-light: #6b7280;
--text-inverse: #111827;
--color-brand-light: rgba(37, 99, 235, 0.15);
--color-white-90: rgba(17, 24, 39, 0.9);
--text-on-brand: #ffffff;
--hero-gradient-end: #111827;
--hero-orb-1: #1e3a8a;
--hero-orb-2: #1e40af;
--hero-orb-3: #3730a3;
--color-success: #4ade80;
--bg-success: rgba(74, 222, 128, 0.1);
--border-success: rgba(74, 222, 128, 0.2);
--color-error: #f87171;
--bg-error: rgba(248, 113, 113, 0.1);
--border-error: rgba(248, 113, 113, 0.2);
--color-warning: #fbbf24;
--bg-warning: rgba(251, 191, 36, 0.1);
--border-warning: rgba(251, 191, 36, 0.2);
}
.footer-visits {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 12px;
color: var(--text-light);
margin-left: 12px;
font-weight: 600;
}
.footer-visits i { font-size: 13px; line-height: 1; }
@media (max-width: 600px) {
.footer-visits {
display: block;
margin-left: 0;
margin-top: 2px;
text-align: center;
}
}
.sidebar-visit-badge {
background-color: var(--bg-surface);
border: 1px solid var(--border-color);
color: var(--text-light);
font-size: 11px;
font-weight: 600;
padding: 4px 10px;
border-radius: 20px;
white-space: nowrap;
letter-spacing: 0.04em;
display: inline-flex;
align-items: center;
gap: 5px;
}
.sidebar-visit-badge i { font-size: 12px; line-height: 1; }
.sidebar-visit-badge .visit-full    { display: none; }
.sidebar-visit-badge .visit-compact { display: inline; }
.sidebar.is-expanded .sidebar-visit-badge .visit-compact { display: none; }
.sidebar.is-expanded .sidebar-visit-badge .visit-full    { display: inline; }

@media (max-width: 768px) {
.main-wrapper {
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar.is-expanded ~ .main-wrapper {
transform: translateX(260px);
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
.bottom-nav {
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
body.sidebar-open .bottom-nav {
transform: translateX(260px);
}
}
.bottom-nav {
overflow: visible;
}
.bottom-nav-item--featured {
position: relative;
justify-content: center;
}
.bottom-nav-item--featured i {
position: absolute;
bottom: 26px;
left: 50%;
transform: translateX(-50%);
width: 48px;
height: 48px;
border-radius: 50%;
background-color: var(--brand-color);
color: #fff;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
}
.bottom-nav-item--featured span {
position: absolute;
bottom: 9px;
line-height: 1;
}
}