/**
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*/
#image-circle-body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60vh;
	max-height: 100vh;
	width: 100%;
	left: auto;
	right: auto;
	width: 100% !important;
/*	background: #222;*/
/*	overflow: hidden;*/
}

.box
{
	position: relative;
	width: 300px;
	height: 300px;
	animation: animate 15s linear infinite;
/*	background: #222;*/
}

.img
{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

/*.imgBx
{
	width: 100px;
}*/

.img .imgBx
{
	position: absolute;
	left: auto;
	width: 130px;
	height: 130px;
	border-radius: 20%;
	box-shadow: 0 0 0 2px #fff;
	transform: rotate(calc((360deg /8) * var(--i)));
	transform-origin: :290px;
}


.img .imgBx img
{
	position: absolute;
	top: 35;
	left: 35;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20%;
	transform: rotate(calc((-360deg / 8) * var(--i)));
	animation: animateImgBx 15s linear infinite;
}

/*.container:hover .img .imgBx img
{
	animation-play-state: paused;
}


@keyframes:hover animate
{
	animation-play-state: paused;
}
*/


@keyframes animate
{
	0%
	{
		rotate: 0deg;
	}
	100%
	{
		rotate: 360deg;
	}
}


@keyframes animateImgBx
{
	0%
	{
		rotate: 0deg;
	}
	100%
	{
		rotate: -360deg;
	}
}









/*#image-circle-body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #222;
	overflow: hidden;
}


.box
{
	position: relative;
	width: 300px;
	height: 300px;
}

.img
{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}


.img .imgBx
{
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fff;
	transform: rotate(calc(360deg/8 * var(--i)));
	transform-origin: :190px;
}

.img .imgBx img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	transform: rotate(calc(-360deg/8 * var(--i)));
	animation: animateImgBx 15s linear infinite;
}*/