*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif !important;
}

/* html
{
  cursor: url(../img/cursor/1.png), auto;
} */


/* Admin Sidebar Css Starts */
@keyframes swing {
    0% {
      transform: rotate(0deg);
    }
    10% {
      transform: rotate(10deg);
    }
    30% {
      transform: rotate(0deg);
    }
    40% {
      transform: rotate(-10deg);
    }
    50% {
      transform: rotate(0deg);
    }
    60% {
      transform: rotate(5deg);
    }
    70% {
      transform: rotate(0deg);
    }
    80% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  
  @keyframes sonar {
    0% {
      transform: scale(0.9);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }
  body {
    font-size: 0.9rem;
  }
  .page-wrapper .sidebar-wrapper,
  .sidebar-wrapper .sidebar-brand > a,
  .sidebar-wrapper .sidebar-dropdown > a:after,
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
  .sidebar-wrapper ul li a i,
  .page-wrapper .page-content,
  .sidebar-wrapper .sidebar-search input.search-menu,
  .sidebar-wrapper .sidebar-search .input-group-text,
  .sidebar-wrapper .sidebar-menu ul li a,
  #show-sidebar,
  #close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  /*----------------page-wrapper----------------*/
  
  .page-wrapper {
    height: 100vh;
  }
  
  .page-wrapper .theme {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 4px;
    margin: 2px;
  }
  
  .page-wrapper .theme.chiller-theme {
    background: #1e2229;
  }
  
  /*----------------toggeled sidebar----------------*/
  
  .page-wrapper.toggled .sidebar-wrapper {
    left: 0px;
  }
  
  @media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
      padding-left: 300px;
    }
  }
  /*----------------show sidebar button----------------*/
  #show-sidebar {
    position: fixed;
    left: 0;
    top: 10px;
    border-radius: 0 4px 4px 0px;
    width: 35px;
    transition-delay: 0.3s;
  }
  .page-wrapper.toggled #show-sidebar {
    left: -40px;
  }
  /*----------------sidebar-wrapper----------------*/
  
  .sidebar-wrapper {
    width: 280px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 999;
  }
  
  .sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .sidebar-wrapper a {
    text-decoration: none;
  }
  
  /*----------------sidebar-content----------------*/
  
  .sidebar-content {
    max-height: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow-y: auto;
    position: relative;
  }
  
  .sidebar-content.desktop {
    overflow-y: hidden;
  }
  
  /*--------------------sidebar-brand----------------------*/
  
  .sidebar-wrapper .sidebar-brand {
    padding: 10px 20px;
    display: flex;
    align-items: center;
  }
  
  .sidebar-wrapper .sidebar-brand > a {
    text-transform: uppercase;
    font-weight: bold;
    flex-grow: 1;
  }
  
  .sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 20px;
  }
  /*--------------------sidebar-header----------------------*/
  
  .sidebar-wrapper .sidebar-header {
    padding: 20px;
    overflow: hidden;
  }
  
  .sidebar-wrapper .sidebar-header .user-pic {
    float: left;
    width: 60px;
    padding: 2px;
    border-radius: 12px;
    margin-right: 15px;
    overflow: hidden;
  }
  
  .sidebar-wrapper .sidebar-header .user-pic img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .sidebar-wrapper .sidebar-header .user-info {
    float: left;
  }
  
  .sidebar-wrapper .sidebar-header .user-info > span {
    display: block;
  }
  
  .sidebar-wrapper .sidebar-header .user-info .user-role {
    font-size: 12px;
  }
  
  .sidebar-wrapper .sidebar-header .user-info .user-status {
    font-size: 11px;
    margin-top: 4px;
  }
  
  .sidebar-wrapper .sidebar-header .user-info .user-status i {
    font-size: 8px;
    margin-right: 4px;
    color: #5cb85c;
  }
  
  /*-----------------------sidebar-search------------------------*/
  
  .sidebar-wrapper .sidebar-search > div {
    padding: 10px 20px;
  }
  
  /*----------------------sidebar-menu-------------------------*/
  
  .sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
  }
  
  .sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: 14px;
    padding: 15px 20px 5px 20px;
    display: inline-block;
  }
  
  .sidebar-wrapper .sidebar-menu ul li a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 8px 30px 8px 20px;
  }
  
  .sidebar-wrapper .sidebar-menu ul li a i {
    margin-right: 10px;
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
  }
  
  .sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
    display: inline-block;
    animation: swing ease-in-out 0.5s 1 alternate;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-style: normal;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: 15px;
    top: 14px;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: 5px 0;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
    padding-left: 25px;
    font-size: 13px;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 10px;
    font-size: 8px;
  }
  
  .sidebar-wrapper .sidebar-menu ul li a span.label,
  .sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    margin-top: 8px;
    margin-left: 5px;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    float: right;
    margin-top: 0px;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-submenu {
    display: none;
  }
  
  .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
    transform: rotate(90deg);
    right: 17px;
  }
  
  /*--------------------------side-footer------------------------------*/
  
  .sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
  }

  .sidebar-footer button
  {
    margin: 0px auto 0px !important;
  }
  
  .sidebar-footer > a {
    flex-grow: 1;
    text-align: center;
    height: 30px;
    line-height: 30px;
    position: relative;
  }
  
  .sidebar-footer > a .notification {
    position: absolute;
    top: 0;
  }
  
  .badge-sonar {
    display: inline-block;
    background: #980303;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
  }
  
  .badge-sonar:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #980303;
    opacity: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: sonar 1.5s infinite;
  }
  
  /*--------------------------page-content-----------------------------*/
  
  .page-wrapper .page-content {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  
  .page-wrapper .page-content > div {
    padding: 20px 40px;
  }
  
  .page-wrapper .page-content {
    overflow-x: hidden;
  }
  
  /*------scroll bar---------------------*/
  
  ::-webkit-scrollbar {
    width: 5px;
    height: 7px;
  }
  ::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
  }
  ::-webkit-scrollbar-thumb {
    background: #525965;
    border: 0px none #ffffff;
    border-radius: 0px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #525965;
  }
  ::-webkit-scrollbar-thumb:active {
    background: #525965;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
  }
  ::-webkit-scrollbar-track:hover {
    background: transparent;
  }
  ::-webkit-scrollbar-track:active {
    background: transparent;
  }
  ::-webkit-scrollbar-corner {
    background: transparent;
  }
  
  
  /*-----------------------------chiller-theme-------------------------------------------------*/
  
  .chiller-theme .sidebar-wrapper {
      background: #31353D;
  }
  
  .chiller-theme .sidebar-wrapper .sidebar-header,
  .chiller-theme .sidebar-wrapper .sidebar-search,
  .chiller-theme .sidebar-wrapper .sidebar-menu {
      border-top: 1px solid #3a3f48;
  }
  
  .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
  .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
      border-color: transparent;
      box-shadow: none;
  }
  
  .chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
  .chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
  .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
  .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
  .chiller-theme .sidebar-wrapper .sidebar-brand>a,
  .chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
  .chiller-theme .sidebar-footer>a {
      color: #818896;
  }
  
  .chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
  .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
  .chiller-theme .sidebar-wrapper .sidebar-header .user-info,
  .chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
  .chiller-theme .sidebar-footer>a:hover i {
      color: #b8bfce;
  }
  
  .page-wrapper.chiller-theme.toggled #close-sidebar {
      color: #bdbdbd;
  }
  
  .page-wrapper.chiller-theme.toggled #close-sidebar:hover {
      color: #ffffff;
  }
  
  .chiller-theme .sidebar-wrapper ul li:hover a i,
  .chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
  .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
  .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
      color: #16c7ff;
      text-shadow:0px 0px 10px rgba(22, 199, 255, 0.5);
  }
  
  .chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
  .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
  .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
  .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
      background: #3a3f48;
  }
  
  .chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
      color: #6c7b88;
  }
  
  .chiller-theme .sidebar-footer {
      background: #3a3f48;
      box-shadow: 0px -1px 5px #282c33;
      border-top: 1px solid #464a52;
  }
  
  .chiller-theme .sidebar-footer>a:first-child {
      border-left: none;
  }
  
  .chiller-theme .sidebar-footer>a:last-child {
      border-right: none;
  }
