@font-face {
    font-family:"AbarMid-Regular.ttf" ;
    src: url(https://kokorolounge.com/wp-content/uploads/2024/08/AbarMid-Regular.ttf);
}

div.scrollmenu{
    font-family: "AbarMid-Regular.ttf";
}
div.scrollmenu {
    background-color: #ffffff;
}

div.scrollmenu a {
    display: inline-block;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 0px 14px;
    text-decoration: none;
		font-size:15px;
}

div.scrollmenu a:hover {
    font-size: 18px;
}

.scrollmenu ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin: 1rem 0;
    overflow-x: scroll;
    padding: 0 0 0 1rem;
}

/* ul li a{
    height: 30px;
    border-left:1px solid black ;
    line-height: 10px;

} */

.scrollmenu ul li div.card {
    background-color: #ffffff;
    border-radius: 9px;
}
/* .scrollmenu::-webkit-scrollbar {
    height: 1px;
    width: 2px;
}

.scrollmenu::-webkit-scrollbar-track {
    background-color: rgb(233, 233, 233);
    border-radius: 12px;
}

.scrollmenu::-webkit-scrollbar-thumb {
    background-color: rgb(20, 20, 20);
    border-radius: 12px;
}
 */

div.scrollmenu ::-webkit-scrollbar {
    height: 2px;
}

div.scrollmenu ::-webkit-scrollbar-track {
    background-color: rgb(233, 233, 233);
    border-radius: 12px;
}

div.scrollmenu ::-webkit-scrollbar-thumb {
    background-color: rgb(20, 20, 20);
    border-radius: 12px;
}
.scrollmenu ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
}

.scrollmenu li {
    padding: 10px;
}
.scrollmenu ul li a{
    position: relative;
}
.scrollmenu ul li a:after {
    content: " ";
    position: absolute;
    border-left: 1px #6c757d solid;
    top: 35%;
    right: 0;
    margin: -12px;
    height: 30%;
    margin-top: auto;
    margin-bottom: auto;
}
.scrollmenu ul li a:hover:before {
    content: "";
    position: absolute;
    top: -7px;
    background: rgb(0, 0, 0);
    width: 3px;
    height: 3px;
    border-radius: 100%;
    left: calc(50% - 2px);
}
.scrollmenu a.active-link {
    font-weight: bold;
    color: #ff0000; /* Change color to make it noticeable */
}
