@CHARSET "UTF-8";

/* Share Dialog*/

div[id*='-share-container']{
	width: 100%;
	height: 100%;
	display: none;
}

ul[id*='-share-level-list']{
	list-style: none;
	width: 100%;
	height: 40px;
}

ul[id*='-share-level-list'] li{
	float: left;
	margin: 10px 0 0 25px;
}

div[id*='share-content']{
	width: 100%;
	height: 400;
}

div[id*='share-content'] div[data-plugin='gridFilter']{
	width: 100%;
	margin: 10px 0 0 0;
}

div[id*='-share-container'] .bottom-properties-shared{
	padding: 5px 0 5px 0;
}

div[id*='-share-container'].ui-dialog-content{
	padding: 10px;
}

.gp-dialog-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gp-dialog {
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	border-radius: 8px;
	position: relative;
	padding: 0;
	overflow: hidden;
	max-height: 80vh;
}

.gp-dialog-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	cursor: move;
	justify-content: space-between;
	font-size: 18px;
	color: #424242;
}

.gp-dialog-close {
	cursor: pointer;
}

.gp-dialog-body {
	box-sizing: border-box;
	flex-grow: 1;
	padding: 20px;
	max-height: 400px;
	overflow-y: auto;
}

.gp-dialog-body::-webkit-scrollbar {
	width: 6px;
}

.gp-dialog-body::-webkit-scrollbar-track {
	background: #F1F1F1;
}

.gp-dialog-body::-webkit-scrollbar-thumb {
	background: #BBBBBB;
	border-radius: 3px;
}

.gp-dialog-body::-webkit-scrollbar-thumb:hover {
	background: #999999;
}

.gp-dialog-footer {
	padding: 10px;
	text-align: right;
	background: #f5f5f5;
}
