#popup_container
{
	width : 600px;
	position : fixed;
	top : 50px;
	left : calc(50vw - 300px);
	margin : 0px;
	padding : 0px;
	border-radius : 8px;
	box-shadow : 0px 10px 10px 5px rgba(0, 0, 0, 0.5);
	border : 1px solid #1c7ed6;
	background-color : white;
	display : none;

}

#popup_content
{
	width : 100%;
	height : 100%;
	display : flex;
	flex-direction : column;
	align-items : start;
	justify-content : center;
	border-radius : 8px;
}

#popup_content h2
{
	width : 100%;
	margin : 0px;
	padding : 0px;
	color : white;
	text-align : center;
	border-radius : 8px 8px 0px 0px;
	background-color : #1c7ed6;
	font-size : 1.2em;
}

#popup_content p
{
	width : calc(100% - 20px);
	margin : 0px;
	padding : 10px;
	font-size : 14px;
	text-align : center;
}

#popup_buttons
{
	width : calc(100% - 20px);
	margin : 0px;
	padding : 10px;
	display : flex;
	align-items : start;
	justify-content : space-around;
}

#popup_buttons a
{
	display : inline-block;
	width : 40%;
	height : 25px;
	border : 1px solid black;
	text-align : center;
	line-height : 25px;
	border : 1px solid #1c7ed6;
	border-radius : 5px;
	color : #1c7ed6;
	text-decoration : none;
	font-weight : bold;
}

#popup_buttons a:hover
{
	display : inline-block;
	width : 40%;
	height : 25px;
	border : 1px solid black;
	text-align : center;
	line-height : 25px;
	border : 1px solid #454545;
	border-radius : 5px;
	color : white;
	text-decoration : none;
	font-weight : bold;
	background-color : #1c7ed6;
}

#popup_buttons a
{
	display : inline-block;
	width : 40%;
	height : 25px;
	border : 1px solid black;
	text-align : center;
	line-height : 25px;
	border : 1px solid #1c7ed6;
	border-radius : 5px;
}

.hidden_button 
{
	display : none !important;
}