	.fweight{
		font-weight:100 !important;
	}
	.web_mode_night_noBorder{
		border: 0px solid #333 !important;
	}
	#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	}
	.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #ccc;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	}
	@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
	}	
	#contentLoad{
		display:none;
	}
        .pagination {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 20px;
            direction: rtl;
        }
        .pagination a, .pagination span {
            padding: 6px 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            cursor: pointer;
        }
			
	   .pagination a:hover, .pagination span:hover {
            background-color: #FB7908;
            color: #333;
             
        }
			
			
        .pagination .current {
            background-color: #006097;
            color: white;
            font-weight: bold;
        }