.logout-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;

	width: 50rem;
	height: 28.3rem;

	flex-direction: column;
	align-items: center;

	border-radius: 2rem;
	background-color: #fff;

	padding: 5.2rem 4.5rem 3.3rem 4.5rem; 
}

.logout-popup.show {
	display: flex;
}

.logout-popup__title {
	font-size: 2.6rem;
	font-weight: 500;
	letter-spacing: -0.03em;

	margin-bottom: 6rem;
}

.logout-popup__button {
	width: 100%;
	height: 5rem;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;

	border-radius: 3rem;
	background-color: #000;
	transition: background-color 0.3s ease, opacity 0.3s ease;

	border: none;
	outline: none;
}

.logout-popup__button:first-of-type {
	background-color: #AEAEAE;

	margin-bottom: 2rem;
}

.logout-popup__button:first-of-type:hover {
	background-color: #ff1b1b;
}

.logout-popup__button:nth-of-type(2):hover {
	opacity: 0.7;
}

.logout-popup__close {
	top: 1rem;
	right: 1rem;
}


/* Adaptiv */

@media only screen and (min-width: 360px) and (max-width: 767px) {
	.logout-popup {
		width: 100%;
	}
}