/*------ REPEATER BLOCK ------*/

/* CONTAINER */
.szz-repeater__container {
	background: var(--radial-light);
	margin: 3rem auto;
}
.szz-repeater__container.full-container{
	width:90%;
}
/* REPEATER */
.szz-repeater__repeater {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	padding-bottom: 2rem;
	padding-top: 1rem;
}

/* ITEM */
.szz-repeater__item {
	border-radius: 50%;
	position: relative;
	background-repeat: no-repeat;
	background-size: 66%;
	background-position: center;
	transition: transform var(--move-ch-shape), opacity var(--move-ch-shape);
}

.szz-repeater__item:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--primary);
	opacity: 0.5;
}

.szz-repeater__item.hide {
	opacity: 0;
	transform: translatey(1rem);
}

/* CAPTION */
.szz-repeater__caption {
	text-align: center;
	font-weight: 700;
	width: 100%;
}
.szz-repeater__item--one-group{
	padding-top:0;
	padding-bottom:0;
}
.szz-repeater__category-title--one-group{
	margin-bottom: 2rem;

}
.szz-repeater__item--one-group > .szz-repeater__item{
	transition: background-color .5s ease-in-out, transform .7s cubic-bezier(.1,-8,.1,8);
	transform:none;
}
.szz-repeater__item--one-group > .szz-repeater__item--own-color{
	transform: scale(.9);
}

@media only screen and (min-width: 960px) {
	.szz-repeater__container.full-container{
		width:100%;
	}
	
}
