/*
Theme Name: Hello Eleme child

Template: hello-elementor

*/

/* Add your custom CSS styles below */



.bar {
            font-size: 22px!important;
            color: #fff!important;
            cursor: pointer!important;
            padding: 3px 12px!important;
            background: var(--e-global-color-accent)!important;
            border-radius: 5px!important;
            border: none!important;
        }

        .tab-list {
            position: fixed;
            left: -310px;
            top: 0;
            width: 310px;
            height: 100%;
            background: white;
            z-index: 9999;
            transition: left 0.3s ease-in-out;
            overflow-y: auto;
            padding-top: 20px;
        }

        .tab-list.show {
            left: 0;
        }

        .tab-logo {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
        }

        .tab-logo img {
            width: 130px;
        }

        .cross {
            font-size: 24px;
            color: var(--e-global-color-accent);
            cursor: pointer;
            padding: 5px;
        }



        .tab-menu-list-menu {
            list-style: none;
            padding: 0;
            margin: 10px 20px;
            display: flex;
            flex-direction: column;
        }

        .tab-menu-list-menu-li:last-child {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        
        .tab-menu-list-menu-li-a {
            color: black!important;
            text-decoration: none;
            font-size: 16px;
            padding: 10px;
            display: block;
            width: 100%;
            border-radius: 5px;
        }
        .tab-menu-list-menu-li-a:hover {
            background: var(--e-global-color-accent);
            color: white!important;
        }
        
        .tab-menu-list-menu li:last-child a{
            background: var(--e-global-color-accent);
            color: #fff!important;
            text-align: center;
            width: 80%;
            border-radius: 100px;
        }
        
        /* Overlay Effect */
        #tab-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 9900;
        }

        #tab-menu-overlay.show {
            display: block;
        }