/* ========================================
   Startthegame – Custom CSS
   Bootstrap 5.3.3 override & animations
   ======================================== */

:root {
    --primary: #010080;
    --primary-h: #0100B3;
    --accent: #FFBC42;
    --accent-h: #FFD073;
    --light-bg: #F5F5F7;
    --success: #4CAF50;
    --danger-c: #E53E3E;
    --border-r: 0.625rem;
}

/* ── Animations ── */
@keyframes float-up {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float-down {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-10deg);
    }
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.float-up {
    animation: float-up 4s ease-in-out infinite;
}

.float-down {
    animation: float-down 3s ease-in-out infinite;
}

.spin-slow {
    animation: spin-slow 20s linear infinite;
}

.pulse-anim {
    animation: pulse-scale 3s ease-in-out infinite;
}

/* ── Scroll animations ── */
.anim {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .6s ease, transform .6s ease;
}

    .anim.visible {
        opacity: 1;
        transform: translateY(0);
    }

.anim-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s ease;
}

    .anim-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

/* stagger delays */
.delay-1 {
    transition-delay: .15s;
}

.delay-2 {
    transition-delay: .30s;
}

.delay-3 {
    transition-delay: .45s;
}

.delay-4 {
    transition-delay: .60s;
}

.delay-5 {
    transition-delay: .75s;
}

.delay-6 {
    transition-delay: .90s;
}

/* ── Hero ── */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.text-accent {
    color: var(--accent);
}

.text-primary-c {
    color: var(--primary);
}

.bg-light-bg {
    background-color: var(--light-bg);
}

/* ── Card hover ── */
.card-hover {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    cursor: default;
}

    .card-hover:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 60px rgba(1,0,128,.15) !important;
    }

/* ── Buttons ── */
.btn-pill {
    border-radius: 999px;
    padding: .7rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all .25s;
}

.btn-pill-lg {
    border-radius: 999px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all .25s;
}

.btn-deep-blue {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(1,0,128,.25);
}

    .btn-deep-blue:hover {
        background: var(--primary-h);
        color: #fff;
        transform: scale(1.04);
        box-shadow: 0 6px 24px rgba(1,0,128,.35);
    }

    .btn-deep-blue:focus,
    .btn-deep-blue:focus-visible,
    .btn-deep-blue:active {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 4px 20px rgba(1,0,128,.25);
    }

    .btn-deep-blue:disabled,
    .btn-deep-blue[disabled] {
        background: var(--primary) !important;
        color: #fff !important;
        border-color: transparent !important;
        box-shadow: 0 4px 20px rgba(1,0,128,.25);
        opacity: .75;
    }

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    border: none;
    box-shadow: 0 4px 20px rgba(255,188,66,.35);
}

    .btn-accent:hover {
        background: var(--accent-h);
        color: var(--primary);
        transform: scale(1.04);
    }

    .btn-accent:focus,
    .btn-accent:focus-visible,
    .btn-accent:active {
        background: var(--accent);
        color: var(--primary);
        box-shadow: 0 4px 20px rgba(255,188,66,.35);
    }

/* ── Badge / chip ── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
}

.chip-primary {
    background: rgba(1,0,128,.1);
    color: var(--primary);
    border: 2px solid rgba(1,0,128,.2);
}

/* ── Section padding ── */
.section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ── Step card ── */
.step-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,188,66,.4);
}

/* ── Icon box ── */
.icon-box {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── CTA dark card ── */
.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-h) 100%);
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(1,0,128,.35);
}

.cta-deco-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent);
    opacity: .2;
    font-size: 6rem;
}

.cta-deco-left {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    opacity: .1;
    font-size: 5rem;
}

/* ── Demo modal ── */
.modal-content {
    border-radius: 1.5rem;
    border: none;
}

.form-input {
    padding: .9rem 1rem .9rem 3rem;
    border-radius: 1rem;
    border: 2px solid #e5e5e5;
    background: var(--light-bg);
    outline: none;
    width: 100%;
    transition: border-color .2s;
    font-size: .95rem;
}

    .form-input:focus {
        border-color: var(--primary);
    }

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.form-textarea {
    padding: .9rem 1rem;
    border-radius: 1rem;
    border: 2px solid #e5e5e5;
    background: var(--light-bg);
    outline: none;
    width: 100%;
    resize: none;
    transition: border-color .2s;
    font-size: .95rem;
}

    .form-textarea:focus {
        border-color: var(--primary);
    }

/* ── Scroll to top ── */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 2.8rem;
    height: 2.8rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(1,0,128,.35);
    cursor: pointer;
    z-index: 9999;
    transition: opacity .25s, transform .25s;
}

    #scrollTop:hover {
        transform: scale(1.1);
    }

/* ── Responsive ── */
@media (max-width: 767px) {
    .hero-section {
        min-height: 80vh;
    }
}

