/* Table moble responsive */

@media only screen and (max-width: 800px)
{
	.ck_table_responsive,
	.ck_table_responsive thead,
	.ck_table_responsive tfoot,
	.ck_table_responsive tbody,
	.ck_table_responsive th,
	.ck_table_responsive tr,
	.ck_table_responsive td
	{
		display: block;
	}
	.ck_table_responsive td
	{
		width: 100% !important;
		padding-top: 20px;
	}
	.ck_table_responsive td:first-child
	{
		padding-top: 0;
	}
	.ck_table_responsive img
	{
		width: 100% !important;
		height: auto !important;
	}
}

/*** Text ***/

.ck_green_text
{
	color: #016452;
}
.ck_gold_text
{
	color: #8a794a;
}

/*--- Line height text ---*/

.ck_line_height_20
{
	line-height: 1.2em;
}
.ck_line_height_40
{
	line-height: 1.4em;
}
.ck_line_height_60
{
	line-height: 1.6em;
}
.ck_line_height_80
{
	line-height: 1.8em;
}
.ck_line_height_100
{
	line-height: 2em;
}
.ck_line_height_120
{
	line-height: 2.2em;
}
.ck_line_height_140
{
	line-height: 2.4em;
}
.ck_line_height_160
{
	line-height: 2.6em;
}
.ck_line_height_180
{
	line-height: 2.8em;
}
.ck_line_height_200
{
	line-height: 3em;
}

/*--- Magnified text ---*/

.ck_text_20
{
	font-size: 1.2em;
}
.ck_text_40
{
	font-size: 1.4em;
}
.ck_text_60
{
	font-size: 1.6em;
}
.ck_text_80
{
	font-size: 1.8em;
}
.ck_text_100
{
	font-size: 2em;
}

/*--- Uppercase and magnified text ---*/

.ck_uppercase
{
	text-transform: uppercase;
}

/*--- Light and magnified text ---*/

.ck_light
{
	font-weight: 300;
}

/*--- Fotografija shadow ---*/

.ck_photo
{
	display: block;
	box-shadow: 0px 8px 8px -8px rgba(0, 0, 0, 0.6);
}

/*--- Stil liste ---*/

.ck_bullet_list
{
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 12px;
}

/*--- Horisontalni separatori ---*/

.ck_separator_dotted
{
	height: 1px;
	border-top: 1px dotted #a9a79a;
}
.ck_separator_solid
{
	height: 1px;
	border-top: 1px solid #d7d5ca;
}

/* Tabela */

.ck_table
{
	width: 100%;
	border: 1px solid #e6e6e6;
}
.ck_table td
{
	padding: 10px;
	font-weight: 300;
	font-size: 16px;
}
.ck_table tr:nth-child(odd) td
{
	background: #eee;
}
.ck_table tr:nth-child(even) td
{
	background: #fff;
}

/* Tabela samo padding */

.ck_table_basic
{
	width: 100%;
}
.ck_table_basic td
{
	padding: 10px 25px;
}
.ck_table_basic tr:first-child td
{
	padding-top: 20px;
}
.ck_table_basic tr:last-child td
{
	padding-bottom: 20px;
}

/*--- Dugmad ---*/

.ck_btn
{
	display: inline-block;
	padding: 12px 10px !important;
	font-weight: 300 !important;
	text-transform: none !important;
	border-radius: 5px;
	
	-webkit-transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, color 0.4s ease-in-out;
	-moz-transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, color 0.4s ease-in-out;
	-o-transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, color 0.4s ease-in-out;
    transition: background-color 0.4s ease-in-out, border-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

/* Blue btn */

.ck_blue_btn
{
	color: #fff !important;
	border: 1px solid #013f66 !important;
	background: #013f66 !important;
}
.ck_blue_btn:hover
{
	color: #013f66 !important;
	border: 1px solid #013f66 !important;
	background: #fff !important;
}

.ck_green_btn
{
	color: #fff !important;
	border: 1px solid #016452 !important;
	background: #016452 !important;
}
.ck_green_btn:hover
{
	color: #016452 !important;
	border: 1px solid #016452 !important;
	background: #fff !important;
}

/* Red btn */

.ck_red_btn
{
	color: #fff !important;
	border: 1px solid #e30040 !important;
	background: #e30040 !important;
}
.ck_red_btn:hover
{
	color: #e30040 !important;
	border: 1px solid #e30040 !important;
	background: #fff !important;
}

/* Orange btn */

.ck_orange_btn
{
	color: #fff !important;
	border: 1px solid #f08701 !important;
	background: #f08701 !important;
}
.ck_orange_btn:hover
{
	color: #f08701 !important;
	border: 1px solid #f08701 !important;
	background: #fff !important;
}

/* Purple btn */

.ck_purple_btn
{
	color: #fff !important;
	border: 1px solid #b2106f !important;
	background: #b2106f !important;
}
.ck_purple_btn:hover
{
	color: #b2106f !important;
	border: 1px solid #b2106f !important;
	background: #fff !important;
}

/* Black btn */

.ck_black_btn
{
	color: #fff !important;
	border: 1px solid #fff !important;
	background: #000 !important;
}
.ck_black_btn:hover
{
	color: #000 !important;
	border: 1px solid #000 !important;
	background: #fff !important;
}

/* White btn */

.ck_white_btn
{
	color: #fff !important;
	border: 1px solid #fff !important;
	background: transparent !important;
}
.ck_white_btn:hover
{
	color: #fff !important;
	border: 1px solid #ccc !important;
	background: transparent !important;
}

/* Gold btn */

.ck_gold_btn
{
	color: #fff !important;
	border: 1px solid #fff !important;
	background: #8a794a !important;
}
.ck_gold_btn:hover
{
	color: #8a794a !important;
	border: 1px solid #8a794a !important;
	background: #fff !important;
}

/*--- Text wrapperi ---*/

.ck_wrapper
{
	padding: 35px;
	border-radius: 3px;
}
.ck_blue_wrapper
{
	color: #fff !important;
	background: #013f66 !important;
}
.ck_green_wrapper
{
	color: #fff !important;
	background: #016452 !important;
}
.ck_red_wrapper
{
	color: #fff !important;
	background: #e30040 !important;
}
.ck_orange_wrapper
{
	color: #fff !important;
	background: #f08701 !important;
}
.ck_purple_wrapper
{
	color: #fff !important;
	background: #b2106f !important;
}
.ck_black_wrapper
{
	color: #fff !important;
	background: #000 !important;
}
.ck_white_wrapper
{
	color: #000 !important;
	background: #fff !important;
}
.ck_gold_wrapper
{
	color: #fff !important;
	background: #8a794a !important;
}

.ck_blue_border_wrapper
{
	border: 1px solid #013f66 !important;
}
.ck_green_border_wrapper
{
	border: 1px solid #016452 !important;
}
.ck_red_border_wrapper
{
	border: 1px solid #e30040 !important;
}
.ck_orange_border_wrapper
{
	border: 1px solid #f08701 !important;
}
.ck_purple_border_wrapper
{
	border: 1px solid #b2106f !important;
}
.ck_black_border_wrapper
{
	border: 1px solid #000 !important;
}
.ck_white_border_wrapper
{
	border: 1px solid #fff !important;
}
.ck_gold_border_wrapper
{
	border: 1px solid #8a794a !important;
}
