| /* | 
 | Licensed to the Apache Software Foundation (ASF) under one | 
 | or more contributor license agreements.  See the NOTICE file | 
 | distributed with this work for additional information | 
 | regarding copyright ownership.  The ASF licenses this file | 
 | to you under the Apache License, Version 2.0 (the | 
 | "License"); you may not use this file except in compliance | 
 | with the License.  You may obtain a copy of the License at | 
 |  | 
 |   http://www.apache.org/licenses/LICENSE-2.0 | 
 |  | 
 | Unless required by applicable law or agreed to in writing, | 
 | software distributed under the License is distributed on an | 
 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | 
 | KIND, either express or implied.  See the License for the | 
 | specific language governing permissions and limitations | 
 | under the License. | 
 | */ | 
 |  | 
 | help { | 
 | 	display: none; | 
 | 	opacity: 0; | 
 | 	color: black; | 
 | 	-webkit-transition: all 1s ease-out; | 
 | 	position: absolute; | 
 | 	background-color: rgba(255,255,255,0.8); | 
 | 	top: 0; | 
 | 	right: 0; | 
 | 	left: 0; | 
 | 	bottom: 0; | 
 | 	z-index: 100001; | 
 |  | 
 | 	#helpContainer { | 
 | 		display: none; | 
 | 		background-color: white; | 
 | 		width: 70%; | 
 | 		height: 70%; | 
 | 		position: relative; | 
 | 		text-align: center; | 
 | 		border: 3px solid darkgrey; | 
 | 		margin: 0 auto; | 
 | 		top: 60px; | 
 | 		@include  border-radius(5px); | 
 | 		padding-top: 10px; | 
 | 		padding: 20px; | 
 |  | 
 | 		&:before { | 
 | 			content: ''; | 
 | 			background-image: url('../resources/templates/gradient/img/info.svg'); | 
 | 			width: 32px; | 
 | 			height: 31px; | 
 | 			display: block; | 
 | 			position: absolute; | 
 | 			top: -11px; | 
 | 			left: -11px; | 
 | 			background-color: white; | 
 |  | 
 | 			background-repeat: no-repeat; | 
 | 			background-position: left; | 
 | 			background-size: auto 100%; | 
 | 		} | 
 | 	} | 
 |  | 
 | 	// Option choose styling | 
 |  | 
 | } | 
 |  | 
 | info { | 
 |  | 
 | 	display: block; | 
 | 	color: black; | 
 | 	cursor: pointer; | 
 | 	text-align: center; | 
 | 	position: absolute; | 
 | 	bottom: 30px; | 
 | 	left: 20px; | 
 |  | 
 | 	i { | 
 | 		background-image: url('../resources/templates/gradient/img/info.svg'); | 
 | 		display: block; | 
 | 		width: 21px; | 
 | 		height: 20px; | 
 | 		display: inline-block; | 
 | 	} | 
 |  | 
 | } | 
 |  | 
 | info-inline { | 
 |  | 
 | 	display: inline-block; | 
 | 	color: black; | 
 | 	cursor: pointer; | 
 | 	text-align: center; | 
 | 	bottom: 30px; | 
 | 	left: 20px; | 
 | 	position: relative; | 
 | 	top: 4px; | 
 |  | 
 | 	i { | 
 | 		background-image: url('../resources/templates/gradient/img/info.svg'); | 
 | 		display: block; | 
 | 		width: 21px; | 
 | 		height: 20px; | 
 | 		display: inline-block; | 
 | 	} | 
 |  | 
 | } | 
 |  | 
 | // Helphub | 
 |  | 
 | helpHub { | 
 |  | 
 | 	display: none; | 
 | 	color: black; | 
 | 	position: absolute; | 
 | 	background-color: white; | 
 | 	top: 0px; | 
 | 	right: 0; | 
 | 	left: 0; | 
 | 	bottom: 0px; | 
 | 	width: auto; | 
 | 	height: auto; | 
 | 	-webkit-box-align: stretch; | 
 | 	-ms-flex-align: stretch; | 
 | 	align-items: stretch; | 
 |  | 
 | 	-webkit-box-orient: horizontal !important; | 
 | 	-ms-flex-direction: row !important; | 
 | 	flex-direction: row !important; | 
 |  | 
 | 	-webkit-box-align: center; | 
 | 	-ms-flex-align: center; | 
 | 	align-items: center; | 
 |  | 
 | 	-webkit-box-flex: 1; | 
 | 	-ms-flex: 1 0 auto; | 
 | 	flex: 1 0 auto; | 
 | 	min-height: 0; | 
 | 	min-width: 0; | 
 | 	z-index: 100001; | 
 | 	text-align: center; | 
 |  | 
 | 	// Option choose styling | 
 |  | 
 | 	#list { | 
 |  | 
 | 		height: 100%; | 
 | 		width: 100%; | 
 |  | 
 | 		h1 { | 
 | 			color: black; | 
 | 			font-weight: bold; | 
 | 		} | 
 |  | 
 | 		ul { | 
 |  | 
 | 			li { | 
 | 				border: 1px solid #E9E9E9; | 
 | 				padding: 20px; | 
 | 				display: block; | 
 |  | 
 | 				a { | 
 | 					text-decoration: none; | 
 | 					color: black; | 
 | 				} | 
 | 			} | 
 | 		} | 
 |  | 
 | 		button { | 
 | 			border: 1px solid transparent !important; | 
 | 			border-radius: 0.3em 0.3em 0.3em 0.3em; | 
 | 			background: #3A7CC2; | 
 | 			cursor: pointer; | 
 | 			color: #FFFFFF; | 
 | 			font-family: 'Helvetica', serif; | 
 | 			font-weight: bold; | 
 | 			height: auto; | 
 | 			min-height: 1.8em; | 
 | 			margin-top: 10px; | 
 | 			padding: 13px 10px 10px; | 
 | 			display: block; | 
 | 			align-items: center; | 
 | 			font-size: 17px; | 
 | 			width: auto; | 
 | 			height: auto; | 
 | 			margin: 0 auto; | 
 | 			margin-top: 20px; | 
 | 		} | 
 |  | 
 | 	} | 
 |  | 
 | 	// Helper classes | 
 |  | 
 | 	red { | 
 | 		color: red; | 
 | 	} | 
 |  | 
 | } |