 .cm-dropdown-container {
     max-width: 95vw;
     position: absolute;
     z-index: 100;
     top: 45px;
     left: 50%;
     transform: translateX(-50%);
     background-color: #F7F7F8;
     display: none;
     border-radius: 10px;
     font-size: 1rem;
     padding: 10px;
     box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.35);
 }


 .cm-dropdown-container .header {
     font-weight: 600;
     font-size: 18px;
     text-align: center;
     padding: 0;
     padding: 2px 0;
     color: rgba(0, 0, 0, 0.8);
 }


 ul.cm-dropdown-menu {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     grid-template-columns: repeat(3, auto);
     column-gap: 20px;
 }

 .cm-dropdown-item {
     text-wrap: nowrap;
     transition: all 0.3s;
     cursor: pointer;
     padding: 5px 10px;
     font-weight: 500;
 }

 .cm-dropdown-item:hover {
     color: var(--theme-color-red);
     /* text-decoration: underline; */
 }

 .cm-dropdown-item:active {
     color: inherit;
     /* text-decoration: none; */
 }
 
  .dropdown {
       
    }

    .dropdown-menu {
        border-radius: 0;
        display: none;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .dropdown-menu a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .dropdown-submenu {
        position: relative;
        border-radius: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-submenu>a.dropdown-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .show {
        display: block;
    }