/*
	DESTOON Copyright (C)2008-2099 www.destoon.com
	This is NOT a freeware,Use is subject to license.txt
*/
#menu a {text-decoration:none;}
.menu {background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.menu ul{
    display: flex;
    list-style: none;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
}

.menu_li {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
}
.menu_li a:hover {color: var(--primary);}
.menu_on {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    color: var(--primary);
    font-weight: 600;
    border-bottom-color: var(--primary);
}
