/*****************************************************
 * generic styling for ALS elements: outer container
 ******************************************************/

.als-container {
	position: relative;
	width: 100%;
	margin: 0px auto;
	z-index: 0;
	padding: 0;
}

/****************************************
 * viewport styling
 ***************************************/

.als-viewport {
	position: relative;
	overflow: hidden;
	margin: 0px auto;
}
@media (max-width: 440px) {
	.als-viewport {
		max-width: 260px;
	}
}

/***************************************************
 * wrapper styling
 **************************************************/

.als-wrapper {
	position: relative;
}

/*************************************
 * item: single list element
 ************************************/
 .posts-delamemecat-wrapper.als-container .flex-item {
	 width: 300px;
	 height: 350px;
	 margin: 0 6.5px;
 }
 @media (max-width: 350px) {
	 .posts-delamemecat-wrapper.als-container .flex-item {
  	 width: 250px;
		 height: 400px;
 	}
 }
.als-item {
	position: relative;
	display: block;
	float: left !important;
}

/***********************************************
 * prev, next: buttons styling
 **********************************************/

.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
	top: 50%;
	-webkit-transform: translateY(-50%);
  transform: translateY(-50%);
	font-size: 30px;
	z-index: 2;
}
.als-prev{
	left: -30px;
}
.als-next{
	right: -30px;
}
@media (max-width: 1000px) {
	.als-prev{
		left: -5px;
	}
	.als-next{
		right: -5px;
	}
}
