body {
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	height: auto;
	margin: auto;
	overflow-x: hidden;
	color: #333;
	font-size: 12px;
	font-size: 1.5vw;
}

/*========================================================*/
.container {
	width:80%;
	max-width:1024px;
	height:auto;
	margin:0 auto;
	display: block;
}

#logo {
	display: none;
	margin: 1vw auto;
	padding-bottom: 1%;
	width: 40%;
	min-height: 4vw;
	height: auto;
}

.intro {
	margin : 10px;
	vertical-align: top;
}

#profile-pic {
	width: 150px;
	height: 150px;
	border-radius: 150px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .8);
}

#profile-pic-container {
	width:25%;
	max-width: 150px;
}



.screen select {
	margin: 0 2px;
}
input {
	border: 0;
	border-bottom: 1px solid #007abc;
	font-size: 12px;
	font-size: 1.5vh;
}

input:focus {
	outline: none;
	background: none;
}

input.text-input {
	border: 0;
	border-bottom: 2px solid #007abc;
	padding: 5px;
	margin: 0 5px;
	font-size: 1em;
}

select {
	max-width: 200px;
	max-width: 20vh;
	display: inline-block;
}

/*=============================  Buttons styling ===========================*/
button {
	padding:2% 5%;
	min-width: 2vw;
	font-size: 12px;
	font-size: 1.4vh;
	border-radius: 5px;
	margin: 1%;
	cursor: pointer;
}

button:focus {
	outline: 0;
}

.service_buttons {	
	color:#3131da;
	background: #fff;
	border: 1px solid #3131da;
	display: inline-block;
}

.service_buttons:hover,
.service_buttons.selected{
	background: #3131da;
	color: #fff;
}

.submit_buttons {
	background: #0078B9;
	color: #fff;
}
.submit_buttons:hover {
	color: #9a9a9a;
}
/*============================= Screens ===========================*/
.screen p {
	line-height: 40px;
	line-height: 4vh;
}

#screen-a-next .submit_buttons {
	display: block;
	margin: 0 auto;
}

/*============================= Spinner CSS ===========================*/
.spinner {
	display: block;
	position: relative;
	width: 64px;
	height: 64px;
	margin: 0 auto;
}
	.spinner div {
		animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
		transform-origin: 32px 32px;
	}
		.spinner div:after {
			content: " ";
			display: block;
			position: absolute;
			width: 6px;
			height: 6px;
			border-radius: 50%;
			background: #717171;;
			margin: -3px 0 0 -3px;
		}
		.spinner div:nth-child(1) {
			animation-delay: -0.036s;
		}
		.spinner div:nth-child(1):after {
			top: 50px;
			left: 50px;
		}
		.spinner div:nth-child(2) {
			animation-delay: -0.072s;
		}
		.spinner div:nth-child(2):after {
			top: 54px;
			left: 45px;
		}
		.spinner div:nth-child(3) {
			animation-delay: -0.108s;
		}
		.spinner div:nth-child(3):after {
			top: 57px;
			left: 39px;
		}
		.spinner div:nth-child(4) {
			animation-delay: -0.144s;
		}
		.spinner div:nth-child(4):after {
			top: 58px;
			left: 32px;
		}
		.spinner div:nth-child(5) {
			animation-delay: -0.18s;
		}
		.spinner div:nth-child(5):after {
			top: 57px;
			left: 25px;
		}
		.spinner div:nth-child(6) {
			animation-delay: -0.216s;
		}
		.spinner div:nth-child(6):after {
			top: 54px;
			left: 19px;
		}
		.spinner div:nth-child(7) {
			animation-delay: -0.252s;
		}
		.spinner div:nth-child(7):after {
			top: 50px;
			left: 14px;
		}
		.spinner div:nth-child(8) {
			animation-delay: -0.288s;
		}
		.spinner div:nth-child(8):after {
			top: 45px;
			left: 10px;
		}
	@keyframes spinner {
		0% {
		transform: rotate(0deg);
		}
		100% {
		transform: rotate(360deg);
		}
	}

/*=================================================*/


.show {
	display: block;
}

.hide {
	display: none;
}

.flex {
	display: flex;
}


.inline-block {
	display: inline-block;
}


/*=================================================*/