.full-modal {position: absolute;top: 0;	left: 0; bottom: 0;	right: 0;display: none;	opacity: 0;	overflow: hidden; padding:5vw;}
.full-modal:target {display: block;	z-index: 2;	opacity: .98; -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;}
.popup:target ~ .content {overflow: hidden;}
.modal-exit {
	position: fixed;
	top: 25px;
	right: 25px;
	width: 1.5em;
	height: 1.5em;
	z-index: 10;
	padding: 0.2em;
	line-height: 1em;
	text-decoration: none;
	color: #ffffff;
}
.modal-exit:hover {color: #dcdcdc;}
.bg-primary {background-color: rgba(147,182,219,0.89); }
.bg-info { background-color: #5bc0de; }
.bg-success { background-color: #5cb85c; }
.bg-warning { background-color: #f0ad4e; }
.bg-danger { background-color: #d9534f; }

.full-modal h1 {font-size: 3em;  font-weight: 700;  text-align: center;  margin-top:3%;  margin-bottom: 10px;  color: #ffffff;}
.full-modal h2 {color:#FFD500; font-size: 2em; margin:1%; font-weight: 400;}
.full-modal p {font-size: 1.5em; margin:1%;  color: #ffffff;}
.btn-icon i { margin-right: 4px; }
.help-block { color: #dcdcdc;}

.speech-bubble {
	width: 17vw;
	position:absolute; right:6vw; top:2vh;
	background: #50e755;
	border-radius: .4em;
	font-size:1.3vw; font-weight:200;
	padding:1.2vw;
	z-index:100;
	opacity:.89;
}

.speech-bubble:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: .7vw solid transparent;
	border-left-color: #50e755;
	border-right: 0;
	margin-top: -.7vw;
	margin-right: -.7vw;
}