/* Fonts
**********************************************************************/

@font-face {
	font-family: GothamHTF-Bold;
	src: url("/fonts/GothamHTF-Bold.otf") format("opentype");
}

@font-face {
	font-family: GothamHTF-Book;
	src: url("/fonts/GothamHTF-Book.otf") format("opentype");
}

/* Dialog
**********************************************************************/

#dialog-child {
	background-color: white;
	border-color: #ccc;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	padding: 20px 30px;
}

#dialog-parent {
	align-items: center;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 3;
}

#dialog-title {
	color: #424c5c;
	font-family: GothamHTF-Bold, Helvetica, Arial, sans-serif;
	font-size: 20px;
}

#dialog-input {
	margin-bottom: 10px;
	resize: none;
	width: 350px;
}