.ui-carousel {
	height: 120px;
	margin-bottom: 20px;
	overflow: auto;
	padding: 0;
	position: relative; /*for ie7 to work e.g in html carousels*/
	width: 320px;
}

.ui-carousel > .wrapper {
	margin: 0;
	padding: 0;
	display: flex;
	width: 9999px;
}

.ui-carousel > .wrapper > * {
	border: 0;

}
.ui-carousel > .wrapper > span{
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.ui-carousel > .wrapper > span a{

	width: 90%;
	height:90%;
	display: flex;
	overflow: hidden;
	box-shadow: 4px 5px 5px 2px #CCC;
	text-align:center;


}
.mini_image {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
}

.carousel__arrov{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border-style: solid;
	border-width: 2px;
	border-color: gray;
	position: absolute;
	background: white;
	box-shadow: 1px 1px 1px #0003;
	top: 40px;
	z-index: 100;
	left: -2px;
	background-image: url(../img/slider_arrows.png);
	background-repeat: no-repeat;
	background-position: 2px 2px;
}

.carousel__arrov_right{
	left: 19px;
	background-position: 3px -11px;
}

#ui-carousel-next{
	width: 34px;
	height: 104px;
	/*background-color: red;*/
	display: block;
	position: absolute;
	top: 360px;
	right: 517px;
}

#ui-carousel-prev{
	width: 34px;
	height: 104px;
	/*background-color: red;*/
	display: block;
	position: absolute;
	top: 360px;
	left: 200px;
}
