html {
	height: 100%;
}
body {
	height: 100%;
	background: -webkit-radial-gradient(circle, #363636 0%, #000 130%);
	background: -moz-radial-gradient(circle, #363636 0%, #000 130%);
	background: -o-radial-gradient(circle, #363636 0%, #000 130%);	
	background: radial-gradient(circle, #363636 0%, #000 130%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: white;
}

.app-container {
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-family: "SST W01 Light",Helvetica Neue,Helvetica,Arial,sans-serif;
}

.content {
	height: 100%;
}

.container-fluid {
	height: 100%;
}

.no-padding {
	padding: 0;
}

.no-margin {
	padding: 0;
}

.clickable {
    cursor: pointer;
}

.center-all {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

/* speech bubbles */

.center-message{
    display: inline-block;
    position: relative;
    padding: 20px 15px;
    border: solid 1px rgb(80, 80, 80);
    background-color: rgb(31, 31, 31);
    max-width: 85%;
    height: auto;
    display: inline-block;
    line-height: 1.3em;
    text-align: left;
    font-size: 1.1em;
    margin-top: 10%;
/*	white-space: pre-line;*/
}

.center-message:before {
    content: "";
    position: absolute;
    top: 100%;
    border-style: solid;
    border-width: 11px;
    border-color: rgb(31, 31, 31) transparent transparent transparent;
    display: block;
    width: 0;
    z-index: 1;
    left: 50%;
}

.center-message:after {
    content: "";
    position: absolute;
    top: 100%;
    border-style: solid;
    border-width: 14px;
    border-color: rgb(80, 80, 80) transparent transparent transparent;
    display: block;
    width: 0;
    z-index: 0;
    left: calc(50% - 3px);
}
