/* /Component/Spinner.razor.rz.scp.css */
:root[b-k0k9plpo8c] {
    --primary: blue;
    --secondary: lightblue;
}



.spinnerbox[b-k0k9plpo8c] {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* spinner */
.spinner[b-k0k9plpo8c] {
    width: 100px;
    height: 100px;
    position: relative;
}

    .spinner div[b-k0k9plpo8c] {
        box-sizing: border-box;
        position: absolute;
        width: 100%;
        height: 100%;
        border: 8px solid transparent;
        border-top-color: #ad60f5;
        border-radius: 50%;
        animation: spinnerOne-b-k0k9plpo8c 1.2s linear infinite;
    }

        .spinner div:nth-child(2)[b-k0k9plpo8c] {
            border: 8px solid transparent;
            border-bottom-color: #ad60f5;
            animation: spinnerTwo-b-k0k9plpo8c 1.2s linear infinite;
        }

@keyframes spinnerOne-b-k0k9plpo8c {
    0% {
        transform: rotate(0deg);
        border-width: 10px;
    }

    50% {
        transform: rotate(180deg);
        border-width: 1px;
    }

    100% {
        transform: rotate(360deg);
        border-width: 10px;
    }
}

@keyframes spinnerTwo-b-k0k9plpo8c {
    0% {
        transform: rotate(0deg);
        border-width: 1px;
    }

    50% {
        transform: rotate(180deg);
        border-width: 10px;
    }

    100% {
        transform: rotate(360deg);
        border-width: 1px;
    }
}

/* bouncing balls */
/*.bouncer {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 100px;
    height: 100px;
}

    .bouncer div {
        width: 20px;
        height: 20px;
        background: #0077ff;
        border-radius: 50%;
        animation: bouncer 0.5s cubic-bezier(.19,.57,.3,.98) infinite alternate;
    }

        .bouncer div:nth-child(2) {
            animation-delay: 0.1s;
            opacity: 0.8;
        }

        .bouncer div:nth-child(3) {
            animation-delay: 0.2s;
            opacity: 0.6;
        }

        .bouncer div:nth-child(4) {
            animation-delay: 0.3s;
            opacity: 0.4;
        }

@keyframes bouncer {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-100px)
    }
}*/

/* flipping squares */
/*.square {
    width: 100px;
    height: 100px;
    position: relative;
    perspective: 200px;
}

    .square div {
        position: absolute;
        top: 0;
        height: 50px;
        width: 50px;
        background: coral;
        animation: flip 2s linear infinite;
        transform-origin: right bottom;
    }

        .square div:nth-child(2) {
            animation-delay: 1s;
            opacity: 0.5;
        }

@keyframes flip {
    0% {
        transform: rotateX(0) rotateY(0);
    }

    25% {
        transform: rotateX(0) rotateY(180deg);
    }

    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }

    75% {
        transform: rotateX(180deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(0) rotateY(0);
    }
}*/
/* /Pages/Auth/Login.razor.rz.scp.css */
.form-group:nth-child(1)[b-axmv128h5m] {
    animation: move-b-axmv128h5m 500ms;
    animation-fill-mode: backwards;
}

.form-group:nth-child(2)[b-axmv128h5m] {
    animation: move-b-axmv128h5m 400ms;
    animation-delay: 100ms;
    animation-fill-mode: backwards;
}

.btn-primary[b-axmv128h5m] {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
    animation: move-b-axmv128h5m 400ms;
    animation-delay: 150ms;
    animation-fill-mode: backwards;
}

#SelectDP[b-axmv128h5m] {
    animation: move-b-axmv128h5m 400ms;
    animation-delay: 100ms;
    animation-fill-mode: backwards;
}


