@charset "UTF-8";


:root {
    --blue-color: #0401C2;
    --blue-Lavender: #CFCEFF;
    --yelow-color: #FAE27C;
    --green-color: #0EA600;
    --black-color: #000000;
    --white-color: #ffffff;
    --blue-light-color: #00B9FE;
    --red-color: #ED1C24;
    --menu-active: #C3EBFA;
    --menu-border: #E5E5EA;
    --text-light: #8A8D8E;
    --text-dark: #242424;
}


/* font-family: "Smooch Sans", serif; */

.wb{
    background: var( --white-color);
    border-radius: 10px;
}

.wb{
    background: var( --white-color);
    border-radius: 10px;
}

.schoolimg {
    width: 100%;
    height: 100%;
}

.schoolimg img{
    width: 100%;
    height: 100%;
}

.auth-page-wrapper{
      background: #CFCEFF;
}

.auth-page-wrapper h5{
    font-size: 126px;
    font-weight: 700;
    font-family: "Smooch Sans", serif;
}

.auth-page-wrapper .form-control{
    padding: 15px 0;
    background-color: #F7F8FA;
    border: 0;
}

.auth-page-wrapper .btn-link{
     top: 5px !important;
}

.loginL{
    padding: 0 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.loginL .btn-primary{
    padding: 15px 0;
}

.authicon{
    position: absolute;
    left: -70px;
    bottom: 100px;
}

.deshbordbox1{
    background: var(--blue-Lavender);
    border-radius: 10px;
}

.deshbordbox2{
    background: var(--yelow-color);
    border-radius: 10px;
}


.search-btn{
    border: none;
    background: var(--blue-light-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-btn{
    border: none;
    background: var(--yelow-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-btn{
    border: none;
    background: var(--green-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table{
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}


.table-light {
    --tb-table-color:var(--text-dark);
    --tb-table-bg: var(--menu-active);
    --tb-table-border-color: #d6d8de;
    --tb-table-striped-bg: #e7e9f0;
    --tb-table-striped-color: var(--text-dark);
    --tb-table-active-bg: #e7e9f0;
    --tb-table-active-color: var(--text-dark);
    --tb-table-hover-bg: #e7e9f0;
    --tb-table-hover-color: var(--text-dark);
    color: var(--tb-table-color);
    border-color: var(--tb-table-border-color)
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Poppins", serif;
    font-family: "Outfit", serif;
    font-weight: var(--tb-font-weight-bold);
    line-height: 1.2;
    color: var(--tb-heading-color);
}
.color-ass{
    color: var(--text-light);
}


.error{
    color: rgb(232, 61, 31)
}
.navbar-brand-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.class-div .plus-btn{
    background: #36013F !important;
}
.green-add-btn{
    padding: 0 10px;
    height: 32px;
    border-radius: var(--tb-border-radius-pill) !important;
    background: var(--green-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-upgrade-btn{
    padding: 0 10px;
    height: 32px;
    border-radius: var(--tb-border-radius-pill) !important;
    background: var(--red-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge.bg-secondary-subtle.text-success{
    background-color: #F3FFF2 !important;
    color: var(--green-color) !important;
    border-radius: var(--tb-border-radius-pill) !important;
}
.badge.bg-secondary-subtle.text-danger{
    color: var(--red-color) !important;
    background-color: #F3FFF2 !important;
    border-radius: var(--tb-border-radius-pill) !important;
}
.badge.bg-secondary-subtle.text-upgrade{
    color: var(--blue-color) !important;
    background-color: #F3FFF2 !important;
    border-radius: var(--tb-border-radius-pill) !important;
}
.btn.btn-primary{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hstack{
    margin-top: 25px;
}
.card-title {
    font-size: 24px;
    font-weight: 700;
}
.btn.btn-subtle-danger{
    background: var(--red-color) !important;
    color: var(--white-color) !important;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #0401C2;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    z-index: 99999999;
    position: fixed;
    left: 0;
    right: 0px;
    margin: o auto;
  }
  .loader_overlay {
    background: rgb(255 255 255 / 50%);
    position: fixed;
    content: "";
    left: 0;
    right: 0px;
    top: 0;
    margin: 0 auto;
    z-index: 999999;
    width: 100%;
    height: 100%;
  }
  .loader_sectin{
  position: relative;
  }
  
  @keyframes spin {
  100% {
      transform: rotate(360deg);
  }
  }
  
  .center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }     
   




  
@font-face {
    font-family: 'rakesh';
    src:  url('../fonts/rakesh.eot?s73hzc');
    src:  url('../fonts/rakesh.eot?s73hzc#iefix') format('embedded-opentype'),
      url('../fonts/rakesh.ttf?s73hzc') format('truetype'),
      url('../fonts/rakesh.woff?s73hzc') format('woff'),
      url('../fonts/rakesh.svg?s73hzc#rakesh') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="rd-"], [class*=" rd-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'rakesh' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .rd-m_home:before {
    content: "\e905";
  }
  .rd-m_users:before {
    content: "\e909";
  }
  .rd-m_users-1:before {
    content: "\e90a";
  }
  .rd-m_books:before {
    content: "\e900";
  }
  .rd-m_callbell:before {
    content: "\e901";
  }
  .rd-m_coins:before {
    content: "\e902";
  }
  .rd-m_gear:before {
    content: "\e903";
  }
  .rd-m_harddrives:before {
    content: "\e904";
  }
  .rd-m_notepad:before {
    content: "\e906";
  }
  .rd-m_scroll:before {
    content: "\e907";
  }
  .rd-m_ticket:before {
    content: "\e908";
  }
  

  .pagination .page-item .page-link {
    margin-left: .35rem;
    border-radius: var(--prefixborder-radius);
    width: 26px;
    height: 26px;
    line-height: 26px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--text-light);
}


.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--black-color) !important;
    background-color: var(--menu-active);
    border-color:  var(--menu-active);
}




.pagination-rounded .page-link {
    border-radius: 30px !important;
    margin: 0 3px !important;
    border: none;
    min-width: 32px;
    min-height: 32px;
    text-align: center
}

.pagination-rounded.pagination-sm .page-link {
    min-width: 25px;
    min-height: 25px
}

.pagination-none .small.text-muted{
    display: none;
}


.img-upload {
    background: #F1F0FF;
    width: 250px;
    padding: 40px 20px 10px;
    position: relative;
    height: 150px;
    overflow: hidden;
    border-radius: 10px;
}
.img-upload .filepond--panel-root{
    background-color: transparent;
}
.img-upload .filepond--list-scroller{
    width: 282px;
    position: absolute;
    left: -35px;
    top: -40px;
    height: 250px;
    z-index: 1;
}
.img-upload .filepond--item{
    height: 148px !important;
    position: absolute;
    left: 0;
    width: 250px;
    border-radius: 0;
    top: -15px;
}

.filepond--drop-label {
    height: auto !important;
    top: 30px !important;

}

.img-upload .img-upload-icon{
    position: absolute;
    left: 50%;
    margin-left: -15px;
}


.filepond--root .filepond--drop-label{
    height: 160px !important;
    font-size: 13px !important;
    position: absolute;
    padding: 50px 0 30px;
    top: 0;
    margin: -70px -15px 0;
}

.filepond--root .filepond--credits{
    display: none !important;
}

.tableborder{
    border: 1px solid #D9D9D9;
}

.tableborder table{
   border-radius: 0;
}

.tableborder table td{
   border-bottom: 0;
   font-weight: 600;
   font-size: 20px;
}
.tableborder table td span{
   border-bottom: 0;
   font-weight: 500;
   font-size: 20px;
}

.tableborder img{
   border-radius: 10px;
}

.tabletitle{
   font-size: 24px;
    padding: 15px 15px 0 15px;
    font-weight: 600;
}
.ranking_inpt{
    border: 1px solid #D9D9D9;
    width: 50px;
}


























































