.popup_container {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99999;
}

.popup_hidden {
	display: none;
}
.popup_dark_background {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
	position: fixed;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	cursor: pointer;
}


.popup_content {
	background-color: rgba(255,255,255,1);
	max-width: 900px;
	margin: 0 auto;
	height: 65%;
	margin-top: 10%;
	padding: 2%;
	padding-top: 15px;
	overflow-y:  auto;
	
	z-index: 999999;
	position: relative;
}
.popup_content .table_container {
	overflow-x: scroll;
	max-width: 103%;
}

.popup_content .sticky {
	position: -webkit-sticky;
  	position: sticky;
  	left: 0;
  	min-width: 60px;
  	text-align: center;
}
.popup_size_big {
	max-width: 1150px;
	height: 85%;
	margin-top: 4%;
}
.popup_size_normal_tall {
	max-width: 900px;
	height: 85%;
	margin-top: 4%;
}

.popup_size_small_warning {
	max-width: 400px;
	height: 30%;
	margin-top: 20%;
	background-color: rgba(192,57,43,1);
	background-color: var(--main_color);
	color: rgba(255,255,255,1);
	text-align: center;
}
.popup_size_small_warning img {
	max-width: 50%;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
}

.popup_size_small_warning .popup_close_button  {
	display: none;
}
.popup_close_button {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 40px;
	height: 40px;
	padding: 10px;
}
.popup_close_button:hover {
	cursor: pointer;
	opacity: 0.8;
}

.popup_content hr {
	background-color: rgba(99,99,99,1);
}

