/*
Game Name: Hangman Basic PM Terminology
Author: Mindfire Solutions
Author URI: http://www.mindfiresolutions.com
*/

/*--------------------------CUSTOM COLORS-----------------

# Background color :#f8f8f8
# Text color :#000000
# Header title bar :#f15556 (reddish)
# Alternative ans button: #dfdfdf;
# Alternative ans button hover: #f15556;
# Primary button: #24d875 (green)
# Secondary button, Bottom icons hover, Score Indicator green: #7c8a8d
# Footer background: #ffffff
# Footer icon bg: #808080
# Footer text color: #2a3d4e
# Score Indicator incorrect ans: #e33534
# Score Indicator unanswered: #c2c6c9
# Border color: #dddddd

# */

/*-------------CSS RESET---------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*----------------SITE CSS-----------------*/

html, body {
	background: #333;
	color: #1d1d1d;
	font-family: Helvetica, sans-serif;
	line-height: 1.5;
	height: 100%;
	margin:0;
	padding:0;
}
#disable-events {
    display: none;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99999;
}
cite, em {
    font-style: italic;
}
.font-italic {
    font-style: italic;
}
.font-strong {
    font-weight: bold;
}
.dot-style {
    font-size: 2em;
    position: relative;
    top: 8px;
}
strong {
    font-weight: bold;
}
#hangman-wrapper {
	max-width: 680px;
	background: #f8f8f8;
	margin: 0 auto;
	position:relative;
	height:100%;
}
.clear {
	clear: both;
}
.btn-small{
	width:60px;
	text-align:center;
}
.btn-pause{
	display:inline-block;
	margin:0;
}
.btn-primary{
	background:#24d875;
	color:#fff;
	border:none;
}
.btn-secondary{
	background:#7c8a8d;
	color:#fff;
	border:none;
}
a{
	text-decoration:none;
}
a.primary-link{
	background:#7c8a8d;
	color:#fff;
	border:none;
}
a.primary-link:hover{
	background:#424d4f;
	color:#fff;
	border:none;
}
a.text-link{
	color:#000;
}
a.text-link:hover{
	color:#e33534;

}

/*----------------HEADER-----------------*/

#hangman-header {
	background: #f15556;
	text-align: center;
	font-size: 24px;
	color: #fff;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	height:10%;
	min-height:40px;
	max-height:40px;
	width:96%;
	margin:0 1%;
	position:relative;
	top:5px;
	padding:0 1%;
}
#hangman-header .logo {
	display: inline-block;
	vertical-align: middle;
	padding-right: 10px;
	position: relative;
	top: 3px;
}
/*----------------CONTENT-----------------*/

#hangman-content {
	margin: 0 auto 0 auto;
	padding: 10px 10px 5px 10px;
	display: table;
	height:85%;
}
#game-content{
	display:table-cell;
	vertical-align:middle;
}
#game-content.hide{
	display:none;
}
#hangman-content p{
	font-size:1.5em;
}
#hangman-content h2{
	font-size:1.5em;
	margin-bottom:15px;
}
#hangman-content .question p{
	font-size:1em;
	font-weight:bold;
}

.container {
	max-width: 768px;
	background: #1f253d;
}
.options {
	margin: 0 auto 10px auto;
	width: 96%;
	display: block;
	text-align:center;

}
.question {
	margin: 5% auto 3% auto;
	text-align:left;
	width: 96%;
	display: block;
}
button {
	background: #dfdfdf;
	text-align: left;
	padding: 8px;
	color: #565656;
	margin-bottom: 8px;
	box-shadow: none;
	margin-bottom: 10px;
	width: 45%;
	font-weight: bold;
	border: 1px solid #c5c3c3;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	display: block;
}
button:hover {
	background: #f15556;
	color: #fff;
}
.hint{
	display:inline-block;
	margin:0 25px 5px 0;
	padding:0;
	border:0;
}
.hint li{
		border-radius: 30px;
	width: 30px;
	height: 30px;
	background: #3c404c;
	display:inline-block;
	margin:0 2px;
	color:#fff;
	position:relative;
}
#keyboard .hint li.active{
	background:#24d779;
}
#keyboard .hint li.inactive{
    background: #e33534;
}
.hint li.active{
	background:#24d779;
}
.hint li.inactive{
    background: #e33534;
}
.hint li.correct-display{
	background:#24d779;
}
.hint li span{
	/*position:absolute;
	top:2px;
	left:10px;*/
	display:inline-block;
	vertical-align:middle;
	text-align:center;
	position:relative;
	top:1px;
}
#keyboard{
	background:#3c404c;
	padding:15px 10px;
	text-align:center;
}
#keyboard .hint li{
	background:#fff;
	color:#000;
	width:20px;
	height:20px;
	border-radius:20px;
	font-size:10px;
	margin:0 5px;
}
.numbers{
	border-top:1px solid #333742;
	padding:10px 0;
	margin-top:10px;
	
}
/*----------------FOOTER-----------------*/

