* {
	vertical-align: baseline;
	font-weight: inherit;
	font-family: inherit;
	font-style: inherit;
	font-size: 100%;
	border: 0 none;
	outline: 0;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

body {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    background-color: #000;
}

strong {
	font-weight: bold !important;
}

.hidden {
	display: none;
}

#wrap,
#content-wrap,
#modal,
.bg,
#path,
#points {
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
}

#logo {
	position: absolute;
	top: 20px;
	left: 20px;
	display: block;
	width: 200px;
	height: 50px;
	background-image: url(../img/bottomline_logo_white.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
}

.bg,
#path,
#points {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.bg,
#path {
	display: none;
}

#content-wrap {
	min-height: 400px;
}

@media (max-width: 768px) {
	#wrap {
		overflow: scroll;
	}
	#content-wrap {
		width: 768px;
		min-width: 768px;
	}
}

#path,
#points {
	top: 50%;
	height: 0px;
	min-height: 0px;
	padding-top: 37.5%;
	margin-top: -18.75%;
	background-size: contain;
}

.point {
	position: absolute;
	display: none;
	width: 30px;
	height: 30px;
	margin: -15px 0 0 -15px;
	border-radius: 50%;
	cursor: pointer;
}

.point .circle {
	position: absolute;
	top: 5px;
	left: 5px;
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
}

.point:hover .circle,
.point.active .circle {
	background-color: #f00;
	box-shadow: 0px 0px 5px 5px rgba(250, 0, 0, 0.7);
}

@keyframes MoveUpDown {
	0%, 100% {
		top: -10px;
	}
	50% {
		top: 0px;
	}
}

.point .arr {
	position: absolute;
	top: 0px;
	left: 50%;
	display: none;
	width: 40px;
	height: 100px;
	margin: -90px 0 0 -20px;
	color: #f00;
	font-size: 80px;
	line-height: 80px;
	font-weight: bold;
	text-align: center;
	-webkit-animation: MoveUpDown 1s linear infinite;
	animation: MoveUpDown 1s linear infinite;
}

.point .content {
	display: none;
}

.content {
	padding: 10px 12px 10px 12px;
	background: rgba(0, 0, 0, 0.75);
	border: none;
	border-radius: 12px;
	box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.5);
}

.content h2 {
	padding: 0 5px 7px 5px;
	margin: 0 0 12px 0;
	color: #fff;
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
	font-weight: 600;
	border-bottom: 1px solid #fff;
}

.content p {
	padding: 0;
	margin: 0 5px 9px 5px;
	color: #f00;
	font-size: 13px;
	line-height: 18px;
	font-style: italic;
	text-transform: uppercase;
}

.content p.risk {
	padding: 0 0 0 35px;
	background-image: url(../img/icon-risk.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 20px;
	cursor: pointer;
}

.tooltipster-arrow {
	display: none;
}

.tooltipster-sidetip .tooltipster-box {
	background: transparent;
	border: none;
	border-radius: 0;
}

.tooltipster-sidetip .tooltipster-content {
	padding: 15px;
}

#modal {
	position: fixed;
	display: none;
}

#modal-frame,
#modal-intro-frame {
	position: absolute;
	top: 20%;
	left: 10%;
	display: block;
	width: 80%;
	padding: 30px 35px 30px 35px;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 12px;
	box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.5);
}

#modal-intro-frame {
	display: none;
	top: auto;
	bottom: 50%;
	left: 50%;
	width: 900px;
	/*height: 120px;*/
	min-height: 120px;
	padding: 30px 100px 30px 100px;
	margin: 0 0 -60px -450px;
	border: 2px solid rgba(255, 0, 0, 1);
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in false;
	-o-transition: all 0.3s ease-in false;
	transition: all 0.3s ease-in;
}

#modal-intro-frame.read {
	bottom: 20px;
	margin: 0 0 0 -450px;
	border: 2px solid rgba(255, 0, 0, 0);
	opacity: 0.9;
}

#modal-intro-frame.hide {
	opacity: 0;
}

#modal-intro-frame .modal-intro-side {
	position: absolute;
	top: 50%;
	display: block;
	width: 80px;
	height: 50px;
	margin: -25px 0 0 0;
	background-image: url(../img/warning.png);
	background-repeat: no-repeat;
	background-position: center center;
}

#modal-intro-frame .modal-intro-side.left {
	left: 0px;
}

#modal-intro-frame .modal-intro-side.right {
	right: 0px;
}

@media (max-width: 980px) {
	#modal-intro-frame {
		right: 20px;
		left: 20px;
		width: auto;
		height: auto;
		margin: 0 0 -60px 0;
	}
	#modal-intro-frame.read {
		right: 20px;
		left: 20px;
		width: auto;
		height: auto;
		margin: 0 0 0 0;
	}
}

@media (max-width: 768px) {
	#modal-frame {
		top: 80px;
		right: 20px;
		bottom: 80px;
		left: 20px;
		width: auto;
	}
	#modal-intro-frame {
		padding: 30px 50px 30px 50px;
	}
	#modal-intro-frame .modal-intro-side {
		width: 30px;
	}
}

.modal-content {
	position: relative;
	display: none;
	color: #fff;
}

#modal-intro-frame .modal-content {
	display: block;
}

.modal-content h2 {
	padding: 0 0 10px 35px;
	margin: 0 0 20px 0;
	color: #f00;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 20px;
}

.modal-content h2 span {
	font-weight: normal;
}

#modal-intro-frame .modal-content h2 {
	padding: 0;
	margin: 0;
}

.modal-content h2.risk {
	background-image: url(../img/icon-risk.png);
	border-bottom: 1px solid #f00;
}

.modal-content h2.solution {
	margin-top: 20px;
	color: #0f0;
	background-image: url(../img/icon-solution.png);
	border-bottom: 1px solid #0f0;
}

.modal-content p {
	padding: 0 0 20px 0;
	margin: 0;
}

.modal-content ul, ol {
	padding: 0 0 10px 25px;
	margin: 0;
}

.modal-content li {
	padding: 0 0 10px 9px;
	margin: 0;
}
