/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/*proper color for the labels in contact forms */
.contact-form label span {
	color: rgb(255,255,255);
	margin-left: 4px;
	font-weight: normal;
}

/* repair the message after a feedback was sent*/
.box h3 > a {
	display: inline;
}

.box-content img {
	height: initial;
}

ol.letters {
	list-style-type: lower-alpha;
}

ol.roman {
	list-style-type: lower-roman;
}

ol.counters {
	list-style: none;
	padding: 0;
}

ol.counters li span {
	display: block;
	float: left;
	width: 40px;
	color: #E3E3FF;
	font-weight: bold;
}

ol.counters li {
	clear: both;
	padding-top: 10px;
	width: 100%;
}

ol.counters li p {
	float: left;
	width: 88%;
	margin: 0;
}

ol.counters ol {
	margin-left: 15px;
}

ol.counters ol li {
	padding-bottom: 0;
	padding-top: 10px;
}

ol:after, ul:after {
	content: '';
	clear: both;
	display: block;
	width: 100%;
}

.section {
	margin-bottom: 24px;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0;
	clear: both;
}

.content-table {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	margin-top: 0;
	float: left;
	width: 100%;
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
}

.content-table ul, .content-table ul ul {
	list-style: none;
	padding-left: 1em;
}

.content-table li {
	padding-bottom: 6px;
}

.content-table ul li {
	padding-bottom: 3px;
}

.uppercase {
	text-transform: uppercase;
}

small {
	font-size: 12px;
	color: #BBBBBB;
}

.cowkapow a,.cowkapow  a:visited,.cowkapow  a:hover,.cowkapow  a:visited:hover {
	color: rgba(0,49,189,1);
}

#banner img {
	max-width: 100%;
	height: auto;
}

.attachment-post-thumbnail {
	position: relative;
}

@media only screen and (max-width:768px) {
	.game-head {
		padding: 1em;
	}
	
	#menu-custommenu {
		min-width: 60%;
	}
	
	.store-urls {
		float: right;
		padding: .5em;
		text-align: center;
	}
	
	.entry-content {
		padding: 0 1em;
	}
	
	.box-content img {
		width: auto;
	}
	
	.game-head .game-logo {
		margin-right: 1em;
	}
}