 
#root {
    min-height: 100vh;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.loader {
    margin: auto;
    width: 50px;
    height: 50px;
}

.circular-loader {
    animation: rotate 2s linear infinite;
}

.loader-path {
    fill: none;
    stroke-width: 3px;
    animation: animate-stroke 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-stroke {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke: #7352C7;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
        stroke: #7352C7;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
        stroke: #7352C7;
    }
}
@font-face {
    font-family: SFPRO;
    src: url('./fonts/fonts/SF-Pro.ttf');
  }
  @font-face {
    font-family: HIRANGO_LIGHT;
    src: url('./fonts/fonts/Hiragino_Kaku_Gothic_pro.otf');
  }
  @font-face {
    font-family: HIRANGO_BOLD;
    src: url('./fonts/fonts/Hiragino_Kaku_Gothic.otf');
  }
  @font-face {
    font-family: SFPRO_BLACK;
    src: url('./fonts/fonts/SF-Pro-Display-Black.otf');
  }
  @font-face {
    font-family: SFPRO_BOLD;
    src: url('./fonts/fonts/SF-Pro-Display-Bold.otf');
  }
  @font-face {
    font-family: SFPRO_LIGHT;
    src: url('./fonts/fonts/SF-Pro-Display-Light.otf');
  }
  @font-face {
    font-family: SFPRO_MEDUIM;
    src: url('./fonts/fonts/SF-Pro-Display-Medium.otf');
  }
  @font-face {
    font-family: SFPRO_REG;
    src: url('./fonts/fonts/SF-Pro-Display-Regular.otf');
  }
  @font-face {
    font-family: SFPRO_SEMIBOLD;
    src: url('./fonts/fonts/SF-Pro-Display-Semibold.otf');
  }















