
/**
* page layout
*
*/

body {
	background-color: white;
	color: black;
	font-family: 'Open Sans', segoe ui, Arial, sans-serif;
	font-size: 18px;
	text-rendering: geometricPrecision;
}

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}

div.page {
	display: table;
	width: 100%;
	height: 100%;
}

.page-header {
	background-color: white;
	/*background: url(../../resources/images/logo.png) no-repeat center center;*/
	height: 119px;
	display: table-row;
}

.logo {
	vertical-align: middle;
	text-align: center;
}

.page-content {
	background-color: #edeef0;
	max-width: 365px;
	text-align: center;
	display: table-row;
}

.content-generator {
	display: inline-block;
	padding-top: 11px;
	height: 88px;
}

.content-caption {

}

.content-text {
	background-color: white;
	display: inline-block;
	font-size: 13px;
	line-height: 19px;
	margin-left: 10px;
	margin-right: 10px;
	margin: 0 auto;
	max-width: 360px;
	min-width: 220px;
	padding: 34px 38px 16px 38px;
	position: relative;
	text-align: left;
}

.content-text .caption {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
}

.content-text p {
	margin-bottom: 17px;
}

.content-generator button {
	background-color: white;
	vertical-align: top;	
	height: 100%;
	width: 40px;
}

.content-generator .word {
	cursor: pointer;
	font-size: 22px;
	font-weight: bold;
	height: 100%;
	line-height: 64px;
	overflow: hidden;
	text-align: center;
	text-transform: uppercase;
	width: 300px;
}

.content-generator .word.text-long {
	font-size: 15px;
}

.content-generator .word.text-extralong {
	font-size: 13px;
}

.page-content .container {
	margin-bottom: 10px;
	padding-top: 34px;
}

.generator-field {
	height: 64px;
	max-width: 356px;
	min-width: 300px;

	-webkit-user-select: none;
		 -moz-user-select: none;
			-ms-user-select: none;
					user-select: none;

}

.generator-field {
	background-color: white;
}

.generator-field > .word.fuchsia {
	background: white url(../images/button-fuchsia.png) no-repeat;
}

.generator-field > .word.blue {
	background: white url(../images/button-blue.png) no-repeat;
}

.generator-field > .word.yellow {
	background: white url(../images/button-yellow.png) no-repeat;
}

.generator-field > .word {
	-webkit-transition: background-position 0.4s;
		 -moz-transition: background-position 0.4s;
			 -o-transition: background-position 0.4s;
					transition: background-position 0.4s;
}


.generator-field > .word:active {
	background-position: -10px;
}

.page-footer {
	background-color: #30494d;
	display: table-row;
	height: 64px;
	text-align: center;
}

.container {
	display: table-cell;
}

a {
	color: white;
}

.page-footer .container {
	padding-top: 20px;
}

.arrow-orange {
	background: url(../../resources/images/arrow-orange.png) no-repeat center left;
	margin-right: 15px;
	padding-left: 17px;
}

.arrow-fuchsia {
	background: url(../../resources/images/arrow-fuchsia.png) no-repeat center left;
	padding-left: 17px;
}

.arrow-fuchsia > span:hover {
	opacity: 0.85;
}

.randomizer {
	border-bottom: 32px solid transparent;
	border-left: 32px solid white;
	border-top: 32px solid transparent;
	height: 0;
	width: 0;

	-webkit-transition: border-left-color 0.5s;
		 -moz-transition: border-left-color 0.5s;
			 -o-transition: border-left-color 0.5s;
					transition: border-left-color 0.5s;

}

.randomizer.fuchsia 				{ border-left-color: #ef3dbf; }
.randomizer.fuchsia:hover 	{ border-left-color: #d937ae; }
.randomizer.fuchsia:active 	{ border-left-color: #ffffff; }

.randomizer.yellow 					{ border-left-color: #ffc000; }
.randomizer.yellow:hover 		{ border-left-color: #e8af00; }
.randomizer.yellow:active 	{ border-left-color: #ffffff; }

.randomizer.cyan 						{ border-left-color: #00c3d9; }
.randomizer.cyan:hover 			{ border-left-color: #00b1c5; }
.randomizer.cyan:active 		{ border-left-color: #ffffff; }

.fx-text {
	color: black !important;
	-webkit-transition: color 0.5s;
		 -moz-transition: color 0.5s;
			 -o-transition: color 0.5s;
					transition: color 0.5s;	
}

.is-hidden {
	display: none;
}

.copyright {
	color: #999999;
	font-size: 10px;
	padding-top: 10px;
}

.copyright a {
	color: #999999;
}

.copyright a:hover {
	opacity: 0.5;
}

.button-close {
	position: absolute;
	right: 13px;
	top: 13px;
}

.button-close:hover {
	opacity: 0.5;
}

