.carousel {
	position: relative;
}
.carousel_wrapper {
	position: relative;
	text-align: center;
	overflow: hidden;
	display: flex;
}
.carousel .items {
	position: relative;
	display: flex;
	transition: transform 0.2s;
}
.carousel_button {
	position: absolute;
	left: 0px;
	top: 0px;
	border: none;
	font-size: 30px;
	padding: 0;
	height: 100%;
	padding-right: 20px;
	background: rgb(200,197,192);
	background: linear-gradient(270deg, rgba(200,197,192,0) 0%, rgba(200,197,192,1) 51%);
	border-radius: 0px;
}
.carousel_button.right {
	left: initial;
	right: 0;
	padding-left: 20px;
	padding-right: 0px;
	background: rgb(200,197,192);
	background: linear-gradient(90deg, rgba(200,197,192,0) 0%, rgba(200,197,192,1) 51%);
}
.carousel .az_item:first-child {
	margin-left: 30px;
}
.carousel .az_item:last-child {
	margin-right: 30px;
}
