@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.simple-button .fa{
	padding-right: 5px;
}

.simple-button:focus {
	outline: none;
}

.simple-button {
	box-shadow: 0 1px 0 rgba(0,0,0,.05);
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid rgba(0,0,0,.17);
	color: #737373;
	cursor: pointer;
	display: inline-block;
	font-family: sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 500;
	line-height: 34px;
	min-width: 40px;
	padding: 0 20px;
	position: relative;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	display: inline-block;
	border-radius: 8px;
	outline: none;
	transition: all .2s ease;
}


.simple-button:hover {
	/*-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.27);*/
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.27);
	border: 1px solid rgba(0, 0, 0, 0.27);
	color: #333;
	cursor: pointer;
}

.simple-button.green {
	background-color: #689f38;
	color: #fff;
}

.simple-button.blue {
	background-color: #298cda;
	color: #fff;
}

.simple-button.red {
	background-color: #da2929;
	color: #fff;
}

.simple-button:active {
	transform: scale(0.96);
}

.simple-button:active .fa {
	color: transparent;
	-webkit-text-stroke: 1px #00000085;
}


.simple-button .fa {
	transition: color 100ms ease;
}



body :not(input, textarea){
	user-select: none;
}

dialog{
	max-width: none;
	max-height: none;
	border: none;
	font-family: Poppins;
}

body.mobile dialog[open] {
	animation: dialog_com_in 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes dialog_com_in {
	from {
		transform: translateY(10px);
		opacity: 0;
	}
	to {
		transform: translateY(0px);
		opacity: 1;
	}
}
body.mobile dialog[open]::backdrop {
	animation: fade 0.2s ease-out;
}
@keyframes fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


body.ios{
	--bg_attachment: auto;
}


::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	position: absolute;
}

::-webkit-scrollbar-thumb {
	background-color: #555151;
	border-radius: 10px;
}

::-webkit-scrollbar-track {
	background-color: #d3d3d3;
	border-radius: 10px;
}



.manage_component_context_menu_backdrop{
	z-index: 9998;
	position: fixed;
	inset: 0;
	background: #0000000f;
}