/******************************************/

/* ── Hero section ── */
.company-hero-padding {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.company-hero-deco-trophy {
    top: 8rem;
    left: 8%;
    opacity: .15;
    font-size: 4rem;
    color: #FFBC42;
}

.company-hero-deco-code {
    bottom: 2rem;
    right: 10%;
    opacity: .08;
    font-size: 5rem;
    color: #010080;
}

.company-hero-content {
    z-index: 2;
    max-width: 60rem;
    margin: 0 auto;
    padding-top: 4rem;
}

.company-hero-heading {
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.2;
}

.company-hero-desc {
    max-width: 44rem;
}

.company-hero-fade {
    height: 6rem;
    background: linear-gradient(to top, #F5F5F7, transparent);
    pointer-events: none;
}

/* ── Çözümler section ── */
.company-sol-card-primary {
    border-color: rgba(1,0,128,.25) !important;
}

.company-sol-card-accent {
    border-color: rgba(255,188,66,.4) !important;
}

.company-sol-icon-primary {
    background: rgba(1,0,128,.12);
    border: 2px solid rgba(1,0,128,.2);
}

.company-sol-icon-accent {
    background: rgba(255,188,66,.15);
    border: 2px solid rgba(255,188,66,.4);
}

/* ── Platform özellikleri section ── */
.company-feat-icon-accent {
    background: rgba(255,188,66,.12);
}

.company-feat-icon-primary {
    background: rgba(1,0,128,.1);
}

/* ── Nasıl çalışır section ── */
.company-step-card-primary {
    border-color: rgba(1,0,128,.25) !important;
}

.company-step-card-accent {
    border-color: rgba(255,188,66,.4) !important;
}

.company-step-icon-primary {
    background: rgba(1,0,128,.12);
    border: 2px solid rgba(1,0,128,.2);
}

.company-step-icon-accent {
    background: rgba(255,188,66,.15);
    border: 2px solid rgba(255,188,66,.4);
}

/* ── CTA section ── */
.company-cta-inner {
    z-index: 2;
}

.company-cta-desc {
    max-width: 36rem;
    opacity: .9;
}

/* ── Modal section ── */
.company-modal-success-icon {
    width: 5rem;
    height: 5rem;
    background: #d1fae5;
}

.company-modal-disclaimer {
    font-size: .82rem;
}

/* ── Wrong-Hire Cost Stats ── */
.company-cost-stats { text-align: center; }

.company-cost-stats-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: .55;
    margin-bottom: 1rem;
}

.company-cost-card {
    background: var(--light-bg);
    border: 2px solid #e5e5e5;
    border-radius: 1rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    transition: transform .3s ease, box-shadow .3s ease;
}

.company-cost-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(1,0,128,.12);
}

.company-cost-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.company-cost-icon-primary { color: var(--primary); }
.company-cost-icon-accent  { color: var(--accent);  }

.company-cost-value {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.company-cost-value-primary { color: var(--primary); }
.company-cost-value-accent  { color: var(--accent);  }

.company-cost-arrow { font-size: 1.4rem; }

.company-cost-label {
    font-size: .85rem;
    color: var(--primary);
    opacity: .65;
}

/* ============================================================
   Company Auth Pages (Login / Register) — Bootstrap overrides
   ============================================================ */
.cp-auth :root,
.cp-auth-page {
    --bs-primary: #000080;
    --bs-primary-rgb: 0, 0, 128;
    --bs-link-color: #000080;
    --bs-link-color-rgb: 0, 0, 128;
    --bs-link-hover-color: #000099;
}

.cp-auth-page .btn-primary {
    --bs-btn-bg: #000080;
    --bs-btn-border-color: #000080;
    --bs-btn-hover-bg: #000099;
    --bs-btn-hover-border-color: #000099;
    --bs-btn-active-bg: #000070;
    --bs-btn-active-border-color: #000070;
    --bs-btn-disabled-bg: #000080;
    --bs-btn-disabled-border-color: #000080;
}

.cp-auth-page .form-control,
.cp-auth-page .form-select {
    background-color: #f3f3f5;
    border-color: #e5e7eb;
}

.cp-auth-page .form-control:focus,
.cp-auth-page .form-select:focus {
    background-color: #f3f3f5;
    border-color: #000080;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, .15);
}

.cp-auth-page .form-check-input:checked {
    background-color: #000080;
    border-color: #000080;
}

.cp-auth-page .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 128, .15);
}

.cp-auth-page .link-primary {
    color: #000080 !important;
}

.cp-pwd-wrapper {
    position: relative;
}

.cp-pwd-wrapper .cp-toggle-pwd {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 1rem;
}

.cp-pwd-wrapper .cp-toggle-pwd:hover {
    color: #000080;
}

