/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Shortcodes
## Columns
## Dropcap
## Buttons
## Alerts
## Highlights
## Dividers
## Archive
## Archive Index
## Archive Grid
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Shortcodes
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Dropcap
--------------------------------------------------------------*/
.dropcap {
	float: left;
	font-size: 52px;
	font-weight: bold;
	line-height: 0.8;
	padding: 0 6px 0 0;
}

/*--------------------------------------------------------------
## Columns
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
	.column {
		float: left;
		margin-bottom: 20px;
		padding-right: 3%;
	}

	.last {
		margin-right: 0;
	}

	.half { width: 48.5%; }
	.third { width: 33.3%; }
	.two-thirds { width: 66.7%; }
	.fourth { width: 25%; }
	.three-fourths { width: 75%; }
}
/*--------------------------------------------------------------
## Buttons
--------------------------------------------------------------*/
.pk-button {
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin: 0 0 1em;
	padding: 10px 15px;
	text-align: center;
}

	a.pk-button {
		color: #fff !important;
		text-decoration: none;
	}

		a:hover.pk-button {
			color: #fff;
			opacity: 0.6;
		}

/* Colors */
.grey { background-color: #ccc; }
.yellow { background-color: #FBCB43; }
.green { background-color: #34B67A; }
.red { background-color: #E57368; }
.blue { background-color: #77A7FB; }
.purple { background-color: #955BA5; }
.black { background-color: #202020; }

/* Size */
.extra-small {
	font-size: 12px; 
	padding: 5px 10px; 
}

.small { 
	font-size: 14px; 
	padding: 10px 15px; 
}

.medium {
	font-size: 16px; 
	padding: 15px 20px; 
}

.large {
	font-size: 18px; 
	padding: 20px 25px;  
}

.extra-large {
	font-size: 20px; 
	padding: 25px 30px;  
}

/* Type */
.square { border-radius: 0; }
.round { border-radius: 3px; }
.pill { border-radius: 30px; }

/* Display */
.inline { display: inline; }
.block { display: block; }

/*--------------------------------------------------------------
## Alerts
--------------------------------------------------------------*/
.alert {
	color: #fff;
	font-size: 18px;
	margin: 0 0 1em;
	padding: 3% 5%;
	text-align: center;
	width: 100%;
}

/* Text Align */
.left { text-align: left; }
.right { text-align: right; }

/*--------------------------------------------------------------
## Highlights
--------------------------------------------------------------*/
.highlight {
	color: #fff;
}

/*--------------------------------------------------------------
## Dividers
--------------------------------------------------------------*/
.divider {
	background: none;
	display: block;
	margin: 20px auto;
	height: 0;
	width: 100%;
}

/* Colors */
.divider.grey { border-color: #ccc; }
.divider.yellow { border-color: #FBCB43; }
.divider.green { border-color: #34B67A; }
.divider.red { border-color: #E57368; }
.divider.blue { border-color: #77A7FB; }
.divider.purple { border-color: #955BA5; }
.divider.black { border-color: #202020; }

/* Type */
.solid { 
	border-top: 1px solid #ccc; 
}

.dashed { 
	border-top: 1px dashed #ccc; 
}

.dotted { 
	border-top: 1px dotted #ccc; 
}

.filled { 
	border-top: 5px solid #ccc; 
}

.double-solid { 
	border-top: 1px solid #ccc; 
	border-bottom: 1px solid #ccc; 
	height: 5px; 
}

.double-dashed { 
	border-top: 1px dashed #ccc; 
	border-bottom: 1px dashed #ccc; 
	height: 5px; 
}

.double-dotted  { 
	border-top: 1px dotted #ccc; 
	border-bottom: 1px dotted #ccc; 
	height: 5px; 
}

/*--------------------------------------------------------------
## Archive
--------------------------------------------------------------*/
ul.shortcode-archive { 
	list-style: none;
	margin: 0;
	padding-bottom: 1em;
}

ul.shortcode-archive li { 
	margin-bottom: 5px;
}

.shortcode-archive-title:before { 
	content: '\f101';
	font-family: 'FontAwesome';
}

.shortcode-archive-title { 
	text-transform: uppercase;
}

.shortcode-date { 
	color: #ccc;
	padding-left: 10px;
}

/*--------------------------------------------------------------
## Archive Index
--------------------------------------------------------------*/
.archive-index .entry-thumbnail {
	float: left;
	margin-top: 0;
	padding-right: 15px;
	width: 22%;
	text-align: left;
}

.archive-index .entry-header {
	float: right;
	width: 78%;
}

.archive-index .entry-header .entry-title {
	font-size: 18px;
	margin-bottom: 8px;
	text-align: left;
}

.archive-index-item {
	margin-bottom: 10px;
}

.archive-index .entry-summary.no { display: none; }

.archive-index a.more-link { display: none; }

/*--------------------------------------------------------------
## Archive Grid
--------------------------------------------------------------*/
.archive-grid {
	margin: 0 -10px;
}

.archive-grid .entry-header .entry-title {
	font-size: 18px;
}

.archive-grid-item {
	float: left;
	margin-bottom: 15px;
	padding: 0 10px;
}

@media screen and (min-width: 1024px) {
	.archive-grid .half { width: 50%; }
	.archive-grid .third { width: 33.3%; }
	.archive-grid .fourth { width: 25%; }

	.archive-grid .half:nth-child(2n+1) { clear: both; }
	.archive-grid .third:nth-child(3n+1) { clear: both; }
	.archive-grid .fourth:nth-child(4n+1) { clear: both; }
}

.archive-grid .entry-summary.no { display: none; }