select {
            -webkit-appearance: auto;
        }

        .loader {
            width: 100px;
            height: 100px;
            border-radius: 100%;
            position: absolute;
            top: 25%;
            left: 50%;
            transform: translate(-35%, -50%);
            z-index: 1999999;
        }

        #loader-1:before,
        #loader-1:after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100%;
            height: 100%;
            border-radius: 100%;
            border: 10px solid transparent;
            border-top-color: #3498db;
        }

        #loader-1:before {
            z-index: 100;
            animation: spin 1s infinite;
        }

        #loader-1:after {
            border: 10px solid #ccc;
        }

        .loader-job {
            width: 100px;
            height: 100px;
            border-radius: 100%;
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translate(-35%, -50%);
            z-index: 1999999;
        }

        #loader-2:before,
        #loader-2:after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100%;
            height: 100%;
            border-radius: 100%;
            border: 10px solid transparent;
            border-top-color: #3498db;
        }

        #loader-2:before {
            z-index: 100;
            animation: spin 1s infinite;
        }

        #loader-2:after {
            border: 10px solid #ccc;
        }

        @keyframes spin {
            0% {
                -webkit-transform: rotate(0deg);
                -ms-transform: rotate(0deg);
                -o-transform: rotate(0deg);
                transform: rotate(0deg);
            }

            100% {
                -webkit-transform: rotate(360deg);
                -ms-transform: rotate(360deg);
                -o-transform: rotate(360deg);
                transform: rotate(360deg);
            }
        }
             
        .classification-dropdown .btn {
            position: relative;
            display: block;
            width: 100%;
            height: 60px;
            font-size: 15px;
            color: #696969;
            line-height: 30px;
            font-weight: 400;
            background: #ffffff;
            padding: 15px 0px;
            padding-left: 40px;
            border: 0;
            border-radius: 0;
            text-align: left;
            transition: all 300ms ease;
        }
        .classification-dropdown {
            /* max-width: 300px;
            margin: 20px auto; */
        }
    
        button#toggleDropdown {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url(https://edgeout.net/assets/images/down-arrow.png);
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 12px;
        }
    
        .classification-dropdown .dropdown-menu {
            width: 94%;
            padding: 10px;
            border: 1px solid #ddd;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: none; /* Hidden by default */
            background-color: #fff;
            border-radius: 5px;
        }
    
        .classification-dropdown .dropdown-menu.show {
            display: block; /* Show when toggled */
            overflow-y: auto;
            max-height: 400px;
        }
    
        .classification-dropdown .done-btn {
            display: inline-block;
            margin-top: 10px;
            color: #4caf50;
            cursor: pointer;
        }
    
        .classification-dropdown .checkbox-group {
            margin-left: 10px;
        }
        .classification-dropdown label input.parent-checkbox,
        .classification-dropdown label input.child-checkbox {
            display: inline-block;
            width: 18px;
            height: 18px;
            vertical-align: middle;
        }
        .classification-dropdown input.parent-checkbox,
        .classification-dropdown input.child-checkbox {
            display: inline-block;
        }
        #dropdownMenu label {
            min-height: 36px;
        }

        .eo-follower-no { 
            color: #320062; 
            background-color: #f1f4fe; 
            border-radius: 8px; 
            margin-bottom: 5px; 
            display: inline-block; 
            padding: 1px 14px; 
            font-size: 14px; 
            font-weight: 500; 
        } 