body {
    inset: 0; overflow: hidden;
    margin: 0; padding: 0;
    position: fixed;
    background-color: #FAFAFA;
}
#loading {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}
#loading img {
    animation: 1s ease-in-out 0s infinite alternate breathe;
}
#loading.init_done img {
    animation: .33s ease-in-out 0s 1 forwards zooooom;
    opacity: .3;
}
@keyframes breathe { from { transform: scale(1) } to { transform: scale(0.85)}}
@keyframes zooooom { from { transform: scale(1) } to { transform: scale(1.5)}}

#after-loading {
    width: 48px;
    height: 48px;
    top: 50%;
    left: 48%;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
  }
  #after-loading::before , #after-loading::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #000000;
    animation: prixClipFix 2s linear infinite ;
  }
  #after-loading::after{
    transform: rotate3d(90, 90, 0, 180deg );
    border-color: #03A9F4;
  }

  @keyframes rotate {
    0%   {transform: rotate(0deg)}
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
  }

.flutter-loader {
    background-color: #03A9F4 !important;
}

.indeterminate::before {
    background-color: #4FC3F7 !important;
}

.indeterminate::after {
    background-color: #4FC3F7 !important;
}
