@charset "UTF-8";
/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: Segoe UI, sans-serif;
	overflow: hidden;
	border-color: #afd8ff;
}

.detailsBox {
	position: relative;
	top: 0;
	margin-left: auto;
	margin-right: auto;
	width: 496px;
	height: auto;
	min-height: 250px;
	max-height: 750px;
	margin-top: 50px;
	padding-bottom: 50px;
	z-index: 3;
	overflow-x: hidden;
	overflow-y: scroll;
	border-style: solid;
	padding: 25px;
}
.detailsBox::-webkit-scrollbar {
	width: 10px;
}
.detailsBox::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: #cccccc;
}

.mainTitle {
	font-size: 32px;
}
.subTitle {
	margin-top: 25px;
	font-size: 22px;
	font-weight: 70;
}
.question {
	margin-top: 25px;
	display: inline-flex;
}
.questionText {
	margin-left: 25px;
	font-size: 18px;
	font-weight: 70;
}
.questionIcon {
	width: 20px;
	height: 20px;
	overflow: hidden;
}
.questionIcon img {
	width: 100%;
}
form {
	margin-top: 15px;
}
input {
	margin-top: 10px;
	margin-left: 20px;
}

#picturePicker {
	min-width: 440px;
	height: 110px;
	margin-top: 20px;
}
.pictureContainer {
	min-width: 110px;
	height: 110px;
	padding: 5px;
	margin-left: 0px;
	display: inline-flex;
}
.pictureChoice {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border-width: 3px;
	border-style: solid;
	box-sizing: border-box;
	cursor: pointer;
}
.pictureChoice img {
	width: 100%;
}

#privacy {
	color: #0084ff;
	text-decoration: underline;
	cursor: pointer;
}
#confirmButton {
	width: 180px;
	float: right;
	background-color: #0084ff;
	margin-top: 20px;
	padding: 5px 15px;
	font-size: 30px;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}