/**
 *
 * -------------------------------------------
 * Shortcodes - typography elements - CSS file
 * -------------------------------------------
 *
 **/

/*
 *
 * 6. Shortcodes
 *
 *
------------------------------------ */
@import url("../../News/css/shortcodes.typography.css");
/* Columns */
.gk-columns {
	margin: 10px 0;
	overflow: hidden;
	width: 100%;	
}
.gk-columns > div {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	padding: 0 10px;
}
.gk-columns > div:first-child {
	padding-left: 0;
}
.gk-columns > div:last-child {
	padding-right: 0;
}
.gk-columns[data-column-count="1"] > div {
	padding: 0;
	width: 100%;
}
.gk-columns[data-column-count="2"] > div {
	width: 50%;
}
.gk-columns[data-column-count="3"] > div {
	width: 33.3%;
}
.gk-columns[data-column-count="4"] > div {
	width: 25%;
}
.gk-columns[data-column-count="5"] > div {
	width: 20%;
}
.gk-columns[data-column-count="6"] > div {
	width: 16.66%;
}
.gk-columns[data-column-count="7"] > div {
	width: 14.28%;
}
.gk-columns[data-column-count="8"] > div {
	width: 12.5%;
}

