/*	Override telerik styles */
body {
	font-family: "Poppins";
	font-size: 14px;
	font-weight: normal;
	line-height: 24px;
	text-decoration: none;
	text-transform: none
}

/*	BEG: Button */
.k-button {
	font-size: 14px !important;
}
/*	END: Button */

/*	BEG: Window */
/*.k-window .k-window-titlebar {
	color: white;
	background-color: #005598;
}*/

/*	2024.01.319 Telerik added k-hidden to Visible(false) and was hiding our content when we tried to show window */
/*.k-window .k-hidden {
	display: inline !important;
}*/
/*	END: Window */

/*	BEG: Grid */
/*	2024.3.806 If the k-spacer is immediately followed by .k-toolbar-item that contains a .k-searchbox element we will hide the spacer
	Makes so in a grid toolbar the k-spacer which is added when you add a .Search() box is not displayed so we can control the spacing
*/
.k-grid-toolbar .k-spacer:has(+ .k-toolbar-item .k-searchbox) {
	display: none;
}

.k-grid, .k-grid .k-grid-toolbar, .k-grid .k-grid-table {
	font-size: 12px !important;
}

	.k-grid .k-grid-table .k-button {
		font-size: 10px !important;
		line-height: 14px;
	}
		/* Make the deafult edit button on grid row be like k-button-solid-base
			https://www.telerik.com/forums/grid-edit-button-suddenly-gets-primary-styles
		*/
		.k-grid .k-grid-table .k-button.k-button-solid-primary {
			background-color: #e4e7eb;
			color: #212529;
			border-bottom-color: #e4e7eb;
			border-left-color: #e4e7eb;
			border-right-color: #e4e7eb;
			border-top-color: #e4e7eb;
		}

	.k-grid .k-searchbox {
		font-size: 12px;
	}	
	
/*	END: Grid */



