* {
	box-sizing: border-box;
}
 
div#spinner {
    min-width: 20px;
} 
 
.container--box .box .spinner {
    height: 30px;
    width: 30px;
    background: rgb(5 206 77 / 15%);
    border-radius: 50%;
}
  

/* Spinner 3 */

.container--box .box .spinner--3 {
    border: 2px solid rgb(0 0 0);
    border-bottom-color: #ff3000;
    border-top-color: #ff3000;
    animation: spinner3 800ms ease infinite;
}
@keyframes spinner3 {
	to {
		transform: rotate(360deg);
	}
}
   