/* ============================================================
   Company Panel — Variables, Layout & Components (cp-*)
   ============================================================ */
:root {
    --cp-primary:        #000080;
    --cp-primary-light:  rgba(0, 0, 128, 0.08);
    --cp-sidebar-width:  260px;
    --cp-sidebar-sm:     64px;
    --cp-topbar-h:       60px;
    --cp-sidebar-bg:     #ffffff;
    --cp-sidebar-border: #e8eaed;
    --cp-body-bg:        #f4f6fb;
    --cp-text:           #1a1f36;
    --cp-text-muted:     #6b7280;
    --cp-active-text:    #000080;
    --cp-hover-bg:       #f3f4f8;
    --cp-radius:         10px;
    --cp-shadow:         0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --cp-shadow-md:      0 4px 16px rgba(0,0,0,.08);
    --cp-transition:     .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--cp-body-bg); font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--cp-text); }
a { text-decoration: none; color: inherit; }

/* Sidebar */
.cp-sidebar {
    position: fixed;
    top: 0; left: 0;
    width: var(--cp-sidebar-width);
    height: 100vh;
    background: var(--cp-sidebar-bg);
    border-right: 1px solid var(--cp-sidebar-border);
    display: flex;
    flex-direction: column;
    z-index: 1040;
    transition: width var(--cp-transition);
    overflow: hidden;
    box-shadow: 2px 0 8px rgba(0,0,0,.04);
}

/* Brand */
.cp-sidebar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--cp-sidebar-border);
    min-height: var(--cp-topbar-h);
    flex-shrink: 0;
    overflow: hidden;
    white-space: nowrap;
}

.cp-brand-icon {
    width: 36px; height: 36px;
    background: var(--cp-primary);
    color: #fff;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem;
    flex-shrink: 0;
}

.cp-brand-text { overflow: hidden; }
.cp-brand-name { display: block; font-weight: 700; font-size: .875rem; color: var(--cp-text); line-height: 1.2; }
.cp-brand-sub  { display: block; font-size: .7rem; color: var(--cp-text-muted); }

/* Nav */
.cp-nav-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: .75rem;
}
.cp-nav-wrapper::-webkit-scrollbar { width: 4px; }
.cp-nav-wrapper::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.cp-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.cp-nav-item { position: relative; }

.cp-nav-link {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .55rem .75rem;
    border-radius: 8px;
    color: var(--cp-text-muted);
    font-size: .835rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--cp-transition), color var(--cp-transition);
    cursor: pointer;
    user-select: none;
}
.cp-nav-link:hover { background: var(--cp-hover-bg); color: var(--cp-text); }
.cp-nav-link.cp-active { background: var(--cp-primary-light); color: var(--cp-primary); }
.cp-nav-link.cp-active .cp-nav-icon { color: var(--cp-primary); }

.cp-nav-icon { font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.cp-nav-text { flex: 1; transition: opacity var(--cp-transition); }

/* Chevron */
.cp-chevron {
    font-size: .7rem;
    transition: transform var(--cp-transition);
    flex-shrink: 0;
    margin-left: auto;
}
.cp-submenu-open > .cp-nav-link .cp-chevron { transform: rotate(90deg); }

/* Badges */
.cp-badge {
    font-size: .65rem;
    font-weight: 600;
    padding: .15rem .4rem;
    border-radius: 20px;
    background: #e8eaed;
    color: var(--cp-text-muted);
    flex-shrink: 0;
}
.cp-badge-ai { background: rgba(0,0,128,.12); color: var(--cp-primary); }

/* Submenu */
.cp-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    padding-left: 2.25rem;
}
.cp-submenu-open > .cp-submenu { max-height: 300px; }
.cp-sub-link {
    display: block;
    padding: .42rem .75rem;
    border-radius: 6px;
    font-size: .8rem;
    color: var(--cp-text-muted);
    font-weight: 500;
    transition: background var(--cp-transition), color var(--cp-transition);
    white-space: nowrap;
}
.cp-sub-link:hover { background: var(--cp-hover-bg); color: var(--cp-text); }
.cp-sub-link.cp-active { color: var(--cp-primary); font-weight: 600; }

/* Collapse button */
.cp-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: .75rem;
    border: none;
    border-top: 1px solid var(--cp-sidebar-border);
    background: transparent;
    color: var(--cp-text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--cp-transition), color var(--cp-transition);
    flex-shrink: 0;
}
.cp-collapse-btn:hover { background: var(--cp-hover-bg); color: var(--cp-primary); }

