/** CSS Styleshhet for VIVA CAROUSEL - by Tim Waddell - A Worpress Carousel Plugin. 
 *  #
 * Based on JCarousel from #
 * This  plugin code is Copyright Tim Waddell April-2025 and is licensed for single site, multi site and 
 * developer use as stated in our License FAQ at #
 */
 
 
/**
 * This element sets the border container around the sliding items
 * any padding adds to the width to give 'actual' width of the carousel
 */

.jcarousel-container {
    -moz-border-radius: 10px;
    padding: 5px 0px 10px 0px;
	z-index:auto;
}

/* This sets the dimesnions for either a horizontal(default) or vertical carousel 
*  You need to set the container size and then the clip (moving element) size
*/

.jcarousel-skin-tango {
}


.jcarousel-skin-tango .jcarousel-container-vertical {
    width: 240px;
    height: 770px;
    padding: 40px 15px 20px 15px;
}



.jcarousel-skin-tango .jcarousel-clip-vertical {
    width: 240px;
    height: 770px;
}

/* This sets the dimesnions for the individual elements in the  horizontal(default) or vertical carousel */

.jcarousel-skin-tango .jcarousel-item {
    width: 85px;
    height: 100px;
    margin:7px;
	font-size:96%;
	line-height: 1.6em;
}

.jcarousel-skin-tango .jcarousel-item-horizontal {

}

.jcarousel-skin-tango .jcarousel-item-vertical {
    margin-bottom: 5px;
}

/* .jcarousel-skin-tango .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}
*/
/**
 *  Horizontal Buttons
 */


/**
 *   Buttons
 */
.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: absolute;
    top: 25px;
    right: 5px;
    width: 33px;
    height: 58px;
    cursor: pointer;
    background: transparent url("next-horizontal.png") no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: absolute;
    top: 25px;
    left: 5px;
    width: 33px;
    height: 58px;
    cursor: pointer;
    background: transparent url("prev-horizontal.png") no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

/**
 *  Vertical Buttons
 */
.jcarousel-skin-tango .jcarousel-next-vertical {
    position: absolute;
    top: 5px;
    right: 43px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("prev-vertical.png") no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-next-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-tango .jcarousel-next-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-tango .jcarousel-next-disabled-vertical,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical {
    position: absolute;
    top: 5px;
    left: 43px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url("next-vertical.png") no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-prev-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-tango .jcarousel-prev-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-tango .jcarousel-prev-disabled-vertical,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover,
.jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}