/*  _______________________________________

    Carousel with image and text (horizontal)
    _______________________________________  */


/* General styles */

.touchcarousel {
	position: relative;
	width: 600px;
	height: 400px;		
	
	/* style is removed after carousel is inited, use !important if you want to keep it*/
	overflow: hidden; 
}
.touchcarousel .touchcarousel-container {
	position: relative;    
    margin: 0;
    padding: 0;
    list-style: none;    
	left: 0;
}
.touchcarousel .touchcarousel-wrapper {
	position: relative;
	overflow:hidden;
	width: 100%;
	height: 100%;
}
.touchcarousel .touchcarousel-item {
	/* use margin-right for spacing between items */
	margin: 0 0 0 0;
	padding: 0;	
	float: left;		
}

/* Last carousel item  */
.touchcarousel .touchcarousel-item.last {
	margin-right: 0 !important;		
}
/* arrow hitstate and icon holder */
.touchcarousel .arrow-holder {
	height: 100%;
	width: 45px;
	position: absolute;
	top: 0;
	display: block;
	cursor: pointer;	
	z-index: 25;	
}
.touchcarousel .arrow-holder.left {	
	left: 0;	
}
.touchcarousel .arrow-holder.right {	
	right: 0;
}

/* arrow icons */
.touchcarousel .arrow-icon{		
	width: 45px;
	height: 90px;
	top:50%;
	margin-top:-45px;	
	position: absolute;	
	cursor: pointer;	
}
.touchcarousel .arrow-icon.left { }
.touchcarousel .arrow-icon.right { }
.touchcarousel .arrow-holder:hover .arrow-icon { }
.touchcarousel .arrow-holder.disabled { cursor: default; }
.touchcarousel .arrow-holder.disabled .arrow-icon { cursor: default; }

.touchcarousel .tc-paging-container {
	width:100%;
	overflow:hidden;
	position:absolute;
	margin-top:-20px;
	z-index:25;
}
.touchcarousel .tc-paging-centerer {	
	float: left;
	position: relative;
	left: 50%;		
}
.touchcarousel .tc-paging-centerer-inside {
	float: left;
	position: relative;
	left: -50%;
}
.touchcarousel .tc-paging-item {			
	float:left;	
	cursor:pointer;		
	position:relative;
	display:block;	
	text-indent: -9999px;	
}
.touchcarousel .tc-paging-item.current { }
.touchcarousel .tc-paging-item:hover { }

.touchcarousel .scrollbar-holder {
	position: absolute;
	z-index: 30;
	left: 6px;
	right: 6px;	
	bottom: 5px;
	height:4px;
	overflow: hidden;
	display:none
}
.touchcarousel .scrollbar {
	position: absolute;
	left:0;	
	height:4px;
	bottom: 0px;
}
.touchcarousel .scrollbar.dark {
	background-color: rgb(130, 130, 130);	
	background-color: rgba(0, 0, 0, 0.5);
}
.touchcarousel .scrollbar.light {
	background-color: rgb(210, 210, 210);	
	background-color: rgba(255, 255, 255, 0.5);	
}

/* IE and Opera use "move", FF uses -moz-grab */
.touchcarousel .grab-cursor{ cursor:url(https://arhiva.bbz.hr/slike/grab.png) 8 8, move; }
.touchcarousel .grabbing-cursor{ cursor:url(https://arhiva.bbz.hr/slike/grabbing.png) 8 8, move; }

/* Cursor that used when mouse drag is disabled */
.touchcarousel .auto-cursor{ cursor:auto; }


/* 1. Arrows (direction) navigation */

.touchcarousel.three-d .arrow-icon {
	top: 0;
	background-image: url('https://arhiva.bbz.hr/slike/three-d-skin-sprite.png');
	background-repeat: no-repeat;
	width: 31px;
	height: 32px;	
	margin-top: 0;
}
.touchcarousel.three-d .arrow-holder {
	top: 193px;
	width: 31px;
	height: 32px;	
	z-index:1;
	-moz-opacity: 0.8;	
	-webkit-opacity: 0.8;	
	opacity: 0.8;	
}
.touchcarousel.three-d .arrow-holder.left {
	left: auto;
	right: 48px;
}
.touchcarousel.three-d .arrow-holder.right {	
	right: 3px;
}

.touchcarousel.three-d .arrow-icon.left {
	left: 0;
	background-position: -3px -8px;
}
.touchcarousel.three-d .arrow-icon.right {
	right: 0;
	background-position: -166px -8px;
}

.touchcarousel.three-d .arrow-holder.disabled .arrow-icon.left {
	background-position: -43px -14px;
}
.touchcarousel.three-d .arrow-holder.disabled .arrow-icon.right {
	background-position: -138px -14px;
}
.touchcarousel.three-d .arrow-holder:hover {
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;	
}
.touchcarousel.three-d .arrow-holder:active {
	-moz-opacity: 0.7;	
	-webkit-opacity: 0.7;	
	opacity: 0.7;	
}
.touchcarousel.three-d .arrow-holder.disabled {
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;	
}


/* 2. Paging navigation */

.touchcarousel.three-d .tc-paging-container {		
	width: auto;
	float: none;
	right: 53px;
	margin-top: 0;	
}
.touchcarousel.three-d .tc-paging-centerer {
	float: none;
	position: relative;
	left: 0;
}
.touchcarousel.three-d .tc-paging-centerer-inside {	
	position: relative;
	left: 0;
	float: none;	
}
.touchcarousel.three-d .tc-paging-item {
	background: url('https://arhiva.bbz.hr/slike/three-d-skin-sprite.png') no-repeat -95px -4px;
	
	width: 16px;
	height: 16px;	
	
	-moz-opacity: 0.8;	
	-webkit-opacity: 0.8;	
	opacity: 0.8;	
}
.touchcarousel.three-d .tc-paging-item.current {	
	background: url('https://arhiva.bbz.hr/slike/three-d-skin-sprite.png') no-repeat -95px -22px;
}
.touchcarousel.three-d .tc-paging-item:hover {		
	-moz-opacity: 1;	
	-webkit-opacity: 1;	
	opacity: 1;		
}



/* Styles for Carousel with image and text (horizontal) */

#carousel-image-text-horizontal {
	width: 100%;
	height: 233px;
	margin: 0 auto;
	padding:0;
}
#carousel-image-text-horizontal .touchcarousel-item {
	width: 550px;
	height: 233px;
	margin-right: 0;
	background: none;			
	position: relative;
}
#carousel-image-text-horizontal img, 
#carousel-image-text-horizontal h4,
#carousel-image-text-horizontal p {
	float:left;
	position: relative;
	margin: 0;
	padding: 0;	
	border: 0;			
}		

#carousel-image-text-horizontal img {
margin:0 20px 0 0;
z-index:2

}

#carousel-image-text-horizontal .rblock {

}
#carousel-image-text-horizontal h4 {
	font: bold 13px/20px Helvetica, Arial, sans-serif;
	color: #000;
	width: 140px;
}
#carousel-image-text-horizontal p {			
	font: normal 13px/20px Helvetica, Arial, sans-serif;
	color: #555;
}
#carousel-image-text-horizontal .tc-paging-container {
	top: -21px;
}


