/*блок с изображением*/
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.cover_container_img{
    position: relative;
}
.cover_container_img::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 100%;
   height: 100%;
   border-radius: 50%;
   box-shadow: inset 11px -8px 20px 9px rgb(16 23 31 / 50%), 
   inset 14px -14px 12px 0px rgb(104 137 233 / 50%), inset -3px -15px 0 30px rgb(255 255 255 / 61%);
   animation: rotate 10s linear infinite;
}
.svg_cover{
    animation: rotate 2s linear infinite;
}