@keyframes move-b-axmv128h5m {
    from {
        opacity: 0;
        transform: translateX(-35%);
    }

    to {
        opacity: 1;
        transform: translateX(0%);
    }
}
/* /Pages/Auth/Logout.razor.rz.scp.css */
/* /Pages/Auth/Register.razor.rz.scp.css */
/* Bordered form */
form[b-kra8sx0nzi] {
    border: 3px solid #f1f1f1;
}
  
  /* Full-width inputs */
  input[type=text][b-kra8sx0nzi], input[type=password][b-kra8sx0nzi] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  /* Set a style for all buttons */
  button[b-kra8sx0nzi] {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }
    
  /* Extra style for the cancel button (red) */
  .cancelbtn[b-kra8sx0nzi] {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
  }
  
  /* Center the avatar image inside this container */
  .imgcontainer[b-kra8sx0nzi] {
    text-align: center;
    margin: 24px 0 12px 0;
  }
  
  /* Avatar image */
  img.avatar[b-kra8sx0nzi] {
    width: 40%;
    border-radius: 50%;
  }
  
  /* Add padding to containers */
  .container[b-kra8sx0nzi] {
    padding: 16px;
  }
  
  /* The "Forgot password" text */
  span.psw[b-kra8sx0nzi] {
    float: right;
    padding-top: 16px;
  }
  
  /* Change styles for span and cancel button on extra small screens */
  @media screen and (max-width: 300px) {
    span.psw[b-kra8sx0nzi] {
      display: block;
      float: none;
    }
    .cancelbtn[b-kra8sx0nzi] {
      width: 100%;
    }
  }
/* /Pages/Index.razor.rz.scp.css */
/* /Shared/AuthLayout.razor.rz.scp.css */
.page[b-wbg10lkvpi] {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.LoginBox[b-wbg10lkvpi] {
  width: 400px;
  padding: 30px;
  box-shadow: 5px 10px 18px #808080;
  border-radius: 10px;
  background-color: #f1f1f1;

  animation-name: fade-b-wbg10lkvpi;
  animation-duration: 500ms;
}

@keyframes fade-b-wbg10lkvpi {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-hide[b-wbg10lkvpi] {
  animation: down-b-wbg10lkvpi 500ms forwards;
}

@keyframes down-b-wbg10lkvpi {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100vh);
  }
}

.form-nono[b-wbg10lkvpi] {
  animation: nono-b-wbg10lkvpi 300ms linear, fade-b-wbg10lkvpi paused;
  animation-iteration-count: 2;
}

@keyframes nono-b-wbg10lkvpi {
  0% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-15%);
  }

  70% {
    transform: translateX(15%);
  }

  100% {
    transform: translateX(0);
  }
}

/* squares */

/*.squares li {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.15);
    display: block;
    position: absolute;
    bottom: -40px;
    animation: up 2s infinite;
}

@keyframes up {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-1200px);
    }
}*/
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-6rezzvkgf1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main[b-6rezzvkgf1] {
    flex: 1;
}

.sidebar[b-6rezzvkgf1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-6rezzvkgf1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6rezzvkgf1]  a, .top-row .btn-link[b-6rezzvkgf1] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-6rezzvkgf1] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* footer {
        position: fixed;
        height: 100px;
        bottom: 0;
        width: 100%;
    } */

    .footer[b-6rezzvkgf1] {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        color: white;
        text-align: center;
      }

    .botton-row[b-6rezzvkgf1] {
        position: sticky;
        bottom: 0;
        z-index: 1;
    }

    .botton-row[b-6rezzvkgf1] {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
        height: 3.5rem;
        display: flex;
        align-items: center;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-6rezzvkgf1] {
        display: none;
    }

    .top-row.auth[b-6rezzvkgf1] {
        justify-content: space-between;
    }

    .top-row a[b-6rezzvkgf1], .top-row .btn-link[b-6rezzvkgf1] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6rezzvkgf1] {
        flex-direction: row;
    }

    .sidebar[b-6rezzvkgf1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-6rezzvkgf1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div[b-6rezzvkgf1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-41j77wujpi] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-41j77wujpi] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-41j77wujpi] {
    font-size: 1.1rem;
}

.oi[b-41j77wujpi] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-41j77wujpi] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-41j77wujpi] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-41j77wujpi] {
        padding-bottom: 1rem;
    }

    .nav-item[b-41j77wujpi]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-41j77wujpi]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-41j77wujpi]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}



@media (min-width: 641px) {
    .navbar-toggler[b-41j77wujpi] {
        display: none;
    }

    .collapse[b-41j77wujpi] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
