#loading-screen {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 1;
    transition: 1s opacity;
    justify-content: center;
}

#loading-screen.fade-out {
    z-index: 0;
    opacity: 0;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

  /* .progress .progress-bar {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ffd33d, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #ffd33d 68%, #ea4aaa 85%, #b34bff);
    background-size: 300% 100%;
    -webkit-animation: progress-animation 2s linear infinite;
            animation: progress-animation 2s linear infinite;
  } */

  @-webkit-keyframes progress-animation {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 0;
    }
  }
  
  @keyframes progress-animation {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 0;
    }
  }

  .loadtxtcont {
    /* display: block; */
    display: flex;
    min-width: 250px;
    max-width: 600px;
    height: 100%;
    overflow: auto;
    margin: auto;
    font-size: 1.6vw;
    flex: 0 0 0%;
  }
  
  .loadimgcont{
    height: 100%;
    text-align: center;
    flex: 0 0 100%;
    display: block;
    /* display: flex; */
    justify-content: center;
    align-items: flex-start;
    min-width: 200px;
    max-width: 80%;
  }

  #loadimg {
    max-height: 100%;
    max-width: 100%;
    width: auto;

  }
  .hide {
    display: none;
  }

  #loadtxt {
      text-align: center;
      margin: auto;
  }
  
  .loadergroup{
    height: 100%;
    width: 100%;
  }

  .loaderchildbig{
    height: 60%;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .loaderchildsmall{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25%;
    position: relative;
  }

  .loadwrap{
    /* height: 80%; */
    max-height: 80%;
    min-height: 30%;
    max-width: 80%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .RadialProgress {
    --hue: 319;
    --holesize: 60%;
    --track-bg: hsl(233, 34%, 92%);
    -webkit-animation: rotate 5s infinite linear;
            animation: rotate 5s infinite linear;
    /* height: 50vmin;
    width: 50vmin;
    min-width: 100px;
    min-height: 100px; */
    height: 100%;
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    place-items: center;
    /* position: relative; */
    font-weight: 700;
    font-size: max(10vmin, 1.4rem)
  }
    
  .RadialProgress::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      border-radius: 50%;
      z-index: -1;
      background: conic-gradient(
        hsl(var(--hue) 100% 90%),
        hsl(var(--hue) 100% 40%),
        hsl(var(--hue) 100% 90%) var(--progress, 0%),
        var(--track-bg) var(--progress, 0%) 100%
      );
      
      -webkit-mask-image: radial-gradient(
        transparent var(--holesize),
        black calc(var(--holesize) + 0.5px)
      );
      
              mask-image: radial-gradient(
        transparent var(--holesize),
        black calc(var(--holesize) + 0.5px)
      );
    }  
  
  @-webkit-keyframes rotate{
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
  }  
  
  @keyframes rotate{
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
  }  

  .progress-hint {
    color: #000000;
    font-size: 25px;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%);
    text-align: center;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
  }

  .progressparent {
    width: 80px;
    height: 80px;
    justify-content: center;
    text-align: center;
    align-content: center;
    margin: auto;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%);
  }
  