/**
 *
 * --------------------------------------------------
 * Shortcodes - template specific elements - CSS file
 * --------------------------------------------------
 *
 **/

/*
 *
 * 6. Shortcodes
 *
 *
------------------------------------ */

/* 6.3. Template specific elements
==================================== */

/* 
 * Price table 
 */
 
.gk-price-table {
	padding: 24px 0;
}
.gk-price-table::after {
	clear: both;
	content: "";
	display: table;
}
.gk-price-table.col1 dl {
	width: 100%;
}
.gk-price-table.col2 dl {
	float: left;
	width: 50%;
}
.gk-price-table.col3 dl {
	float: left;
	width: 33.3%;
}
.gk-price-table.col4 dl {
	float: left;
	width: 25%;
}
.gk-price-table.col5 dl {
	float: left;
	width: 20%;
}
.gk-price-table dl {
	background: #fff;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: -1px;
	padding: 20px 32px;
}
.gk-price-table.gkWhite dl {
	background: #f8f8f8;
}
.gk-price-table dt {
	color: #282c2f;
	font-size: 30px;
	font-weight: 400;
}
.gk-price-table dd {
	border-bottom: 1px solid #eee;
	margin: 0;
	padding: 8px 0;
}
.gk-price-table dd:last-child { 
	border: none;
}
.gk-price-table dd a {
	background: #282c2f;
	color: #fff!important;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	height: 28px;
	line-height: 29px;
	margin: 30px auto 10px;
	padding: 0 13px;
	-webkit-transition: background .3s ease-out;
	-moz-transition: background .3s ease-out;
	-ms-transition: background .3s ease-out;
	-o-transition: background .3s ease-out;
	transition: background .3s ease-out;	
}
.gk-price-table dd a:active,
.gk-price-table dd a:focus,
.gk-price-table dd a:hover {
	background: #ED6363!important;
	color: #fff!important;
}
.gk-price-table .gk-premium dd a:active,
.gk-price-table .gk-premium dd a:focus,
.gk-price-table .gk-premium dd a:hover {
	background: #282c2f!important;
	color: #fff!important;
}
.gk-price-table .gk-premium dd a {	
	background: #ED6363;
}
.gk-price-table dd.gk-price {
	color: #282c2f;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 32px;
	padding: 0 0 8px;
}
.gk-price-table dd.gk-price small {
	color: #999;
	font-size: 20px;
	font-weight: 300;
}
.gk-price-table dl.gk-premium {
	border: 3px solid #ED6363;
	margin: -2px 0;
	padding: 32px;
	position: relative;
	z-index: 1;
}
.gk-price-table dl.gk-premium dt,
.gk-price-table dl.gk-premium dd.gk-price {
	color: #ED6363;
}

/* 
 * Grid 
 */
.gk-grid {
	margin-top: 40px;
	max-width: 500px;
	overflow: hidden;
}
.gk-grid > div {
	left: -1px;
	position: relative;
	top: -1px;
}
.gk-grid a {
	border: 1px solid #eee;
	border-bottom: none;
	border-right: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	float: left;
	opacity: 1; filter: alpha(opacity=100);
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.gk-grid a:active,
.gk-grid a:focus,
.gk-grid a:hover {
	opacity: 0.5; filter: alpha(opacity=50);
}

.gk-grid[data-cols="1"] a { width: 100%; }
.gk-grid[data-cols="2"] a { width: 50%; }
.gk-grid[data-cols="3"] a { width: 33.33%; }
.gk-grid[data-cols="4"] a { width: 25%; }
.gk-grid[data-cols="5"] a { width: 20%; }
.gk-grid[data-cols="6"] a { width: 16.66%; }
.gk-grid[data-cols="7"] a { width: 14.28%; }
.gk-grid[data-cols="8"] a { width: 12.5%; }

.gk-grid img {
	display: block;
	max-width: 100%;
	width: 100%;
}