/* Flyout */
.cp-flyout {
    display: none;
    position: fixed;
    left: var(--cp-sidebar-sm);
    top: 0;
    background: #fff;
    border: 1px solid var(--cp-sidebar-border);
    border-radius: 0 8px 8px 0;
    box-shadow: var(--cp-shadow-md);
    min-width: 180px;
    z-index: 1050;
    padding: .5rem 0;
}
.cp-flyout-title {
    padding: .4rem .9rem .25rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--cp-text-muted);
}
.cp-flyout-item {
    display: block;
    padding: .45rem .9rem;
    font-size: .82rem;
    color: var(--cp-text-muted);
    font-weight: 500;
    transition: background var(--cp-transition), color var(--cp-transition);
}
.cp-flyout-item:hover { background: var(--cp-hover-bg); color: var(--cp-primary); }

/* Main */
.cp-main {
    margin-left: var(--cp-sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left var(--cp-transition);
}

/* Topbar */
.cp-topbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    height: var(--cp-topbar-h);
    background: #fff;
    border-bottom: 1px solid var(--cp-sidebar-border);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: .75rem;
    box-shadow: var(--cp-shadow);
}
.cp-topbar-title { overflow: hidden; }
.cp-page-title { font-size: 1.1rem; font-weight: 700; color: var(--cp-text); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-page-date   { font-size: .75rem; color: var(--cp-text-muted); }

/* Icon button */
.cp-icon-btn {
    position: relative;
    width: 36px; height: 36px;
    border: 1px solid var(--cp-sidebar-border);
    background: transparent;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cp-text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--cp-transition), color var(--cp-transition);
}
.cp-icon-btn:hover { background: var(--cp-hover-bg); color: var(--cp-primary); }

.cp-notif-dot {
    position: absolute; top: 6px; right: 6px;
    width: 7px; height: 7px;
    background: #ef4444;
    border-radius: 50%;
    border: 1.5px solid #fff;
}
.cp-notif-dropdown { min-width: 280px; }

/* User button */
.cp-user-btn {
    border: 1px solid var(--cp-sidebar-border);
    background: transparent;
    border-radius: 40px;
    padding: .3rem .75rem .3rem .3rem;
    cursor: pointer;
    transition: background var(--cp-transition), border-color var(--cp-transition);
}
.cp-user-btn:hover { background: var(--cp-hover-bg); border-color: #c8cdd5; }

.cp-avatar     { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.cp-user-name  { font-size: .8rem; font-weight: 600; color: var(--cp-text); }
.cp-user-role  { font-size: .68rem; color: var(--cp-text-muted); }
.cp-chevron-sm { font-size: .65rem; color: var(--cp-text-muted); }

/* Mobile menu */
.cp-menu-toggle {
    border: none;
    background: transparent;
    font-size: 1.3rem;
    color: var(--cp-text);
    cursor: pointer;
    padding: .25rem .4rem;
    border-radius: 6px;
}
.cp-menu-toggle:hover { background: var(--cp-hover-bg); }

/* Content */
.cp-content { flex: 1; padding: 1.5rem; }

/* Dropdown */
.dropdown-menu { border: 1px solid var(--cp-sidebar-border); border-radius: 10px; box-shadow: var(--cp-shadow-md); }
.dropdown-item:active { background: var(--cp-primary-light); color: var(--cp-primary); }

/* Collapsed state */
body.cp-collapsed .cp-sidebar { width: var(--cp-sidebar-sm); overflow: visible; }
body.cp-collapsed .cp-main    { margin-left: var(--cp-sidebar-sm); }
body.cp-collapsed .cp-nav-text,
body.cp-collapsed .cp-brand-text,
body.cp-collapsed .cp-badge,
body.cp-collapsed .cp-chevron { opacity: 0; pointer-events: none; width: 0; overflow: hidden; }
body.cp-collapsed .cp-nav-link { justify-content: center; padding: .55rem; }
body.cp-collapsed .cp-nav-icon { width: auto; }
body.cp-collapsed .cp-brand-icon { margin: 0 auto; }
body.cp-collapsed .cp-sidebar-brand { justify-content: center; padding: 1.1rem .5rem; }
body.cp-collapsed .cp-nav-wrapper { padding: .75rem .5rem; overflow: visible; }
body.cp-collapsed .cp-nav { overflow: visible; }
body.cp-collapsed .cp-nav-item { overflow: visible; }
body.cp-collapsed .cp-submenu { display: none !important; }
body.cp-collapsed .cp-nav-item:hover .cp-flyout { display: block; }

/* Mobile overlay */
.cp-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1039;
}
.cp-sidebar-overlay.show { display: block; }

@media (max-width: 991.98px) {
    .cp-sidebar {
        transform: translateX(-100%);
        transition: transform var(--cp-transition), width var(--cp-transition);
        width: var(--cp-sidebar-width) !important;
        overflow: hidden !important;
    }
    .cp-sidebar.cp-mobile-open { transform: translateX(0); }
    .cp-main { margin-left: 0 !important; }
    body.cp-collapsed .cp-sidebar { overflow: hidden !important; }
}
