/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

.sticky-jobs-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            align-items: center;
            background-color: #fff;
            padding: 10px 15px;
            border-radius: 30px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sticky-jobs-icon:hover {
            transform: scale(1.05);
        }

        .sticky-jobs-icon img {
            height: 40px;
            width: 40px;
            margin-right: 10px;
        }

        .sticky-jobs-icon span {
            font-weight: bold;
            color: #333;
            font-size: 14px;
        }

        @media (max-width: 600px) {
            .sticky-jobs-icon span {
                display: none;
            }
        }




