#loader{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;

}
.loader-svg{
    width: 10vh;
    height: 10vh;
}
.loader-circle{

    position: absolute;
    top: calc(50% - 15vh);
    left: calc(50% - 15vh);
    width: 30vh;
    height: 30vh;
    /* border-top: 10px solid #185382; */
    /* border-left: 10px solid #185382; */
    border-bottom: 7px solid #185382;
    /* border-right: 10px solid #fff; */
    border-radius: 50%;
    transform-origin: center;
    transform-box: fill-box;
    /* display: none; */
    animation: circle-load 1s ease infinite;
    
}
@media only screen and (min-width: 425px){
    .loader-svg{
        width: 30vh;
        height: 30vh;
    }
    .loader-circle{
        width: 50vh;
        height: 50vh;
        position: absolute;
        top: calc(50% - 25vh);
        left: calc(50% - 25vh);
    }
}
#loader-show{
    display: none;
}
@media only screen and (min-width: 2000px){
    #loader-show{
        font-size: 180%;
    }
    #loader-show .container{
        max-width: 1870px;
    }
}
.path-d {
    fill: white;
    stroke-dasharray: 450;
    stroke-width: 5;
    stroke-dashoffset: 450;
    animation: draw-d 0.5s linear forwards;
  }
  .path-n {
    fill: white;
    stroke-dasharray: 450;
    stroke-width: 3;
    stroke-dashoffset: 450;
    animation: draw-n 1s normal infinite forwards;
    animation: name duration timing-function delay iteration-count direction fill-mode;
  }
  @keyframes draw-d {

    80%  {  
        fill: white;      

        stroke-width: 5;
    }
    99%{
        stroke-dasharray: 450;
        stroke-dashoffset: 0;
    }
    100% {    
        fill: #185382;  
        stroke-dasharray: 0;
        stroke-width: 1;
    }

  }
  @keyframes draw-n {

    80%  {  
        fill: white;      
        stroke-dasharray: 450;
        stroke-width: 3;
    }
    99%{
        stroke-dasharray: 450;
        stroke-dashoffset: 0;
    }
    100% {    
        fill: #17b1e7;  
        stroke-dashoffset: 0;
        /* stroke-dasharray: 0; */
        stroke-width: 1;
    }

  }
  @keyframes circle-load{
    0%{
        transform: rotate(0deg);
    }
      100%{
          transform: rotate(360deg);
      }
  }