﻿.hSub{
display: flex;
height: 100%;
height: 59px;
/* cursor:pointer; */
}
.hSubSB{
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.submenu {
    display: none;
    position: absolute;
    z-index: 10;
    list-style: none;
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    background-color:var(--primary2);
    text-align: left;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size:13px;
    margin-left:-20px;
}

.with-submenu {
    width:100%;
    position: relative;
}

.with-submenu:hover .submenu {
    display: block;
}
/* width */
.submenu::-webkit-scrollbar {
  width: 5px;
}
/* Handle */
.submenu::-webkit-scrollbar-thumb {
  background: #fff; 
  border-radius: 5px;
}

@media (min-width:781px) and (max-width:960px){
    .submenu{font-size:10px;}
}