﻿/*UtilCarousel Base Style*/
.util-carousel {
	display: none;
	position: relative;
	-ms-touch-action: pan-y;
}
.util-carousel .util-wrapper-holder {
	overflow: hidden;
	position: relative;
	
	width: -moz-calc(100%);
	width: -webkit-calc(100%);
	width: -o-calc(100%);
	width: calc(100%);

	padding:15px 0 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.util-carousel .util-wrapper {
	*zoom: 1;
	position: relative;
	display: none;
}
.util-carousel .util-wrapper:before, .util-carousel .util-wrapper:after {
	display: table;
	content: "";
	line-height: 0;
}
.util-carousel .util-wrapper:after {
	clear: both;
}
.util-carousel .util-item {
	float: left;
	margin:0 !important;
}
.dragging, .dragging * {
	cursor: url(https://mail.google.com/mail/images/2/closedhand.cur), move;
}

/*UtilCarousel Defualt Theme*/
.util-theme-default .util-pagination {
	text-align: center;
	margin-top:0;
}
.util-theme-default .util-page span {
	display: block;
	width: 30px;
	height: 8px;
	border-radius:4px;
	background-color: #004395;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	margin: 5px;
}
.util-theme-default .util-page {
	display: inline-block;
	cursor: pointer;
	zoom: 1;
	*display: inline;
}
.util-theme-default  .util-page.active-page span {
	background-color: #ddb60f;
}
.util-theme-default  .util-page:hover span {
	background-color: #ddb60f;
}
.util-theme-default .util-navigation {
	text-align: center;
}

.util-theme-default .util-prev, .util-theme-default .util-next {
	position: absolute;
    bottom: calc(50% - 23px);;
    line-height:46px;
    width:46px;
    margin: 0;
    padding: 0 !important;
    background-color:rgb(214 154 69 / 50%);
    font-size:20px;
	font-weight: bold;
    color:#fff;
    cursor: pointer;
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
	text-align:center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.util-theme-default .util-prev{padding-right:3px;}
.util-theme-default .util-next{padding-left:3px;}

.util-theme-default .util-prev:hover, .util-theme-default .util-next:hover {
	background: rgb(214 154 69 / 80%);color:#fff;
}
.util-theme-default .util-disable, .util-theme-default .util-disable:hover {

}
.util-theme-default .util-next {
	right: 50px;
}
.util-theme-default .util-prev {
	left: 50px;
}

@media (max-width:1280px){

}

@media (max-width:480px){

	.util-carousel .util-wrapper-holder {
		/*width: -moz-calc(100% + 10px);
		width: -webkit-calc(100% + 10px);
		width: -o-calc(100% + 10px);
		width: calc(100% + 10px);*/
		}

	.util-theme-default .util-prev, .util-theme-default .util-next {}
	.util-theme-default .util-next {
		right:15px;
	}
	.util-theme-default .util-prev {
		left:15px;
	}
[class^="icon-"]:before, [class*=" icon-"]:before {
    width: 20px !important;
}
		
}