#hangman-footer {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	padding: 5px 1%;
	clear: both;
	font-size: 16px;
	font-weight: bold;
	height:10%;
	max-height:30px;
	min-height:30px;
	position:absolute;
	bottom:5px;
	width:96%;
	margin:0 1%;
}
.cta-left {
	float: left;
}
.cta-score {
	float: right;
}
#hangman-footer .icon-bar {
	display: block;
}
#hangman-footer a {
	color: #fff;
	font-size: 20px;
	display: inline-block;
	margin-right: 5px;
	border-radius: 30px;
	width: 30px;
	height: 30px;
	background: grey;
	text-align: center;
	vertical-align: top;
}
#hangman-footer i {
	font-size: 1em;
}
#hangman-footer a:hover {
	background-color: #24d875;
}
#hangman-footer i.fa.fa-play {
	font-size: 0.75em;
	position: relative;
	top: -1px;
	left: 2px;
}
#hangman-footer i.fa.fa-pause:before {
	font-size: small;
	position: relative;
	top: -2px;
}
.cta-score p {
	display: inline-block;
	color: #2a3d4e;
	margin:2px 0;
}
.game-time, .game-score{
	margin-top:2px;
}
.score-indicator {
	display: inline-block;
	position: relative;
	top: 3px;
}
.score-indicator span {
	border: 2px solid #c2c6c9;
	border-radius: 2px;
	display: inline-block;
	margin-right: 1px;
	height: 15px;
}
.score-indicator span.correct-ans {
	border: 2px solid #24d875;
}
.score-indicator span.incorrect-ans {
	border: 2px solid #e33534;
}
/*----------------------GAME CONFIRMATIONS--------------------*/
.game-confirmations{
	margin:45px auto 10px auto;
	text-align:center;
	vertical-align:middle;
	display:table-cell;
}
.confirm-restart{
	margin:20px auto;
	text-align:center;
	
}
.confirm-restart a{
	display:inline-block;
	padding:5px;
	min-width:60px;
	margin:0 20px 0 0;
}
.confirm-restart button{
	text-align:center;
	display:inline-block;
	margin:0 25px;
}
#warning-message{
	display:none;
	background:red;
	color:#fff;
	font-size:1.2em;
	padding:10px;
}
/*------------------------VOLUME SLIDER--------------------*/
#volume-slider{
	display:inline-block;
	position:relative;
}
#slider{
	width: 80px;
	position: absolute;
	height:5px;
	background-color:#bbbbbd;
    left:35px;
	top:-4px;
}
#slider a{
	width:15px;
	height:15px;
}
#slider a.ui-slider-handle{
	background:#fff;
	-moz-box-shadow:    inset 0 0 2px #333;
   -webkit-box-shadow: inset 0 0 2px #333;
   box-shadow:         inset 0 0 2px #333;
   	width: 15px!important;
	height: 15px!important;
}
.tooltip {
	display:none !important;
}
.volume {
	content: "";
	display: inline-block;
	width:30px;
	height:30px;
	background:#808080 url('../images/volume.png') no-repeat 0 -50px;
	position: absolute;
	margin-top: -17px;
    cursor: pointer;
	border-radius:30px;
	left:-4px;
}
.volume:hover{
	background-color:#24d875;
}
.ui-slider-handle {
	position: absolute;
	z-index: 2;
	cursor: pointer;
	font-weight: bold;
	color: #1C94C4;
	outline: none;
	top: -6px;
	margin-left: -12px;
}
.ui-slider-range {
	background: #e33333; /* Old browsers */
		position: absolute;
	border: 0;
	top: 0;
	height: 100%;
}

#slider{
	display:none;
}
/*----------------------------Show/Hide------------------*/
.show{
	display:table-cell;
}
.hide{
	display:none;
}
.bubble-hide{
	visibility:hidden;
}
.bubble-show{
	visibility:visible;
}
/*------------------------MEDIA QUERIES--------------------*/
@media screen and (max-width:480px) {
#hangman-wrapper {
	/*min-height: 320px;*/
}
button {
	display: block;
	width: 90%;
	margin: 0 auto 10px auto;
}
#hangman-footer a {
	font-size: 17px;
	border-radius: 25px;
	width: 25px;
	height: 25px;
}
#hangman-content p{
	font-size:1em;
	line-height:1.2;
} 
.cta-score p{
	font-size:.7em;
	font-weight:bold;
	margin:0;
} 
.game-time, .game-score{
	margin-top:0px;
}
#keyboard{
	padding:5px 10px;
}
#keyboard .hint{
	margin-right:0;
}
}
@media screen and (max-width:320px) {
}
