figure.image.image-style-side {
    float: right;
}

#screen-loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#screen-loader-msg {
  color: #fff;
  margin-top: 24px;
  font-size: 20px;
  text-align: center
}

#screen-loader-spinner {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#cd1618 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#cd1618);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}
