
.popup_close{
	cursor: pointer;
	z-index: 2000;
	text-align: center;
	font-size: 1.8rem;
	line-height: 2.4rem;
	width: 2.4rem;
	height: 2.4rem;
	background-color: #fff;
	color: var(--red_2);
	border-radius: 1.2rem;
	position: absolute;
	right: 0.2rem;
	top: 0.2rem;
	box-shadow: 0 0 10px #000;
	}
.popup_wrap{
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.6);
    top: 0;
	left: 0;
	z-index: 500;
	}
.popup_close_wrap{
	position: relative;
	display: inline-block;
	padding: 2.5rem;
	box-sizing: border-box;
	max-width: calc(100% - 1rem);
	max-height: calc(100% - 1rem);
	width: max-content;
	height: max-content;
  	}
.popup{
	box-shadow: 0 0 10px #000;
	background-color: #fff;
	border-radius: 5px;
	width: calc(100% - 1rem);
	height: calc(100% - 1rem);
	padding: 0.5rem;
	}
.popup_blur_background{
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	}
.popup_header{
	font-size: 1.2rem;
	font-weight: bold;
	width: calc(100% - 0.5rem);
	background-color: var(--red_1);
	color: #fff;
	padding: 0.25rem;
	margin-bottom: 1rem;
	border-radius: 5px;
	}
.popup_button{
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	flex-wrap: wrap;
	}
.popup_button a, .popup_button div{
	display: inline-block;
	text-align: center;
	font-size: 0.9rem;
	font-weight: bold;
	background-color: var(--red_1);
	color: #fff;
	padding: 0.25rem 0.5rem;
	border-radius: 1rem;
	cursor: pointer;
	}