
.head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid var(--border);
    background: var(--background);
    z-index: 10;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 75px;
    height: 100vh;
    background: var(--mod);
    border-right: 1px solid var(--border);
    transition: width 0.5s ease;
    overflow: hidden;
    z-index: 999;
}

.sidebar:hover {
    width: 225px;
}

.logo {
    position: absolute;
    left: 19px;
    top: 16px;
    transition: left 0.5s ease;
    background-image: var(--logo);
    background-size: cover;
    height: 35px;
    width: 35px;
}


.sidebar:hover .logo {
    left: 20px;
    background-image: var(--logoFull);
    width: 100px;
    height:23px;
    top:20px;
}

.nav-list {
    position: absolute;
    top: 80px;
    left: 0;
    width: 225px;
    color: var(--text);
    list-style: none;
}

.nav-list li {
    margin: 0;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    position: relative;
    opacity: 1;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
    height: 45px;
    margin-bottom: 13px;
    font-size: 13px;
}

.nav-list li:hover {
    background: var(--darkBG);
    color:#fff;
    opacity:1;
}

.nav-ico {
    font-size: 15px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    left: 11px;
    height: 30px;
    width: 30px;
    line-height: 2 !important;
    color: var(--icon);
}


.nav-list li:hover .nav-ico {
    color: #fff;
}

.nav-ico-clicked{
    background: var(--darkBG);
    color: var(--clicked);
    height: 30px;
    width: 30px;
    position: relative;
    left: 11px;
    border-radius: 4px;
    line-height: 2 !important;
    opacity: 1;
}

.nav-list span {
    opacity: 0;
    transform-origin: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    left: 23px;
    top: 1px;
}

.head-title {
    position: absolute;
    left: 95px;
    top: 19px;
    font-weight: 400;
    transition: left 0.5s ease;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}


.sidebar:hover .nav-list span {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

.menu-break {
    margin: 10px 0 15px 0;
    width: 50px;
    height: 1px;
    background: var(--border);
    position: relative;
    left: 12.5px;
    transition: width 0.5s ease, margin 0.5s ease, left 0.5s ease;
}

.sidebar:hover .menu-break {
    width: 175px;
    margin: 10px 0 15px 25px;
    left: 0;
}

.logout-btn {
    position: absolute;
    bottom: 15px;
    left: -6px;
    background: none;
    border: none;
    color: var(--text);
    opacity: 0.7;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: left 0.5s ease;
}

.sidebar:hover .logout-btn {
    left: 0px;
}

.logout-btn i {
    margin-right: 0;
    transition: margin-right 0.3s ease 0.2s;
}

.sidebar:hover .logout-btn i {
    margin-right: 10px;
}

.logout-btn span {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.sidebar:hover .logout-btn span {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

.head-list{
    display: inline;
    position: absolute;
    right: 25px;
    color: var(--themeColor);
    width: auto;
    top: 15px;
    font-size: 18px;
    color:var(--icon);
}

.head-list li{
    float: left;
    margin-left: 25px;
    cursor:pointer;
    color:var(--text);
    font-weight: 500;
}

.dealer-name-dd{
    font-size: 14px;
    position: relative;
    top: 4px;
    border-right: 1px solid var(--text);
    padding-right: 21px;
}

.dealer-list{
    position: fixed !important;
    top: 68px;
    right: 102px;
    background: var(--mod);
    padding: 30px;
    box-shadow: 1px 1px 3px var(--shadow);
    border-radius: 6px;
    width: 300px;
    padding-top: 20px;
}

.head-title.sidebar-hovered {
    left: 245px;
}

.dealer-list-name{
    margin-top: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: .8;
    color: var(--text);
    font-weight: 500;
}