body.open-popup {
	overflow: hidden;
}

.external-link-popup {
	align-items: baseline;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	transition: opacity 0.3s ease 0s, 
				visibility 0s ease 0.3s,
				width 0s ease 0.3s, 
				height 0s ease 0.3s;
	will-change: height, opacity, visibility, width;
	z-index: 100;
}
.external-link-popup.opened {
	height: 100%;
	width: 100%;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease 0s,
				visibility 0s ease 0s;
}
.popup-content {
	background-color: #fff;
	border-radius: 5px;
	margin: auto;
	max-width: 650px;
	min-width: 300px;
	padding: 20px;
	opacity: 0;
	transform: translate3d(0, -100%, 0);
	transition: opacity 0.3s linear 0s, transform 0.3s ease-out 0s;
	width: calc(100% - 20px);
	will-change: transform, opacity;
}
.opened .popup-content {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.popup-content * {
	font-size: 14px;
	line-height: normal;
}
.site-name {
	font-weight: bold;
}
.popup-close {
	cursor: pointer;
	height: 20px;
	position: absolute;
	right: 20px;
	text-align: center;
	top: 10px;
	width: 20px;
}
.popup-close::after,
.popup-close::before {
	background-color: #d6d6d6;
	content: "";
	height: 20px;
	position: absolute;
	transform: rotate(45deg);
	transition: background-color 0.3s ease 0s;
	width: 2px;
	will-change: background-color;
}
.popup-close::after {
	transform: rotate(-45deg);
}
.popup-close:hover::before,
.popup-close:hover::after {
	background-color: #b6b6b6;
}
.popup-content h2 {
	font-size: 16px;
	font-weight: bold;
}
.popup-content > p {
	margin-top: 10px;
}
.popup-action {
	display: flex;
	justify-content: flex-end;
	margin-top: 15px;
	margin: 10px -10px 0;
	list-style-type: none;
}
.popup-btn {
	background-color: rgba(0, 86, 159, 1);
	border-radius: 5px;
	margin: 0 10px;
	transition: background-color 0.3s ease 0s;
	will-change: background-color;
}
.popup-btn:hover {
	background-color: rgba(0, 86, 159, 0.8);
}
.popup-btn__agree a {
	color: rgba(255, 255, 255, 1);
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	transition: color 0.3s ease 0s;
	will-change: color;

}
.popup-btn__agree:hover a {
	color: rgba(255, 255, 255, 0.8);
}
.popup-btn__reject p {
	color: rgba(255, 255, 255, 1);
	cursor: pointer;
	padding: 10px;
	transition: color 0.3s ease 0s;
	will-change: color;
}
.popup-btn__reject:hover p {
	color: rgba(255, 255, 255, 0.8);
}