.pbmit-spinner-box-style-2 {
	width: 110px;
	position: relative;
	border-radius: 50%;
	color: var(--pbmit-physiofy-white-color);
}
.pbmit-spinner-box-style-2 .pbmit-ihbox-icon,
.pbmit-spinner-box-style-2 .pbmit-ihbox-svg{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.pbmit-spinner-box-style-2 .pbmit-ihbox-box text {
	font-size: 23px;
	letter-spacing: 6px;
	text-transform: uppercase;
}
.pbmit-spinner-box-style-2 .pbmit-ihbox-box svg{
	height: auto;
	fill: var(--pbmit-physiofy-secondary-color);
	position: relative;
	left: 0;
	top: 0;
	-webkit-animation-name: pbmit_rotate_2;
	-moz-animation-name: pbmit_rotate_2;
	-ms-animation-name: pbmit_rotate_2;
	-o-animation-name: pbmit_rotate_2;
	animation-name: pbmit_rotate_2;
	-webkit-animation-duration: 15s;
	-moz-animation-duration: 15s;
	-ms-animation-duration: 15s;
	-o-animation-duration: 15s;
	animation-duration: 15s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-ms-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
}
@-webkit-keyframes pbmit_rotate_2 {
	from { -webkit-transform: rotate(0); }
	to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes pbmit_rotate_2 {
	from { -moz-transform: rotate(0); }
	to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes pbmit_rotate_2 {
	from { -ms-transform: rotate(0); }
	to { -ms-transform: rotate(360deg); }
}
@-o-keyframes pbmit_rotate_2 {
	from { -o-transform: rotate(0); }
	to { -o-transform: rotate(360deg); }
}
@keyframes pbmit_rotate_2 {
	from { transform: rotate(0); }
	to { transform: rotate(360deg); }
}