

/*
//////////////////////////////////////////////
			POPUP
//////////////////////////////////////////////
*/

.Popup{
	box-shadow: 0px 10px 50px rgb(0 0 0 / 10%);
	background: rgb(255, 255, 255);
	/*backdrop-filter: blur(10px);*/
	font-weight: normal;
	border-radius: 25px;
	/*color: rgba(3, 3, 3, 0.64);*/
	left: 0;
	top: 100%;
	position: absolute;
	z-index: 100;
	padding: 32px;
	width: 320px;
	text-align: left;
}


.Popup.Popup-size-big{
	width: 870px;
}
.Popup.Popup-size-medium{
	width: 500px;
}
.Popup.Popup-size-small{
	width: 150px;
}

.Popup.Popup-pos-right{
	left: unset;
	right: 0;
}
.Popup.Popup-pos-left{
	right: unset;
	left: 0;
}
.Popup.Popup-pos-top{
	top: unset;
	bottom: 0;
}


.Popup.Popup-pos-fixed-center{
	position: fixed;
	margin: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}




/*
//////////////////////////////////////////////
			TABLE
//////////////////////////////////////////////
*/