/* Admin Sidebar Css Ends */


/* Login Page Css Starts */
.login-bg
{
    /* background-image: linear-gradient(rgba(0,0,0,0.8) , rgba(0,0,0,0.8) ) , url("../../student-login/student-assets/img/login-bg.jpg"); */
    background-color: #023750;
    background-position: center;
    height: 100vh;
    background-size: cover;
}

.login-company-logo
{
  text-align: center;
  padding-top: 35px;
}

@media screen and (max-width:460px){
  .login-company-logo
  {
    text-align: center;
    padding-top: 80px;
  }
}

.admin-login-bg
{
    /* background-image: linear-gradient(rgba(0,0,0,0.7) , rgba(0,0,0,0.7) ) , url("../../admin-login/admin-assets/img/login-bg.webp"); */
    background-color: #023750;
    background-position: center;
    height: 100vh;
    background-size: cover;
}

.tutor-login-bg
{
    /* background-image: linear-gradient(rgba(0,0,0,0.8) , rgba(0,0,0,0.8) ) , url("../../tutor-login/tutor-assets/img/login-bg.jpg"); */
    background-color: #023750;
    background-position: center;
    height: 100vh;
    background-size: cover;
}

.password-changed-box
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* border: 2px solid #ffffff  ; */
    border-radius: 5px;
    background-color: #ffffff;
}

