.popup-container {
	position: fixed;
	width: 40%;
	display: flex;
	justify-content: center;
	justify-self: center;
	align-items: center;
	top: 40%;
	background: #2596be;
	border: 2px solid white;
	border-radius: 10px;
	padding: 20px;
	color: white;
	font-size: 20px;

	.popup {
		width: 100%;
		text-align: center;

		.popup-close {
			display: flex;
			justify-content: flex-end;
			cursor: pointer;
		}

		.confirmation {
			cursor: pointer;
			background: #95c93d;
			border-radius: 10px;
			padding: 10px;
			width: 100px;
			justify-self: center;
		}
	}
}