#reminder[open] {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
}

#reminder[open] .box {
	width: 50%;
	height: auto;
	background: #fff;
}

#reminder[open] .title {
	position: relative;
	width: 100%;
	background: red;
	color: white;
	padding: 20px;
}
#reminder[open] .title .close::after {
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	width: 24px;
	height: 24px;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXgiPjxwYXRoIGQ9Ik0xOCA2IDYgMTgiLz48cGF0aCBkPSJtNiA2IDEyIDEyIi8+PC9zdmc+) no-repeat center;
}
#reminder[open] .title .close {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: #e8e8e8;
	width: 32px;
	height: 32px;
	border-radius: 24px;
	cursor: pointer;
}

#reminder[open] .title .headline {
	font-size: 2rem;
	display: block;
}

#reminder[open] .inner {
	padding: 20px 40px;
}

#reminder input[type="text"] {
	display: block;
	padding: 6px 12px;
	width: 100%;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

#reminder label {
	font-size: 14px;
	color: #555;
}
#reminder .mt-2 {
	margin-top: 10px;
}