.login-box
{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* border: 2px solid #ffffff  ; */
    border-radius: 5px;
    background-color: #ffffff;
}

.login-box-content-color label
{
  color: #023750;
  font-weight: 600;
}

.login-box-content-color i
{
  color: #023750;
  font-weight: 600;
}

.login-box-content-color h3
{
  color: #023750;
  font-weight: bold;
}

.login-box-login-btn
{
  margin-top: 40px;
}

.login-box-login-btn button
{
  background-color: #023750;
  padding: 10px 35px 10px;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.login-box-login-btn a
{
  background-color: rgb(255, 58, 58);
  padding: 12px 35px 12px;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

/* Login Page Css Ends */


/* New Css Starts */
.action-button
{
  text-align: center;
}

.action-button button
{
  width: 100px;
}

.form-title
{
  margin-bottom: 30px;
}

.form-title label
{
  font-weight: 600;
}

.form-file label
{
  font-weight: 600;
}

.form-title input
{
  padding: 25px 15px;
}

.form-title-file input
{
  padding: 10px 15px 40px 15px;
}

.form-file input
{
  padding: 10px 15px 40px;
}

.form-title select
{
  padding: 0px 20px;
  height: 51px;
  color: grey;
}

.logout-btn
{
  text-decoration: none;
  background-color: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
}

.logout-btn:hover
{
  color: aqua;
  transition: 1s;
}

.dashboard-block
{
  background-color: #525965;
  text-align: center;
  padding: 60px 10px;
  border-radius: 20px;
  margin: 10px;
}

.dashboard-block a
{
  color: #ffffff;
  font-weight: bold;
}

.dashboard-block-title p
{
  font-size: 24px;
  font-weight: bold;
}

.pop-up-enquiry-box
{
  padding: 15px 15px 0px 15px;
  background-color: #cbf3ff !important;
  margin: 15px;
  border-radius: 20px;
}

.pop-up-enquiry-box-col p
{
  font-weight: 600;
}

.pop-up-enquiry-box-col
{
  font-weight: 600;
}

/* New Css Ends */


.student-registeration-bg
{
    /* background-image: linear-gradient(rgba(0,0,0,0.8) , rgba(0,0,0,0.8) ) , url("../../student-login/student-assets/img/login-bg.jpg"); */
    background-color: #023750;
    background-position: center;
    height: auto;
    background-size: cover;
}

.individual-progress-report-form-bg
{
    /* background-image: linear-gradient(rgba(0,0,0,0.8) , rgba(0,0,0,0.8) ) , url("../../student-login/student-assets/img/login-bg.jpg"); */
    background-color: #023750;
    background-position: center;
    height: 100%;
    background-size: cover;
}

/* .progress-report-login-box
{
    padding: 0px 10px 10px;
    border-radius: 5px;
    background-color: #ffffff;
} */

.individual-progress-form-title h3
{
  color: #ffffff;
  font-weight: bolder;
}

.updated-message
{
  background-color: #000000;
  /* margin: 0px auto 0px; */
  color: #0abe0a;
  font-weight: bold;
}


.passcode-view-btn
{
  text-align: center;
  margin: 20px 0px 20px ;
}

.passcode-view-btn button
{
  background-color: #023750;
  padding: 10px 35px 10px;
  border: none;
  border-radius: 5px;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
}

.individual-progress-form-content
{
  margin: 15px 0px 15px;
}

.individual-progress-form-content label,i
{
  color: #ffffff;
  font-weight: 600;
}

.individual-progress-form-content p
{
  border: 2px solid rgb(134, 134, 134);
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #e7e7e7;
  font-weight: 600;
}

@media screen and (max-width:460px){
  .after-title-buttons
  {
    text-align: center;
  }
}

.question-type-row
{
  padding: 15px 20px 0px;
  background-color: #023750;
}

.question-type-row p 
{
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  word-spacing: 2px;
  letter-spacing: 1px;
}

.question-type-row span
{
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
}

.division_name_number
{
  padding: 15px 20px 0px;
  /* margin-top: 60px; */
  margin-bottom: 20px;
  background-color: #c4f1ff;
}

.division_name_number2
{
  margin-bottom: 40px;
}

.division_name_number p
{
  font-size: 14px;
  word-spacing: 2px;
  letter-spacing: 1px;
  font-weight: 600;
}

.start-test-btn-act
{
  margin: 0px 20px 15px;
  padding: 5px 20px 5px;
  border: none;
  background-color: #0abe0a;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
}

.start-test-btn
{
  margin: 0px 20px 0px;
  padding: 5px 20px 5px;
  border: none;
  background-color: #0abe0a;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
}

.locked-test-btn
{
  margin: 0px 20px 0px;
  padding: 5px 20px 5px;
  border: none;
  background-color: #414141;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
}

@media screen and (max-width:460px) {
  .division_name_number_col
  {
    text-align: center;
  }
}

.locked-test-btn:hover
{
  text-decoration: none;
  color: #ffffff;
}

.question-options input
{
  margin-top: 40px;
}

.question-margin-bottom
{
  margin-bottom: 60px;
}

.submit-answers-btn
{
  margin: 20px 0px 20px;
}

.paper-section-heading
{
  color: #c01414;
}

#paper-count-down
{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  word-spacing: 2px;
  letter-spacing: 1px;
}


.paper-result-section-name p
{
  font-size: 20px;
  font-weight: bold;
  color: #c01414;
}

.student-result-details p
{
  word-spacing: 2px;
  letter-spacing: 1px;
}

.student-result-total-score
{
  /* background-color: #980303; */
  padding: 20px 15px 0px;
  text-align: center;
}

.student-result-total-score p
{
  color: #980303;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  word-spacing: 2px;
}

.spacer
{
  margin: 50px 0px 50px;
}


.login-panel-name
{
  font-weight: 600;
  font-size: 16px;
  word-spacing: 3px;
  color: #ffffff;
  letter-spacing: 2px;
}

.visit-panel-btn
{
  padding: 15px 30px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 600;
}

.login-links-row
{
  margin: 75px 0px 75px;
}

.login-link-col
{
  padding: 10px 0px 10px;
}

.visit-panel-btn:hover
{
  background-color: #ffffff;
  color: #000000;
  color: #980303;
  text-decoration: none;
  transition: 0.8s;
}

@media screen and (max-width:460px){
  .login-link-col
  {
    text-align: center;
  }
}

.assigned_student_page_detail p
{
  font-weight: 600;
  word-spacing: 2px;
  letter-spacing: 2px;
}

.head_division_row 
{
  background-color: #023750;
  padding: 15px 10px 0px;
}

.head_division_row p
{
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  word-spacing: 2px;
}

.division_name_row
{
  background-color: #c4f1ff;
  padding: 15px 10px 0px;
}

.head_division_row_2
{
  margin-top: 30px !important;
}

.division_name_row p 
{
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 2px;
}

.division-name-table-block td
{
  font-size: 16px;
  font-weight: bold;
  word-spacing: 3px;
  letter-spacing: 1px;
}

.head_division_overall_marks
{
  margin: 15px;
  padding: 15px 15px 0px;
  background-color: #980303;
}

.head_division_overall_marks p
{
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 2px;
  color: #ffffff;
}

.paper-dashboard-note
{
  padding: 15px 15px 0px;
  background-color: #980303;
  text-align: center;
}

.paper-dashboard-note p
{
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  word-spacing: 2px;
}

.combined-scores-sat
{
  background-color: #980303;
  padding: 20px 15px 0px;
  text-align: center;
}

.combined-scores-sat p
{
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 1px;
  word-spacing: 2px;
  font-size: 14px;
  font-weight: bold;
}

.overall-score-in-each-section p
{
  color: #980303;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 35px;
  text-align: center;
}

.head_division_container-col
{
  margin: 35px 0px 35px;
}

.head_division_block
{
  background-color: #980303;
  text-align: center;
}

.head_division_block tr td
{
  letter-spacing: 1px;
  word-spacing: 2px;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}

.no_of_correct_answers tr td
{
  letter-spacing: 1px;
  word-spacing: 2px;
  font-size: 16px;
}

.result_block_heading p 
{
  font-size: 36px;
  letter-spacing: 1px;
  word-spacing: 2px;
  color: #980303;
  text-shadow: 0px 0px 2px #000000;
  font-weight: bold;
  margin-bottom: -10px;
}

.previous-question-detail-box
{
  letter-spacing: 1px;
  word-spacing: 2px;
  font-weight: 600;
  line-height: 35px;
  background-color: #000000;
  color: #0abe0a;
}

.assign-paper-bulk-result
{
  background-color: #000000;
  padding: 10px 15px 0px 15px;
}

.assign-paper-bulk-result p 
{
  text-align: center;
  color: #0abe0a;
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 30px;
  font-weight: 500;
}

.assign-paper-bulk-result-error
{
  background-color: #000000;
  padding: 10px 15px 0px 15px;
}

.assign-paper-bulk-result-error p 
{
  text-align: center;
  color: red;
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 30px;
  font-weight: 500;
}

.notification-box
{
  background-color: #31353d;
  position: fixed;
  top: 0%;
  right: 0px;
  z-index: 2;
  color: #ffffff;
  padding: 20px 25px 20px 30px;
  border-radius: 0px 0px 0px 10px;
}

.notification-box i
{
  font-size: 20px;
  position: absolute;
  top: 35%;
  left: 30%;
  transform: translate(-50%,-50%);
}

.notification-box span
{
  position: absolute;
  top: 10px;
  right: 6px;
}

.notification-modal-col
{
  background-color: #e0f5fc;
  padding: 25px 15px 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 30px 0px 0px 30px;
}

.notification-modal-col p
{
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 30px;
  font-size: 14px;
  font-weight: bold;
}

.notification-modal-col-span
{
  background-color: #e0f5fc;
  padding: 25px 15px 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 0px 30px 30px 0px;
}

.notification-modal-col-span span
{
  font-size: 16px;
}

.top-margin1
{
  margin-top: 30px;
}

.error-msg
{
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  word-spacing: 2px;
  color: red;
  line-height: 30px;
  margin-top: -20px;
}

.success-msg
{
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  word-spacing: 2px;
  color: green;
  line-height: 30px;
  margin-top: 20px;
}

.homework-links-content ol li
{
  margin-left: 25px;
  line-height: 35px;
  letter-spacing: 1px;
  word-spacing: 2px;
}

.homework-links-content label
{
  font-weight: bolder;
}

.homework-links-content-heading
{
  margin-bottom: 30px;
}

.homework-links-content-heading p
{
  font-size: 36px;
  font-weight: bolder;
  color: #980303;
}

.after-filter-text
{
  letter-spacing: 1px;
  word-spacing: 2px;
  font-weight: 600;
}

.after-filter-text span
{
  letter-spacing: 1px;
  word-spacing: 2px;
  font-weight: 600;
  color: #980303;
}

.export-excel-content td
{
  font-weight: 600;
}


/* Latest Web POrtal Design New CSS as on 19th July 2023 */
:root
{
    --color1: #243D7F; 
    --color2: #059BD8; 
}

.login-page-logo img
{
    width: 220px;
}

.logo-login-page-2 img
{
    width: 180px;
}

.first-half-box
{
    background-image: linear-gradient(rgba(0,0,0,0) , rgba(0,0,0,0) ) , url("../img/login/1.png");
    background-position: center;
    height: 110vh;
    background-size: cover;
}

.first-half-box-2
{
    background-image: linear-gradient(rgba(0,0,0,0) , rgba(0,0,0,0) ) , url("../img/login/1.png");
    background-position: center;
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: left; /* Centers horizontally */
    padding: 40px 60px 40px;
}

.first-half-box-3
{
    background-image: linear-gradient(rgba(0,0,0,0) , rgba(0,0,0,0) ) , url("../img/login/1.png");
    background-position: center;
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: left; /* Centers horizontally */
    padding: 30px 0px 0px;
}


.second-half-box
{
    background-color: #F6F6F6;
    background-position: center;
    height: 110vh;
    background-size: cover;
}

.second-half-box-2
{
    background-color: #F6F6F6;
    background-position: center;
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
}

@media screen and (max-width: 992px)
{
    .desktop-version
    {
        display: none;
    }  
    .first-half-box
    {
        height: 100%;
    }

    .second-half-box
    {
        height: 100%;
    }  
    .first-half-box-2
    {
        height: 100%;
    }
    .second-half-box-2
    {
        height: 100%;
    }
    .first-half-box-3
    {
        height: 100%;
    }
}

.second-half-box
{
    padding: 30px 50px 30px;
}

.spacer-1
{
    height: 40px;
}

.spacer-2
{
    height: 80px;
}

.spacer-3
{
    height: 5px;
}

.spacer-4
{
    height: 50px;
}

.heading-1
{
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    word-spacing: 1px;
}

.heading-2
{
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    word-spacing: 1px;
    margin-bottom: 0px;
}

.heading-3
{
    color: var(--color1);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 0px ;
}

.heading-4
{
    color: var(--color1);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 0px ;
}

.heading-5
{
    text-align: center;
    color: #232323;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 0px ;
}

.heading-6
{
    color: var(--color1);
    font-weight: 800;
    font-size: 34px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 0px ;
}

.heading-7
{
    color: #232323;
    font-weight: 800;
    font-size: 34px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 0px ;
}

.sub-heading-1
{
    letter-spacing: 1px;
    word-spacing : 1px;
    font-size: 13px;
    line-height: 25px;
    color: #ffffff;
}


.sub-heading-2
{
    margin-bottom: 0px;
    letter-spacing: 1px;
    word-spacing : 1px;
    line-height: 25px;
    font-size: 13px;
    color: #000000;
}

.sub-heading-3
{
    letter-spacing: 1px;
    word-spacing : 1px;
    font-size: 10px;
    color: #000000;
}

.sub-heading-4
{
    letter-spacing: 1px;
    word-spacing : 1px;
    font-size: 12px;
    color: #454545;
    text-align: center;
}

.border-spacing-1
{
    padding: 0px 80px 0px;
}

@media screen and (max-width: 992px)
{
    .border-spacing-1
    {
        padding: 0px 20px 0px;
    }    
}

.background-1
{
    background-color: #ffffff;
    padding: 20px 40px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.background-1:hover
{
    background-color: #E9F3FB;
    box-shadow:inset 0px 0px 0px 1px var(--color1);
    transition: 0.4s;
}

.background-1:hover .portal-login-icon-1
{
    background-color: var(--color1);
    transition: 0.4s;
}

.background-1:hover .portal-login-icon-1 img
{
    filter: brightness(0) invert(1);
    transition: 0.4s;
}

.background-1:hover .portal-login-icon-2 i
{
    color: var(--color1);
    display: block;
    transition: 0.4s;
}

.portal-login-icon-1
{
    border: 1px solid var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 10px;
}

.portal-login-icon-2 i
{
    display: none;
}

.portal-login-icon-1 img
{
    width: 24px;
}

.portal-login-content-1
{
    padding-left: 30px;
    padding-right: 30px;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 992px)
{
    .portal-login-content-1
    {
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: center;
    }
}

.login-page-btn-1
{
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-half-box a:hover
{
    text-decoration: none;
}

.main-content-box
{
    border-radius: 10px;
    padding: 30px 40px 30px;
    background-color: #ffffff;
}

@media screen and (max-width: 992px)
{
    .main-content-box
    {
        padding: 30px 10px 30px;
        margin-top: -30px;
        margin-bottom: 30px;
    }    
}

.margin-1
{
    margin-top: 20px;
    margin-bottom: 15px;
}

.login-form-content-1 .dropdown button
{
    background-color: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: grey;
}

.login-form-content-1 .dropdown-menu
{
    border: none;
}

.login-form-content-1 .dropdown-menu .dropdown-item
{
    font-size: 12px;
}

.forgot-password-btn-1
{
    text-align: right;
}

.forgot-password-btn-1 a
{
    color: var(--color2);
    font-size: 12px;
    font-weight: 600;
}

.form-title label
{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03rem;
}

.form-title input
{
    font-size: 15px;
}

.submit-btn-1
{
    background-color: var(--color2);
    border-radius: 10px;
    text-align: center;
}

.submit-btn-1 button
{
    background-color: transparent;
    width: 100%;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    color: #ffffff;
}

.submit-btn-1:hover
{
    background-color: var(--color1);
    transition: 0.4s;
}

.submit-btn-2
{
  background-color: var(--color2);
  border-radius: 10px;
  text-align: center;
  padding: 15px 45px 0px 45px;
}

.submit-btn-2 p
{
  color: #ffffff;
  font-weight: 600;
}

.submit-btn-2:hover
{
  text-decoration: none;
    background-color: var(--color1);
    transition: 0.4s;
}

.dont-have-acc-btn-1
{
    text-align: center;
}

.dont-have-acc-btn-1 a
{
    color: var(--color2);
    font-size: 12px;
    font-weight: 600;
}

.toggle-switch 
{
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 22px;
    height: 10px;
    margin-left: 25px;
}

.toggle-switch input
{
    display: none;
}

.slider
{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 34px;
    transition: 0.4s;
}

.slider:before
{
    position: absolute;
    content: "";
    height: 6px;
    width: 6px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

input:checked + .slider
{
    background-color: #2196F3;
}

input:checked + .slider:before
{
    transform: translateX(12px);
}

.remember-me-text
{
    color: var(--color2);
    font-size: 12px;
    font-weight: 600;
    margin-left: 26px;
}

.remember-me-btn
{
    display: grid;
    justify-items: left;
    align-items: center;
}

.email-template-bg-1
{
  background-color: #F4F6FC;
  padding: 80px;
}

.email-template-bg-2
{
  text-align: center;
  background-color: #ffffff;
  padding: 80px;
}

.email-template-content-1
{
  letter-spacing: 1px;
  word-spacing: 2px;
  line-height: 30px;
}

.email-template-content-2
{
  font-weight: bold;
  font-size: 38px;
}

.email-template-btn-1
{
  background-color: var(--color1);
  color: #ffffff;
  padding: 10px 30px 10px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

/* Forgot Password pages code Below */
.first-half-horizontal-box-1
{
  background: linear-gradient(rgba(3, 34, 118, 1), rgba(84, 166, 240, 1));
  height: 60vh;
  background-repeat: no-repeat;
}

.second-half-horizontal-box-1
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.third-half-horizontal-box-1
{
  background-color: #F4F6FC;
  height: 40vh;
}

.main-content-box-2
{
  margin: 0px;
}

.form-label-heading-1
{
  color: #6A6A6A;
}

.main-content-box-2
{
    border-radius: 10px;
    padding: 60px 40px 60px;
    background-color: #ffffff;
    margin-left: 15px;
    margin-right: 15px;
}

@media screen and (max-width: 992px)
{
  .main-content-box-2
  {
      padding: 30px 10px 30px;
      margin-top: -30px;
      margin-bottom: 30px;
  } 
  .first-half-horizontal-box-1
  {
    background: linear-gradient(rgba(3, 34, 118, 1), rgba(84, 166, 240, 1));
    height: 100vh;
    background-repeat: no-repeat;
  }   
  
  .second-half-horizontal-box-1
  {
    background: linear-gradient(rgba(3, 34, 118, 1), rgba(84, 166, 240, 1));
    height: 100vh;
    background-repeat: no-repeat;
  }   
  .third-half-horizontal-box-1
  {
    background-color: #F4F6FC;
    height: 0vh;
  }
}

.main-content-box-3
{
  padding: 30px 40px 50px;
}

.tick-icon-1
{
  width: 110px;
}

.back-to-portal-box
{
  position: fixed;
  top: 0%;
  right: 60px;
  z-index: 11;
  text-align: right;
}

.back-to-portal-btn .dropdown button
{
  background-color: #31353d;
  padding: 15px 45px 15px;
  border: none;
  color: #ffffff;
  border-radius: 0px 0px 30px 30px;
  font-weight: bold;
}

.bg-color-1
{
  background-color: rgb(203, 244, 255);
  padding: 40px 30px 40px;
  margin-bottom: 50px;
  border-radius: 30px;
}

.embed-quiz-pdf-file
{
  /* position: fixed; */
  min-height: 100%;
  width: 100% !important;
}

.quiz-box-size
{
  height: 80vh;
  overflow: scroll;
}

.star_account_btn1
{
  color: rgb(245 229 0);
  cursor: pointer;
}


.star_account_btn2
{
  color: rgb(245 229 0);
  cursor: pointer;
}



/* New Design CSS */
.n-background-3
{
    background-color: rgb(209, 209, 209);
    height: 80vh;
    border-right: 6px solid #ffffff;
    border-left: 6px solid #ffffff;
    overflow: scroll;
}

.n-heading-1
{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0px;
    margin-left: 0px;
}

.n-heading-4
{
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

.n-test-result-section-1
{
  display: none;
}

.n-test-result-section-2
{
  display: none;
}

.n-test-result-section-3
{
  display: none;
}

.n-test-result-section-4
{
  display: none;
}

.n-test-result-section-5
{
  display: none;
}

.result-section-show-hide-btn-table
{
  background-color: #c4f1ff;
  color: #023750;
  font-weight: bold;
}

.result-section-show-hide-btn-table p
{
  margin-top: 0px;
  margin-bottom: 0px;
}


/* Same CSS Like new one Start */
.mail-attachment-file-box
{
    background-color: #FFDBD7;
    padding: 10px 30px;
    text-align: center;
    margin-left: 10px;
    margin-right: 30px;
    border-radius: 13px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mail-attachment-file-box i
{
    font-size: 18px;
    color: #FF3434;
}

.mail-attachment-file-box a
{
    font-size: 14px;
    color: #FF3434;
}

.n-sub-heading-1
{
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0;
    color: #757575;
}

.n-centerlised-text
{
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
}

.n-centerlised-text-2
{
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: left; /* Left horizontally */
}

.n-heading-12
{
  color: #FF3434;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0px;
} 

.n-reply-to-mail-btn-1
{
    text-align: right;
}

.n-reply-to-mail-btn-1 button
{
    background-color: var(--color1);
    padding: 15px 45px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 13px;
    border: none;

}
/* Same CSS Like new one End */

.background-box-1
{
  background-color: rgb(197, 197, 197);
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}

.new-appointment-box
{
  height: 55vh;
  overflow: scroll;
}

.list_of_tutor_username_calender
{
  background-color: #e2e2e2;
  height: 63vh;
  overflow: scroll;
  padding: 20px;
}

.list_of_tutor_username_calender-2
{
  background-color: #e2e2e2;
  padding: 20px;
}

.calender_meeting_for_username_list
{
  color: #525965;
  font-weight: 600;
  line-height: 40px;
}

.calender_meeting_for_username_list:hover
{
  color: #980303;
}

.btn-3
{
  background-color: #023750;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  color: #ffffff;
  padding: 7px 14px;
}

.park-calender-loader-box
{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 50px 30px;
  border-radius: 20px;
  background-color: #d3eff8;
  z-index: 9999;
}

.park-calender-loader-main-container
{
  display: none;
}

.park-calender-loader-main-container-2
{
  display: none;
}

.park-calender-loader-main-container-3
{
  display: none;
}

.admin-old-location-box
{
  line-height: 30px;
  font-size: 14px;
  font-weight: 500;
}

/* .n-create-appointment-form-box
{
  margin-bottom: 20px;
} */

.n-create-appointment-form-box label
{
    font-size: 13px;
    color: rgb(110, 110, 110);
    font-weight: 600;
    margin-bottom: 2px;
    margin-top: 10px;
}

.n-create-appointment-form-box input
{
  padding: 20px;
  font-size: 13px;
}

.n-create-appointment-form-box textarea
{
  padding: 20px;
  font-size: 13px;
}

.n-create-appointment-form-box select
{
  /* padding: 20px; */
  height: 45px;
  color: rgb(110, 110, 110);
  font-size: 13px;
}

.n-create-appointment-form-box p
{
  font-size: 13px;
  font-weight: 600;
  color: rgb(110, 110, 110);
}