/*import fonts*/
/* @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,400,400i,600,600i,700,700i,900'); */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap");

/*body*/

body {
  font-family: "Poppins", sans-serif;
  /* background: #F8F8F8; */
  background: #ffffff;
  font-weight: 400;
  color: #696769;
  font-size: 14px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

a {
  color: #007bff;
}

a:hover,
a:focus {
  outline: 0 !important;
  text-decoration: none;
  color: #8e9298;
}
/* BASE STYLES */

.bold-400 {
  font-weight: 400;
}

.bold-500 {
  font-weight: 500;
}

.bold-600 {
  font-weight: 600;
}

.bold-700 {
  font-weight: 700;
}

/* base display styles for building compomponents */
.inl-flex {
  display: inline-flex !important;
  flex-direction: row;

  &.flex-wrap {
    flex-wrap: wrap;
  }

  &.fd-col {
    flex-direction: column;
  }

  &.al-center {
    align-items: center;
  }

  &.js-center {
    justify-content: center;
  }

  &.js-right {
    justify-content: right;
  }

  &.js-spb {
    justify-content: space-between;
  }
}
.flex {
  display: flex !important;
  flex-direction: row;

  &.flex-wrap {
    flex-wrap: wrap;
  }

  &.fd-col {
    flex-direction: column;
  }

  &.al-center {
    align-items: center;
  }

  &.js-center {
    justify-content: center;
  }

  &.js-right {
    justify-content: right;
  }

  &.js-spb {
    justify-content: space-between;
  }
}

.block {
  display: block !important;
}

/* PAGE TITLES */

.page-title {
  color: #212121;
  font-weight: 600;

  @media screen and (max-width: 992px) {
    font-size: 1.3rem;
  }
}

.page-title-bold {
  font-weight: 600;
}

.page-title-unbold {
  font-weight: 400;
}

/* BRANCH/COURSE TITLES */
.branch-icon {
  background-color: #e6efff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding-top: 1px;
  color: #2a58a0;
  float: left;
  margin-top: 5px;
}

.branch-title {
  @media screen and (max-width: 992px) {
    display: none;
  }
}

.branch-title-mobile {
  display: none;

  @media screen and (max-width: 992px) {
    display: block;
  }
}

.course-title {
  @media screen and (max-width: 992px) {
    display: none;
  }
}

.course-title-mobile {
  display: none;

  @media screen and (max-width: 992px) {
    display: block;
  }
}

/* PAGE BUTTONS */

.page-header-rightsidebar {
  margin-right: 340px;
}

/* LEFT SIDE NAVBAR */

aside {
  z-index: 2000;
  /* show above footer */
  width: 250px;
  height: 100%;
  position: fixed;
  float: left;
  background: #fff;
  /* border-right: 1px solid #D4D9DD; */
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  /* box-shadow: 0 2px 4px 0 rgba(0,0,0,.2); */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slimScrollBar {
  width: 8px !important;
}

.slimscroll-menu {
  padding: 30px;
  /* padding-top: 45px; */
  padding-top: 10px;
}

.need-help-container {
  padding: 0 10px;

  .profile-info{
    position: relative;
    display: flex;
    border-radius: 10px;
    gap: 10px;
    padding: 30px 0px;
    align-items: center;
    span{
      color: black;text-wrap: nowrap;
    }
    i{
      color: black; 
    }
  }
  .acc-name{
    text-decoration: underline;
  }
  img {
    width: 50px;
    height: 50px;

    @media screen and (max-width: 1280px) {
      width: 40px;
      height: 40px;
    }
  }
  .logout-btn{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 5px;
    border-radius: 4px;
    position: absolute;
    right: -10px;
  }
  .profile-email{
    width: 155px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    @media screen and (max-width: 900px) {
    width: 110px;
    }
  }
}

.need-help-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background-color: #2a58a0;
  border-radius: 10px;
}

.need-help-text {
  display: flex;
  flex-direction: column;
  color: white;


}

.need-help-doc-btn {
  border: none;
  background-color: aliceblue;
  border-radius: 5px;
  padding: 3px;
  font-weight: 500;

  &:hover {
    background-color: lightblue;
  }

  &:focus {
    outline: none;
  }

  >a {
    font-size: 12px;
  }
}

.need-help-doc-btn a {
  text-decoration: none;
  color: black;
}

.side-branding {
  width: 100%;
}

.side-branding img {
  width: 250px;
  height: 70px;
  margin-left: -30px;
  margin-top: -10px;
}

aside ul {
  padding: 0 15px;
}

aside li {
  list-style: none;
}

aside i {
  font-size: 22px;
  margin-right: 15px;
}

aside span.text {
  margin-top: 8px;
  position: absolute;
  font-size: 15px;
}

aside span.bubble {
  float: right;
  margin-top: 7px;
  width: 25px;
  height: 25px;
  padding-top: 8px;
  text-align: center;
}

a.close-aside {
  position: absolute;
  top: 11px;
  left: 162px;
  color: #a9abb3;
  display: none;
}

aside label.menu-icon {
  width: 40px;
}

/* LEFT SIDE MENU GROUPS */

aside li.menu-label {
  font-size: 15px;
  color: #ff8a00;
  margin-left: 11px;
  margin-top: 33px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: #ff8a00 2px solid;
}

/* LEFT SIDE MENU ITEMS */

aside li a {
  display: block;
  font-size: 14px;
  color: #696769;
  padding: 7px !important;
}

/* aside li a:hover, aside li a:focus {
	color: #fff;
	text-decoration: none;
	background-color: #ffc008;
	font-weight: 700;
}
aside li a:active, aside li a.active {
	color: #fff;
	text-decoration: none;
	background-color: #FF8A00;
	font-weight: 700;
} */

.nav-item {
  margin-bottom: 10px;
}

.nav-item i {}

.handpointer {
  cursor: pointer;
}

/* HEADER NAVBAR */

header {
  background: #2a58a0;
  height: 70px;
  padding: 15px;
  width: 100%;
  z-index: 98;
  -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  position: fixed;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.header-right {
  margin-left: 270px;
}

.site-title-box {
  width: auto;
  float: left;
  top: 0px;
  margin-top: -15px;
}

.site-title {
  display: inline-block;
  font-size: 28px;
  margin-top: 15px;
  color: #ffffff;

  @media screen and (max-width: 992px) {
    display: none;
  }
}

.header-links>li {
  display: inline-block;
}

.branch-name {
  display: block;
  margin-top: 10px;
  color: #ffffff;
}

.left-header-links {
  display: inline-block;
  padding-left: 0px;
  position: absolute;
  top: 15px;
  margin-left: 10px;
}

.left-header-links-button {
  margin-top: -15px;

  @media screen and (max-width: 992px) {
    margin-left: 5px;
  }
}

.btn-upload {
  padding: 4px 9px;
  font-size: 20px;
}

/* Number of notifications */
header .bubble {
  position: relative;
  left: 19px;
  background: red;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  padding-top: 1px;
  text-align: center;
  display: block;
  top: -41px;
}

/* header navbar buttons */

header .nav-button {
  cursor: pointer;
  display: inline-block;
  margin-top: -15px;
}

header .nav-button:hover {
  background-color: #ffffff28;
}

header .nav-button .inner-icon {
  font-size: 25px;
  color: #ffffff;
}

/*header .nav-button:hover .inner-icon {
	color: #000;
}*/

header .nav-button .profile-name {
  color: #ffffff;
}

/*header .nav-button:hover .profile-name {
	color: #000;
}*/

header .schedule-icon {
  margin-right: 0px;

  @media screen and (max-width: 992px) {
    display: none;
  }
}

header .notify-icon {
  margin-right: 0px;
}

/* normal buttons */
header .nav>li>a {
  display: block;
  padding-left: 15px;
  padding-top: 15px;
  padding-right: 15px;
  height: 70px;
}

/* dropdown buttons */
header .nav>li>.dropdown {
  display: block;
  height: 70px;
  padding-left: 15px;
  padding-top: 15px;
  padding-right: 15px;
  height: 70px;
}

header .nav>li>a.btn {
  padding: 6px 20px !important;
}

.header-links {
  margin-right: -15px;
}

.notifications-count {
  margin-top: -20px;
  position: absolute;
}

.avatar img {
  width: 38px;
  height: 38px;
}

.profile-name {
  margin-right: 4px;
}

header .profile {
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

header span.avatar img {
  border-radius: 50%;
  margin-right: 8px;
}

.header-left {
  float: left;
  margin-left: 245px;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
}

header .nav>li>a.btn.btn-icon {
  padding-left: 40px !important;
}

#menutogglebtn,
.header-links>li.header-logo {
  display: none;
}

/* MENU TOGGLE BUTTON SHOWN ON MOBILE */
#menutogglebtn a {
  width: 50px;
  height: 40px;
  font-size: 33px;
  padding: 2px 2px !important;
  line-height: 1;
  background-color: #00317f;
  border-radius: 15px;
}

/* HEADER DROPDOWN MENUS */

.nav-drop-menu {
  border: none;
  padding: 10px 0px;
  font-size: 14px;
  -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  background-color: #2a58a0;
}

.nav-drop-menu li {
  width: auto;
}

.nav-drop-menu-item {
  display: block;
  padding: 10px 20px;
  padding-left: 40px;
  margin: 0;
  color: #fff;
}

.nav-drop-menu-item:hover,
.nav-drop-menu-item:focus {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
  font-weight: 700;
}

.nav-drop-menu-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0067d4;
  font-weight: 700;
}

.nav-drop-menu-item i {
  position: absolute;
  margin-left: -23px;
  margin-top: -4px;
  font-size: 17px;
}

/* PAGE DROP DOWN MENUS */
.main-content ul.dropdown-menu {
  border: none;
  padding: 10px 0px;
  font-size: 14px;
  -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
}

.main-content ul.dropdown-menu li {
  width: auto;
}

.main-content ul.dropdown-menu li a {
  display: block;
  color: #696769;
  display: block;
  padding: 10px 20px;
  padding-left: 40px;
  margin: 0;
  text-wrap: nowrap;
}

.main-content ul.dropdown-menu li a:hover,
.main-content ul.dropdown-menu li a:focus,
.main-content ul.dropdown-menu li a:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
  font-weight: 700;
}

.main-content ul.dropdown-menu li a i {
  position: absolute;
  margin-left: -23px;
  margin-top: -2px;
  font-size: 17px;
}

/*main content*/
.main-content {
  margin: 0 0 50px 250px;
  padding: 30px;
  padding-top: 90px;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  min-height: 85vh;
  @media screen and (max-width: 800px) {
    padding: 20px;
  }
 
}

.card {
  border: none;
  padding: 20px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);

  @media screen and (max-width: 576px) {
    padding: 8px 14px !important;
  }

  @media screen and (max-width: 380px) {
    padding: 6px 12px !important;
  }
}

.page-header {
  overflow: hidden;
  margin-bottom: 10px;

  @media screen and (max-width: 992px) {
    text-align: center !important;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
}

.header-branding img {
  max-width: 125px;
  max-height: 50px;
  margin-right: 65px;
  margin-top: -6px;
}

.product-logo .header-branding img {
  max-width: 100px;
  margin-top: 5px;
  margin-right: 0px;

  @media screen and (max-width: 992px) {
    display: none;
  }

  /*opacity: 0.5;*/
  /*filter: brightness(0) invert(1);*/
}

/*.product-logo:hover .header-branding img {
	opacity: 1;
}*/

.report-description {
  margin-top: revert-layer;
  margin-bottom: revert-layer;
}

.action-icon {
  background-image: none !important;
}

/* FOOTER */

footer {
  z-index: 1000;
  /* show above all other floats, but below LEFT menu */
  margin: 35px 0px 0 270px;
  padding: 0px 15px 0px 15px;
  color: #fff;
  background: #bbb7b7;
  position: fixed;
  bottom: 0px;
  width: 100%;
  padding-right: 200px;

  @media screen and (max-width: 992px) {
    padding: 0;
    margin-left: 0 !important;
  }
}

.footer-text {
  text-align: center;
  margin-bottom: 0;
  padding: 8px 0px;

  @media (min-width: 1261px) and (max-width: 1340px) {
    padding-right: 30px !important;
    padding-left: 20px;
  }

  @media screen and (max-width: 992px) {
    display: none;
  }
}

.footer-text-mobile {
  display: none;

  @media screen and (max-width: 992px) {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 12px;
  }
}

footer a {
  color: #fff;
}

.footer-logo {
  height: 40px;
  margin-right: 30px;
}

/* LOGIN PAGE AUTH CARD */
.welcome-text {
  font-size: 1.2rem !important;
}

.login-auth {
  height: 100%;
  width: 100%;
  margin-bottom: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 0px;
}

.auth-card {
  border-radius: 5px;
  padding: 25px;
  width: 430px;
  margin: auto auto;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-logo img {
  width: 200px;
  margin-bottom: 6px;
}

.auth-page .register,
.auth-page .forgot,
.auth-page .reset,
.auth-page .signup {
  display: none;
}

/* LOGIN PAGE FOOTER */

.login-layout {
  background: url(/assets/login-background.png) no-repeat;
  background-size: 100% 108%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: center;
}

.login-footer {
  position: absolute;
  bottom: 0px;
  margin: 0 auto;
  width: 100%;

  @media screen and (max-width: 992px) {
    bottom: 29px;
  }
}

/* alert popups */

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  padding-top: 6px;
  color: #fff;
  float: left;
}

.notification-date {
  float: right;
  color: #a9abb3;
  font-size: 13px;
  margin-left: 2px;
  /* width: 100px; */
}

.single-notification {
  overflow: hidden;
  display: flex;
  gap: 10px;
  padding: 11px 15px;
  margin: 15px;
  border-radius: 20px;
  background-color: #ffffff;
  align-items: center;
}

.notification-message {
  padding-left: 51px;
  padding-top: 9px;
}

.single-notification:nth-of-type(even) {
  background-color: #ffffff;
}

span.unread-notification {
  position: absolute;
  margin-left: -8px;
  margin-top: -9px;
}

/* ACTION BUTTONS */

.page-button-desktop {
  display: inline-block;

  @media screen and (max-width: 992px) {
    display: none;
  }
}

.page-button-mobile {
  display: none;

  @media screen and (max-width: 992px) {
    display: inline-block;
    color: #ff8a00;
    font-size: 27px;
    padding-top: 4px;
  }
}

.button-padding-left {
  padding-left: 146px;
}

.btn-list-grid {
  @media screen and (max-width: 992px) {
    margin-top: 11px;
  }
}

/* std orange theme for primary buttons */

.btn {
  font-size: 14px;
  border: none;
  border-radius: 28px;
}

.btn-primary {
  background-color: rgba(74, 163, 251, 1);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: rgba(74, 163, 251, 1);
  outline: 0 !important;
  box-shadow: none;
  color: #fff;
}

.btn-primary:active {
  background-color: rgba(74, 163, 251, 1) !important;
}

/* std blue theme for secondary buttons */

.btn-success {
  background-color: rgba(74, 163, 251, 1);
}

.btn-success:hover,
.btn-success:focus {
  background-color: rgba(74, 163, 251, 1);
  outline: 0 !important;
  box-shadow: none;
}

.btn-success:active {
  background-color: rgba(74, 163, 251, 1) !important;
}

/* std grey theme for unimportant buttons */

.btn-default {
  background-color: white;
  color: #696769;
}

.btn-default:hover,
.btn-default:focus {
  background-color: #e1eef8;
  color: #696769;
  outline: 0 !important;
  box-shadow: none;
}

.btn-default:active {
  background-color: rgba(74, 163, 251, 1) !important;
}

/* std icon layout */

.btn.btn-icon i {
  font-size: 17px;
  position: absolute;
  margin-top: -2px;
  margin-left: -25px;
}

.btn.btn-icon {
  padding-left: 40px !important;
}

.btn.btn-icon.btn-sm {
  padding-right: 17px;
}

.btn-halfsize {
  display: inline-block;
  width: 45%;
}

/* keep toggle buttons orange when active */

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  background-color: rgba(74, 163, 251, 1) !important;
  outline: 0 !important;
}

/* data-table buttons used on Invoices page */

a.dt-button,
a.paginate_button.current {
  padding: 0.5em 1em;
  font-size: 14px;
  background-color: rgba(255, 194, 73, 1) !important;
  color: #fff !important;
  border-radius: 28px;
  background-image: none !important;
  border: none !important;
  box-shadow: none !important;
}

a.dt-button:hover {
  background-color: #ffc008 !important;
  background-image: none !important;
  box-shadow: none !important;
}

a.dt-button:active {
  background-color: rgba(74, 163, 251, 1) !important;
  background-image: none !important;
  box-shadow: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border-radius: 28px;
}

/* FORM FIELDS */
.required-field:after {
  content: " *";
  color: red;
}

.form-control {
  height: calc(2.25rem + 9px);
  border: 1px solid #dde3e8;
  font-size: 14px !important;
  border-radius: 1.25rem;
}

::placeholder {
  color: #d4d9dd !important;
  opacity: 1 !important;
  /* Firefox */
  font-size: 14px !important;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d4d9dd !important;
  font-size: 14px !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d4d9dd !important;
  font-size: 14px !important;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid rgba(74, 163, 251, 1);
  background-color: #e1e2e8;
}

.form-control:disabled,
.form-control[readonly] {
  border-color: #e1e2e8;
  background-color: #ecedf2;
  color: rgba(37, 37, 41, 0.5);
  cursor: not-allowed;
  opacity: 1;
}

label {
  margin-bottom: 5px;
}

p.help {
  font-size: 12px;
  color: #a9abb3;
}

.select2-container--default .select2-selection--multiple {
  border: 2px solid #dde3e8;
  min-height: calc(2.25rem + 9px);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 2px solid #dde3e8;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #ecedf2;
  border: 1px solid #007bff;
  color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
  margin-right: 7px;
}

.select2-container--default .select2-selection--single {
  padding-top: 8px;
  height: calc(2.25rem + 9px);
  color: rgba(37, 37, 41, 0.5);
  border: 1px solid #dde3e8;
  font-size: 14px !important;
  border-radius: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 11px;
}

.search-filter .btn {
  margin-top: 27px;
  padding: 0.6rem 0.75rem;
}

.pagination {
  text-align: center;
}

.pagination .btn-group {
  margin: 0 auto;
}

/* PROFILE PAGE RIGHT SIDEBAR */

.page-rightbar {
  width: 340px;
  position: fixed !important;
  right: 0;
  bottom: 0;
  top: 62px;
  height: 100%;
  border-radius: 0 !important;
  background: #fff;
  /*padding: 30px;*/
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.slimscroll-profile-menu {
  padding: 30px;
}

.halfpage-content {
  padding-right: 340px;
  width: 100%;
}

.user-profile-options .dropdown-toggle {
  background: red;
  width: 35px;
  height: 35px;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 40px;
  position: absolute;
  color: #fff;
  right: 10px;
  padding-top: 3px;
  background: #eaeaea;
  color: #696769;
}

/*calendar*/
#external-events {
  float: left;
  width: 150px;
  padding: 0 10px;
  text-align: left;
}

#external-events h4 {
  font-size: 16px;
  margin-top: 0;
  padding-top: 1em;
}

.external-event {
  /* try to mimick the look of a real event */
  margin: 10px 0;
  padding: 2px 4px;
  background: #3366cc;
  color: #fff;
  font-size: 0.85em;
  cursor: pointer;
}

#external-events p {
  margin: 1.5em 0;
  font-size: 11px;
  color: #666;
}

#external-events p input {
  margin: 0;
  vertical-align: middle;
}

/*accordiaon*/
#accordion .panel.panel-default {
  border: 1px solid #e4ecef;
  box-shadow: none;
  border-radius: 2px;
  margin-bottom: 5px;
}

#accordion .panel-heading {
  background: #f8f8f8;
  padding: 0;
  border: 1px solid #f8f8f8;
}

#accordion .panel-heading h4 {
  margin-bottom: 0;
  font-size: 16px;
}

#accordion h4 a {
  display: block;
  padding: 17px 15px;
  color: #777;
}

.panel-collapse {
  padding-top: 15px;
}

.delete-reminder {
  color: #777;
  cursor: pointer;
  float: right;
  margin-top: 13px;
  font-size: 19px;
  margin-right: 18px;
}

/*loader*/
.loader-demo-box {
  width: 100%;
  height: 200px;
  display: flex !important;
  align-items: center !important;
}

.circle-loader {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 9;
}

.circle-loader:before {
  z-index: 100;
  animation: spin 1s infinite;
}

.circle-loader:after,
.circle-loader:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: #007bff;
}

.circle-loader:after {
  border: 10px solid #e3e8e8;
}

.empty {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.empty i {
  font-size: 30px;
}

/*users*/
.user-grid,
.user-profile,
.user-profile-pic,
.user-profile-info {
  text-align: center;
}

.user-profile-options .dropdown-menu {
  margin-left: -122px;
}

.user-grid-pic img,
.user-profile-pic img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 20px auto;
}

.user-grid-info h5,
.user-profile-info h5 {
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.user-grid-info p,
.user-profile-info p {
  margin-bottom: 0;
  color: #a9abb3;
}

.user-grid-info {
  margin-bottom: 10px;
}

.green-red-label p {
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 15px;
}

.user-profile-info {
  margin-bottom: 15px;
}

.nav-tabs {
  border-bottom: none;
}

ul.nav.nav-tabs li {
  font-size: 17px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
}

/* PAGE TABS */

.nav-tabs {
  margin-top: -20px;
  margin-bottom: 20px;
  margin-left: -25px;
  background-color: #fff;
  margin-right: -25px;
  border-bottom: #e3e5f1 1px solid;

  @media (max-width: 576px) {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.nav-tabs li {
  min-width: 110px;
  color: rgba(33, 33, 33, 0.65);

  @media (max-width: 576px) {
    width: 50% !important;
  }
}

.nav-tabs li a:hover {
  font-weight: 700;
  background-color: #fff;
}

.nav-tabs li a.active,
.nav-tabs li a.active {
  color: #f75252 !important;
  font-weight: 700;
  background-color: #fff;
  border-bottom: #f75252 2px solid;
}

.nav-tabs li a,
.nav-tabs li a {
  color: #696f87;
  display: block;
  padding: 10px;
}

.nav-tabs li a:hover,
.nav-tabs li a:hover {
  text-decoration: none;
}

.nav-tabs li a.active,
.nav-tabs li a.active {
  color: #5b5b5c;
}

/* USER PROFILE TABS */

.profile-more-section .nav-tabs {
  margin-top: 30px;
}

.profile-more-section .nav-tabs li {
  width: 50%;
}

.profile-more-section table tr td {
  padding-bottom: 20px !important;
}

.profile-more-section table tr td.profile-item-title {
  color: #a9abb3;
  padding-right: 15px;
}

.profile-more-section table tr td.profile-item-value {
  color: #000;
  font-weight: 600;
}

.schedule-map span {
  margin-left: 15px;
}

.schedule-map {
  margin-bottom: 0;
  margin-top: 8px;
}

.ui-datepicker {
  background-color: #fff;
  z-index: 1060 !important;
  -webkit-box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 45px 0 rgba(0, 0, 0, 0.12);
  padding: 0px;
}

.ui-datepicker .ui-icon {
  text-indent: -6px;
}

.ui-datepicker-title {
  font-weight: bold;
}

.ui-datepicker-prev {
  cursor: pointer;
}

.ui-datepicker-next {
  cursor: pointer;
}

/* Datepicker */

.ui-datepicker-dropdown {
  padding: 10px !important;
}

.ui-datepicker>div {
  display: inherit;
}

.ui-datepicker .ui-datepicker-prev {
  float: left;
}

.ui-datepicker .ui-datepicker-next {
  float: right;
}

.ui-datepicker .ui-datepicker-title {
  display: flex;
  justify-content: center;
  padding-right: 8px;
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
  text-indent: 1px;
}

.ui-datepicker .ui-datepicker-next .ui-icon {
  text-indent: 1px;
}
.ui-datepicker .ui-datepicker-next span{
  left: 35%;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  width: 2.8em;
}

.ui-datepicker td,
.ui-datepicker th {
  width: 30px;
  height: 30px;
}

.ui-datepicker td a {
  color: #696769;
}

.ui-datepicker table tr td.active:hover,
.ui-datepicker table tr td.active:hover:hover,
.ui-datepicker table tr td.active.disabled:hover,
.ui-datepicker table tr td.active.disabled:hover:hover,
.ui-datepicker table tr td.active:active,
.ui-datepicker table tr td.active:hover:active,
.ui-datepicker table tr td.active.disabled:active,
.ui-datepicker table tr td.active.disabled:hover:active,
.ui-datepicker table tr td.active.active,
.ui-datepicker table tr td.active:hover.active,
.ui-datepicker table tr td.active.disabled.active,
.ui-datepicker table tr td.active.disabled:hover.active,
.ui-datepicker table tr td.active.disabled,
.ui-datepicker table tr td.active:hover.disabled,
.ui-datepicker table tr td.active.disabled.disabled,
.ui-datepicker table tr td.active.disabled:hover.disabled,
.ui-datepicker table tr td.active[disabled],
.ui-datepicker table tr td.active:hover[disabled],
.ui-datepicker table tr td.active.disabled[disabled],
.ui-datepicker table tr td.active.disabled:hover[disabled],
.ui-datepicker table tr td.selected,
.ui-datepicker table tr td.selected:hover,
.ui-datepicker table tr td.selected.disabled,
.ui-datepicker table tr td.selected.disabled:hover {
  background-color: #2a58a0 !important;
  color: #ffffff !important;
  background-image: none !important;
  text-shadow: none !important;
}

.ui-datepicker table tr td.today,
.ui-datepicker table tr td.today:hover,
.ui-datepicker table tr td.today.disabled,
.ui-datepicker table tr td.today.disabled:hover {
  background-color: #2a58a0 !important;
  color: #ffffff !important;
  background-image: none !important;
}

.ui-datepicker-inline {
  border: 2px solid darken(#e4e8eb, 5%);
  width: 100%;
}

.ui-datepicker-inline table {
  width: 100%;
}

.ui-datepicker .ui-datepicker-switch:hover,
.ui-datepicker .next:hover,
.ui-datepicker .prev:hover,
.ui-datepicker tfoot tr th:hover,
.ui-datepicker table tr td.day.focused,
.ui-datepicker table tr td.day:hover {
  background: #e4e8eb;
}

.profile-account-info {
  margin-bottom: 100px;
}

.activity-feed {
  padding: 15px;
  list-style: none;
  margin-bottom: 100px;
}

.activity-feed .feed-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 30px;
  border-left: 2px solid #e4e8eb;
}

.activity-feed li strong,
.activity-feed li b {
  color: #2a58a0;
  font-weight: 600;
}

.activity-feed .feed-item:last-child {
  border-color: transparent;
}

.activity-feed .feed-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #2a58a0;
}

.activity-feed .feed-item .date {
  display: block;
  position: relative;
  top: -5px;
  color: #8c96a3;
  text-transform: uppercase;
  font-size: 13px;
}

.activity-feed .feed-item .text {
  position: relative;
  top: -3px;
}

.table td,
.table th {
  padding: 0.35rem;
  vertical-align: middle;
  border-top: none;
}

.table-striped {
  min-height: 132px;
}

/* .table-striped tbody tr:nth-of-type(odd) {
	background-color: #F8F8F8;
} */
.card-header {
  margin: -20px -25px 5px -25px;
  background: #fff;
  border-bottom: 1px solid #59affe;
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 576px) {
    margin: -20px -15px 5px -14px !important;
  }
}

.card-header h5 {
  margin-top: 6px;
  margin-bottom: 0;
  font-weight: 600;
}

.table-action-icon {
  color: #696769;
  font-size: 18px;
  margin: 1px 5px;
  color: #8e9298;
  margin-top: -9px;
}

/*datatables*/

.dataTables_filter input {
  border: 1px solid #e6eaee;
  border-radius: 3px !important;
  height: 33px;
}

.dataTables_filter input:focus {
  outline: none;
  border-color: #2a58a0;
}

table.dataTable.no-footer {
  border-bottom: 2px solid #e6eaee !important;
}

.table>thead>tr>th {
  vertical-align: bottom;
  border-bottom: 2px solid #e6eaee;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #7f8fa4;
}

.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>td {
  border-top: 0;
  color: #7f8fa4;
  outline: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: #2a58a0 !important;
  border: 1px solid #2a58a0;
  background: transparent;
}

table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
  background-color: rgba(230, 234, 238, 0.3);
}

table.dataTable.hover tbody tr.odd:hover,
table.dataTable.display tbody tr.odd:hover {
  background-color: rgba(230, 234, 238, 0.3);
}

table.dataTable.hover tbody tr.even:hover,
table.dataTable.display tbody tr.even:hover {
  background-color: #fff;
}

table.dataTable.display tbody tr.even>.sorting_1,
table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
  background-color: transparent;
}

table.dataTable.display tbody tr.odd>.sorting_1,
table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
  background-color: transparent;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: 1px solid #e6eaee;
}

/*schools page*/
.school-icon {
  background-color: #e6efff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  padding-top: 6px;
  color: #2a58a0;
  float: left;
  margin-top: 5px;
}

.school-details {
  padding-left: 70px;
}

.school-heading {
  overflow: hidden;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.school-details h5,
.course-info-basic h5,
.instructor-item-info h6,
.message-header h6 {
  font-weight: 700;
  margin-bottom: 1px;
}

.school-details span,
.course-info-basic p,
.message-header p {
  display: block;
  font-size: 14px;
  color: #a9abb3;
}

.course-name {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.school-info span {
  font-size: 18px;
  color: #696769;
  margin-right: 12px;
}

.school-info p {
  margin-bottom: 5px;
}

.school-footer span.dropdown-toggle,
.course-info-more span.dropdown-toggle {
  font-size: 24px;
  cursor: pointer;
}

.school-footer .dropdown {
  margin-top: -8px;
}

.school-footer .dropdown-menu {
  margin-left: -131px;
}

.message-header {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.message-header p {
  margin-bottom: 10px;
}

/* COURSES LISTING PAGE */

.course-icon {
  background-color: #e6efff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding-top: 1px;
  color: #2a58a0;
  float: left;
  margin-top: 5px;
}

.course-image img {
  max-width: 100%;
  border-radius: 3px 3px 0px 0px;
}

.course-image {
  margin: -25px -25px 15px -25px;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.course-img-card-view {
  @media (max-width: 576px) {
    margin: -25px -14px 15px -14px !important;
  }
}

.course-image-main {
  z-index: 1;
  position: relative;
}

.course-image-blur {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  filter: blur(50px);
  opacity: 0.5;
}

.course .badge {
  padding: 0.25em 0.6em;
  font-size: 100%;
}

.course-info-other h5 {
  color: #4eaae9;
}

.course-instructors img,
.more-instructors {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -14px;
}

.course-instructors img:first-child {
  margin-left: 0;
}

.course-info-more {
  margin-top: 15px;
}

.course-info-more .dropdown-menu {
  margin-left: -130px;
}

.course-info-buttons {
  margin-bottom: 20px;
}

.course .badge {
  background-color: #4eaae9;
}

.more-instructors {
  background-color: #4eaae9;
  color: #fff;
  padding-top: 5px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.user-profile-options.course-options .dropdown-toggle {
  margin-right: 0;
  right: -5px;
  background: #fff;
  color: #696769;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 8px 0;
}

.instructor-item-img img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.instructor-item-img {
  width: 55px;
  float: left;
}

.instructor-item-info {
  padding-left: 55px;
}

.instructor-item {
  overflow: hidden;
    padding: 10px;
    border-radius: 8px;
    border:1px solid #00000029;
}



/* IMAGE LINKS */
.image-link {
  transition: filter 100ms;
}

.image-link:hover {
  filter: opacity(70%) brightness(120%);
}

/*invoices*/
img.table-avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  margin-right: 6px;
}

img.table-image {
  width: 44px;
  margin-right: 10px;
}

span.communication-contact {
  display: block;
}

img.table-avatar-invoice {
  width: 38px;
  height: 38px;
  margin-top: 3px;
  float: left;
  border-radius: 50%;
  margin-right: 6px;
}

.payment-item {
  overflow: hidden;
  padding: 7px 0;
  border-bottom: 1px solid #ddd;
}

.payment-item .amount {
  width: 60%;
  float: left;
}

.payment-item .method {
  width: 40%;
  float: left;
  padding-top: 15px;
}

.payment-item .amount p {
  font-size: 19px;
  margin-bottom: 0;
}

p.copyright {
  padding: 15px;
  text-align: center;
  color: #a9abb3;
}

/* USER LISTS */
img.table-avatar-user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* DASHBOARD WIDGETS */

.widget {
  text-align: center;
}

.widget-icon {
  width: 49px;
  height: 49px;
  float: none;
  margin: 6px auto;
  border-radius: 50%;
  background: #e6efff;
  color: #2a58a0;
  font-size: 22px;
  padding-top: 8px;
}

.widget-title h1 {
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 0;
}

.widget-title p {
  font-size: 16px;
}

.widget-trend p {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
}

.widget-trend p i {
  font-size: 31px;
  position: absolute;
  margin-left: -31px;
  margin-top: -9px;
}

.widget-icon.widget-warning,
.growth-icon.warning {
  background: #fff8e5;
  color: #ffbb00;
}

.widget-icon.widget-danger,
.growth-icon.danger {
  background: #ffe5e5;
  color: #ff0000;
}

.widget-icon.widget-success,
.growth-icon.success {
  background: #ecfaeb;
  color: #49cb41;
}

/* DASHBOARD GROWTH CHART */

.growth-heading h1 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 0;
  color: #2a58a0;
}

.growth-heading p {
  font-size: 20px;
  font-weight: 700;
  color: #2a58a0;
}

.growth-icon {
  width: 29px;
  height: 29px;
  text-align: center;
  border-radius: 5px;
  float: left;
  font-size: 20px;
}

.growth-message {
  font-size: 16px;
  padding-left: 44px;
}

.growth-pointers {
  overflow: hidden;
  margin-bottom: 3px;
}

.growth-heading {
  margin: 26px 0;
}

.growth-left {
  padding: 15px 70px;
}

/* DASHBOARD CHARTS */

#tooltip-canvas {
  position: absolute;
  top: 40%;
  left: 31%;
  width: 40%;
}

.chart-icon {
  position: absolute;
  top: 58%;
  left: 45%;
  font-size: 50px;
}

.view-all-last {
  margin-bottom: 5px;
  margin-top: 12px;
}

.toast-success {
  background-color: #00c853;
}

.toast-error {
  background-color: #ff1a1a;
}

#toast-container>div:hover {
  -moz-box-shadow: 0 10px 48px rgba(30, 107, 174, 0.1),
    0 1px 1px rgba(255, 248, 254, 0.61);
  -webkit-box-shadow: 0 10px 48px rgba(30, 107, 174, 0.1),
    0 1px 1px rgba(255, 248, 254, 0.61);
  box-shadow: 0 10px 48px rgba(30, 107, 174, 0.1),
    0 1px 1px rgba(255, 248, 254, 0.61);
}

/*popover*/
.popover {
  border: 1px solid #2a58a0;
  border-radius: 4px;
}

.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::before {
  bottom: 0;
  border-top-color: #2a58a0;
}

.popover-header {
  color: #2a58a0;
  background: #e6efff;
  border-bottom: 1px solid #2a58a0;
  font-size: 14px;
  font-weight: 600;
}

.popover-body {
  font-family: "Poppins", sans-serif;
  color: #696769;
  font-size: 14px;
}

/*helper classes*/
.pull-right {
  float: right !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.m-15 {
  margin: 15px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mlr-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.p-8 {
  padding: 8px !important;
}

.p-l-0 {
  padding-left: 0;
}

.p-r-0 {
  padding-right: 0;
}

.p-lr-0 {
  padding-right: 0;
  padding-left: 0;
}

.p-5 {
  padding: 5px !important;
}

.p-0 {
  padding: 0 0 0 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.inline-block {
  display: inline-block !important;
}

.pointer {
  cursor: pointer;
}

.mw-1000 {
  min-width: 1000px;
}

.mw-half {
  min-width: 740px;
}

/*badge*/
.badge-success {
  background-color: #49cb41;
}

/*texts*/

.text-danger {
  color: #ff0000 !important;
}

.text-success {
  color: #49cb41 !important;
}

.text-primary {
  color: #007bff !important;
}

.text-muted {
  color: #a9abb3 !important;
}

.text-warning {
  color: #ffbb00;
}

.text-purple {
  color: #9013fe;
}

.text-darker {
  color: #888;
}

.text-xs {
  font-size: 11px;
}

.text-ellipsis {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*backgrounds*/

.bg-success {
  background: #00d000;
}

.bg-danger {
  background: #ff1a1a;
}

.bg-primary {
  background: #007bff;
}

.bg-warning {
  background: #ffbb00;
}

.bg-purple {
  background: #6732c3;
}

.bg-secondary {
  background: #6732c3;
}

/*animation*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*responsiveness*/

@media (max-width: 1200px) {
  .schedule-user-grid-buttons .btn {
    padding: 0.275rem 0.2rem !important;
    font-size: 12px;
  }

  .header-right {
    margin-left: 62px !important;
  }
}

@media (max-width: 1100px) {
  aside {
    width: 200px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }

  .slimscroll-menu {
    padding-left: 15px;
  }

  .main-content {
    margin: 0 0 50px 200px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }

  footer {
    margin: 0 0 0 200px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }

  footer {
    margin: 35px 15px 0 200px;
  }

  .side-branding img {
    max-width: 220px;
  }

  .header-left {
    margin-left: 196px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
  }

  #calendar {
    overflow-x: auto;
  }

  #calendar table,
  #calendar .fc-content {
    min-width: 700px !important;
  }

  .header-right {
    margin-left: 215px;
  }
}

@media (max-width: 992px) {
  aside {
    margin-left: -200px;
    width: 200px;
    height: 100%;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }

  .main-content {
    margin: 0 0 50px 0px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;

    @media screen and (max-width: 992px) {
      padding-top: 7rem;
    }
  }

  footer {
    margin: 35px 15px 0 0px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }

  .header-left {
    margin-left: 0px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
  }

  #menutogglebtn {
    display: inline-block;
    margin-left: 0px;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
  }

  .site-title {
    margin-left: 30px;

    @media screen and (max-width: 992px) {
      font-size: 22px;
    }
  }

  .site-title .subtext {
    @media screen and (max-width: 992px) {
      display: inline-block;
      width: 101px;
      white-space: nowrap;
      overflow: hidden !important;
      text-overflow: ellipsis;
    }
  }

  .header-links>li.header-logo {
    display: inline-block;
  }

  .open-menu {
    margin-left: 0px;
    box-shadow: 0 10px 48px rgba(0, 0, 174, 0.5),
      0 1px 1px rgba(255, 248, 254, 0.61);
    height: 100%;
  }

  a.close-aside {
    display: block;
  }

  .widget-title h1 {
    font-size: 38px;
  }

  .page-rightbar {
    width: 100%;
    position: relative !important;
    top: 0;
    margin-bottom: 30px;
  }

  .page-header-rightsidebar {
    margin-right: 0px;
  }

  .halfpage-content {
    padding-right: 0px;
    width: 100%;
  }

  .header-right {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .header-links>li.scheduling-link {
    display: none !important;
  }

  .header-branding img {
    max-width: 125px;
    max-height: 50px;
    margin-right: 0;
    margin-top: 0;
  }

  .notification-date {
    float: none;
    margin-top: -7px;
  }
}

@media (max-width: 510px) {
  .profile-name span {
    display: none;
  }

  #menutogglebtn {
    margin-left: 0;
  }

  header .notify-icon {
    margin-right: 0;
  }

  .auth-card {
    width: 80%;
  }
}

@media (max-width: 400px) {
  .auth-card {
    width: 90%;
  }

  .halfpage-content .card-header {
    gap: 10px;

    .upload_btn {
      padding-left: 30px !important;
      text-wrap: wrap;
      font-size: 12px;
    }
  }
}

.modal-body {
  max-height: 80vh;
  overflow-y: auto;
}

.modal.right .modal-body {
  max-height: unset;
}

.packages .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.selected,
.btn-default.active {
  color: #fff;
  background: rgba(255, 194, 73, 1);
  outline: 0 !important;
  box-shadow: none;
}

.view-btn:focus {
  background-color: #2a58a0;
  color: #fff;
  outline: 0 !important;
  box-shadow: none;
}

.action-img {
  width: 20px;
  margin: 0 5px;
}

.backdrop {
  z-index: 1040;
  background-color: #000;
}

.occurence .d {
  margin-right: 20px;
}

#listview {
  /* min-height: 75vh; */

  @media screen and (max-width: 992px) {
    margin-left: 1px;
  }
}

/* login page */
.copyright-login {
  color: #fff !important;
  font-size: 16px;

  @media screen and (max-width: 992px) {
    display: none;
  }
}

.copyright-login-mobile {
  text-align: center;
  color: #fff !important;
  margin-bottom: 0;
  display: none;

  @media screen and (max-width: 992px) {
    display: block;
  }
}

.copyright-login a {
  color: #ffd707;
}

.copyright-login a:hover,
.copyright-login a:focus {
  color: #ffe354;
}

.login-page-input {
  @media screen and (max-width: 600px) {
    width: 400px !important;
  }

  @media screen and (max-width: 550px) {
    width: 350px !important;
  }

  @media screen and (max-width: 470px) {
    width: 300px !important;
  }

  @media screen and (max-width: 350px) {
    width: 250px !important;
  }
}

/* PROFILE ROLE TYPE */

.role-label {
  font-weight: 700;
  color: #ff8a00 !important;
}

/* REPORTS POPUP */
/* 
.dt-buttons {
	height: 50px;
    padding-top: 10px;
} */
.modal-header label {
  color: #fff;
}

/* REPORTS POPUP MODAL BOX */
@media (min-width: 2560px) {
  .modal-dialog {
    margin-top: 6vw;
  }
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 320px;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Left*/

.modal.left.fade .modal-dialog {
  left: -320px;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
  left: 0;
}

/*Right*/

.modal.right.fade .modal-dialog {
  right: -320px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
  right: 0;
}

#toast-container>div {
  -moz-box-shadow: 0 10px 48px rgba(30, 107, 174, 0.1),
    0 1px 1px rgba(255, 248, 254, 0.61);
  -webkit-box-shadow: 0 10px 48px rgba(30, 107, 174, 0.1),
    0 1px 1px rgba(255, 248, 254, 0.61);
  box-shadow: 0 10px 48px rgba(30, 107, 174, 0.1),
    0 1px 1px rgba(255, 248, 254, 0.61);
}

/* POPUPS */

.modal-content {
  border-radius: 20px;
  border: none;
}

.modal-header {
  border-bottom-color: #eeeeee;
  background: #4aa3fb;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}

.modal-header .row:nth-child(1) {
  margin-top: -15px;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  float: left;
  color: #fff;
  font-size: 17px;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
  float: right;
  position: absolute;
  right: 22px;
  margin-top: -17px;
  color: #fff;
  opacity: 1;
}

/* MISC */

#bottomtab li.nav-item {
  margin: 0;
}

.cursor_pointer {
  cursor: pointer;
}

#enrollmentview .table-striped {
  min-height: unset !important;
}

/* SCHEDULE */

.schedule-add-menu li a {
  padding-left: 10px !important;
  padding-right: 0px !important;
}

.weekday-options {
  margin-top: 8px;
    margin-left: 152px;
  padding-left: 0px;
  padding-right: 0px;
}

.weekday-col {
  display: inline-block;
  padding-left: 4px;
  padding-right: 0px;
}

.weekday-col-hidden {
  visibility: hidden;
  font-size: 1px;
  padding: 0;
  margin: 0;
  height: 0px;
}

/* SCHEDULE DATE PICKER */
.datetimepicker {
  padding: 20px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

/* SCHEDULE INSTURCTOR SELECTOR */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #2a58a0;
  border: 1px solid #2a58a0;
}

/* FILE UPLOAD DROPIFY GADGET */
.dropify-wrapper .dropify-message span.file-icon::before {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
 color: #4aa3fb;
 ;
}

.dropify-wrapper .dropify-message span.file-icon p {
  font-size: 28px;
  font-weight: 400;
  color: #4aa3fb;
  ;
}

.dropify-wrapper .parsley-errors-list {
  margin-top: 36px;
}

.reports-modal-div {
  @media (min-width: 1261px) {
    right: 30px;
  }
}

.reports-dialog {
  @media (min-width: 993px) and (max-width: 1260px) {
    margin: 1.75rem auto !important;
  }

  @media (max-width: 580px) {
    .modal-content {
      width: 350px !important;
    }
  }
}

/* to increase size of popup in reports*/
@media (min-width: 992px) {
  .reports-dialog {
    max-width: 1050px !important;
  }
}

@media (min-width: 576px) {
  .reports-dialog {
    margin: 1.75rem 1px 1.75px 337px;
  }
}

@media (max-width: 992px) {
  .reports-dialog {
    margin: auto !important;

    .modal-content {
      width: 450px;
    }
  }
}

.records-list {
  width: 100%;
}

.record-icon {
  height: 50px;
  width: 50px;
}

.record-action {
  color: #8e9298;
  font-size: 20px;
}

@media (min-width: 768px) {
  .col-grid-width {
    max-width: 55% !important;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.wondercar-logo {
  width: 400px !important;
}

@media screen and (max-width: 992px) {
  .wondercar-logo {
    width: 257px !important;
  }
}

.field-tip {
  color: #4aa3fb;
  ;
}

.padding-send-email {
  padding-left: 34px !important;
}

.user-profile-buttons {
  justify-content: center;
}

.popup-width-mobile {
  @media screen and (max-width: 992px) {
    width: 360px;
  }
}

table.dataTable thead th,
table.dataTable thead td {
  padding: 8px 10px !important;
}

.fc-direction-ltr .fc-toolbar>*> :not(:first-child) {
  @media screen and (max-width: 992px) {
    margin-top: 18px;
  }
}

.fc .fc-toolbar-title {
  @media screen and (max-width: 992px) {
    margin-right: 42px;
    margin-left: 25px;
  }
}

.select-date {
  position: relative;
}

.calender-icon {
  position: absolute;
  right: 1%;
  top: 26%;
  cursor: pointer;
}

.dropdown-menu-scroll {
  max-height: 550px;
  overflow-y: scroll;
}

.schedule-record-action {
  @media screen and (max-width: 992px) {
    text-wrap: nowrap;
  }
}

.student-details {
  @media screen and (max-width: 992px) {
    text-wrap: nowrap;
    padding-right: 52px;
  }
}

.nav-item-dataImporter {
  text-wrap: nowrap;
}

#ui-datepicker-div {
  display: none;
}

/* STRIPE PAYMENTS */
.payment-card {
  max-width: 650px;
}

.payment-details {
  max-width: 600px;
  margin-bottom: 50px;
}

#payment-form {
  min-width: 500px;
  max-width: 600px;
  margin-bottom: 50px;
  align-self: center;
}

#payment-element {
  margin-bottom: 24px;
}

#payment-message {
  background-color: #ff8a00;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  padding: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.btn-paynow {
  margin-top: 20px;
}

.hidden {
  display: none;
}

/* STRIPE PAY NOW BUTTON */
.btn-paynow {
  background: #5469d4;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.btn-paynow:hover {
  filter: contrast(115%);
}

.btn-paynow:disabled {
  opacity: 0.5;
  cursor: default;
}

/* STRIPE SPINNER */
/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}

.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}

.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form {
    width: 80vw;
    min-width: initial;
  }
}

/* LEGAL PAGES */

.legal-page-content .header-right {
  margin-left: 0;
}

.legal-page-content .main-content {
  margin: 0;
}

.legal-page-content footer {
  margin-left: 0;
  padding-right: 0;
}

.legal-page-content .hero-section {
  padding-bottom: 10px;
}

.legal-page .inner_content p {
  font-weight: 400;
}

.legal-page .inner_content ul {
  margin-bottom: 0;
}

.legal-page h4 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-page table {
  font-size: 16px;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.legal-page table td,
.legal-page table th {
  text-align: left;
  padding: 8px;
  border: 1px solid #b3b3b3;
}

.legal-page table th {
  padding-top: 11px;
  padding-bottom: 11px;
  background-color: #ff8a00;
  color: white;
}

.legal-page table tr:nth-child(even) {
  background-color: #e7e9eb;
}

/* FORM LABELS */
.sublabel {
  display: block;
  padding-bottom: 10px;
  color: #bfbfbf;
}

/*schdule table responsiveness */
.schedule-table-responsive-div {
  overflow-x: none !important;

  @media (min-width: 1261px) and (max-width: 1322px) {
    overflow-x: auto;
  }

  @media (max-width: 1073px) {
    overflow-x: auto;
  }
}

.schedule-session-modal {
  @media (min-width: 1261px) {
    left: 180px;
  }
}

.schedule-modal-dialog {
  @media (min-width: 768px) and (max-width: 992px) {
    max-width: 550px;
  }
}

.schedule-user-grid-buttons .btn {
  @media (min-width: 768px) and (max-width: 860px) {
    padding: 0.275rem 0.2rem !important;
    font-size: 10px;
  }
}

.course-info-more .text-warning,
.course-info-more .text-success {
  @media (min-width: 768px) and (max-width: 960px) {
    text-wrap: nowrap;
  }
}

.calendar-schedule-buttons {
  @media (max-width: 992px) {
    .fc-toolbar-chunk {
      display: flex;
      flex-direction: row-reverse;
    }

    .fc-button-group {
      height: 30px;
      margin-top: 19px;
    }
  }
}

.courses-page-header-div {
  @media (max-width: 576px) {
    margin-bottom: 20px;
  }
}

/* STATUS */
.text-warning {
  color: #ff6d43 !important;
}

/* Dashboard V2 */
.overflow-scroll-X {
  overflow: auto;
}

.finance-overview-charts {
  @media (min-width: 1900px) {
    width: 100%;
  }
}

.dashboard-cards {
  @media (min-width: 1900px) {
    /* justify-content: space-evenly; */
  }
}

.info-card {
  min-width: 180px;
  border-radius: 20px;
  /*20px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.info-card-top {
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    height: 42px;
    width: 46px;
  }

  span {
    color: white;
    font-size: 22px;
    /*42px;*/
    font-weight: 700;
  }
}

.info-card-bottom {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.reg-card {
  background: linear-gradient(199.45deg,
      rgba(0, 109, 50, 0.8) -83.11%,
      rgba(0, 198, 211, 0.8) 107.81%);
}

.student-card {
  background: linear-gradient(44.35deg,
      rgba(9, 109, 0, 0.8) 1.1%,
      rgba(164, 255, 189, 0.8) 100%);
}

.student-inactive-card {
  background: linear-gradient(220.77deg,
      rgba(17, 53, 237, 0.66) 1.13%,
      rgba(94, 118, 246, 0.66) 115.04%);
}

.instructor-card {
  background: linear-gradient(224.5deg,
      rgba(11, 138, 255, 0.17) -12.48%,
      rgba(90, 175, 254, 0.97) 98.56%);
}

.staff-card {
  background: linear-gradient(225deg,
      rgba(162, 171, 248, 0.39) 0%,
      rgba(9, 67, 219, 0.89) 100%);
}

.course-card {
  background: linear-gradient(38.37deg,
      rgba(186, 132, 254, 0.9) 7.29%,
      rgba(213, 178, 255, 0.9) 95.28%);
}

.fleet-card {
  background: linear-gradient(45.41deg,
      rgba(244, 117, 117, 0.9) 0.09%,
      rgba(255, 219, 199, 0.9) 111.97%);
}

.branch-card {
  background: linear-gradient(45.41deg,
      rgba(250, 163, 32, 0.9) 0%,
      rgba(255, 196, 24, 0.684) 111.97%);
}

.info-outer {
  margin: 20px 5px;

  @media (max-width: 768px) {
    width: 100%;
  }
}

.overview-cards {
  padding: 10px 30px 20px 30px;
  background: #edeffe;
  border: 1px solid #4472ba45;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.overview-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;

  span {
    font-weight: 500;
    font-size: 30px;
    color: #2b58a0e8;
  }
}

.finance-card {
  border-radius: 15px;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.payments-card {
  border-radius: 15px;
  margin-bottom: 0 !important;
}

.payment-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;

  @media (max-width: 400px) {
    flex-wrap: wrap;
    gap: 20px;

    .no-of-days-dropdown {
      width: 100%;
      display: flex;
      justify-content: end;
    }
  }
}

.yet-table-header {
  @media (max-width: 768px) {
    flex-wrap: wrap;

    .no-of-days-dropdown-resp-div {
      width: 100%;
      display: flex;
      justify-content: end;
    }
  }
}

.payment-chart-div {
  padding: 20px 25px;
}

.amount-card-header {
  margin-bottom: 2px;
  padding: 10px 20px 0 !important;
  border-bottom: 3px solid #ff8a003d;
}

.payment-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;

  @media (max-width: 400px) {
    flex-wrap: wrap;

    .no-of-days-dropdown {
      width: 100%;
      display: flex;
      justify-content: end;
    }
  }
}

.schedule-resp-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;

  @media (max-width: 768px) {
    flex-wrap: wrap;

    .no-of-days-dropdown {
      width: 100%;
      display: flex;
      justify-content: end;
    }
  }
}

.new-student-chart-div-resp {
  width: 650px;
  height: 350px;

  @media (max-width: 1721px) {
    width: 100%;
  }
}

.growth-widget-chart-resp {
  width: 250px;
  height: 250px;

  img {
    width: 250px;
    height: 250px;
  }

  @media (max-width: 768px) {
    width: 100%;

    .growth-widget-resp {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 380px) {
    img {
      height: 150px;
      width: 150px;
    }
  }
}

.payment-card-header-left {
  display: flex;
  gap: 4px;
  align-items: center;
  gap: 20px;

  h5 {
    color: #ff8a00a6;
    margin: 0 !important;
    font-size: 16px;
    font-weight: 700;
  }

  .sched-tab,
  .yet-tab {
    font-size: 14px !important;
  }
}

.sales-div {
  color: rgba(255, 138, 0, 0.65);
}

.orange-line {
  height: 31px;
  width: 4px;
  background-color: #ff8a00a6;
}

.finance-overview {
  gap: 20px;

  @media (min-width: 1900px) {
    flex-wrap: nowrap !important;
  }
}

.tab,
.sched-tab,
.yet-tab {
  cursor: pointer;
  margin-right: 20px;
  font-weight: 700 !important;
  position: relative;
  color: #212121 !important;font-size: 18px;
}

/* Style for the border below the tab text */
.tab.active::after,
.sched-tab.active::after,
.yet-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  /* Adjust the distance of the border from the text */
  width: 100%;
  height: 3px;
  /* Border height */
  background-color: rgba(255, 138, 0, 0.65);
  /* Initial color of the border */
  transition: background-color 0.3s ease;
  /* Smooth transition effect */
}

.tab.active,
.sched-tab.active,
.yet-tab.active {
  color:#F63333 !important ;font-size: 18px;
}

.total-widget {
  text-align: center;
  color: #2a58a0;

  span {
    color: #7fb6ed;
  }

  img {
    height: 200px;
    width: 200px;
    margin-top: 20px;

    @media (min-width: 1261px) and (max-width: 1372px) {
      height: 150px;
      width: 150px;
    }

    @media (max-width: 1121px) {
      height: 150px;
      width: 150px;
    }
  }
}

.total-sales-cards {
  /* padding: 40px; */
  padding-top: 0px;
  justify-content: space-evenly;
  /* @media(min-width:1920px)
	{
		justify-content: space-evenly;
	} */
}

.sched-resp-div {
  @media (max-width: 769px) {
    gap: 25px;
  }
}

.schedule-div-chart {
  @media (min-width: 1900px) {
    justify-content: space-evenly;
  }

  @media (max-width: 1570px) {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.attendence-legend {
  display: flex;
  flex-direction: column;

  @media (max-width: 1570px) {
    /* justify-content: center; */
    width: 100%;
    align-items: center;
    text-align: left;
  }
}

.total-widget {
  padding-left: 10px;
  padding-right: 10px;

  div {
    margin-top: 20px;
    font-size: 20px;
    display: flex;
    flex-direction: column;

    .highlight {
      font-size: 24px;
      color: #2b58a0;
      font-weight: 600;
    }
  }
}

.widget-container {
  position: relative;
}

.widget-container img {
  display: block;
}

.view-all-cell {
  text-align: center !important;
}

.widget-container span {
  position: absolute;
  top: 50%;
  /* Adjust vertical position as needed */
  left: 50%;
  /* Adjust horizontal position as needed */
  transform: translate(-50%, -50%);
  /* Center the span relative to its parent */
  z-index: 1;
  /* Ensure the span is above the image */
  font-size: 22px;
  font-weight: 700;

  @media (min-width: 1261px) and (max-width: 1372px) {
    font-size: 20px;
  }

  @media (max-width: 768px) {
    font-size: 15px;
  }
}

.resp-model-div {
  @media (min-width: 1000px) {
    width: 800px;
  }

  @media (min-width: 769px) and (max-width: 999px) {
    width: 700px;
  }

  @media (max-width: 768px) {
    width: 500px;
    margin-left: 15px;
  }

  @media (max-width: 500px) {
    width: 300px;
    margin-left: 20px;
  }
}

.notification-model-div {
  @media (min-width: 1000px) {
    width: 700px;
  }

  @media (min-width: 769px) and (max-width: 999px) {
    width: 600px;
  }

  @media (max-width: 768px) {
    width: 400px;
  }

  @media (max-width: 500px) {
    width: 250px;
  }
}

#dialog-content-notify.modal-body {
  padding: 0;
}

.student_growth {
  width: 400px;

  @media (max-width: 768px) {
    width: 100%;
  }

  h5 {
    color: #ff8a00a6;
    margin: 20px !important;
    font-size: 18px;
    font-weight: 700;
  }
}

.newstudents-peak {
  margin-top: 20px;
  font-size: 20px;
  color: #2b58a0;
  text-align: center;
}

.schedule-card {
  padding: 0 !important;
  border-radius: 15px !important;
  margin-bottom: 0 !important;
}

.schedule-table-div th,
.schedule-table-div td {
  padding: 10px 25px;
  text-align: left;
}

.popup-table th,
.popup-table td {
  padding: 10px 25px;
  text-align: left;
}

.schedule-table-div th,
.popup-table th {
  background-color: rgba(254, 244, 221, 1);
  color: rgba(255, 169, 19, 1);
}

.popup-table td {
  border-bottom: 1px solid rgba(196, 231, 255, 1);
  color: rgba(43, 88, 160, 1);
}

.schedule-table-div td {
  border-bottom: 1px solid rgba(196, 231, 255, 1);
  color: rgba(43, 88, 160, 1);
  font-size: 12px;
}

.schedule-table-div {
  width: 100%;
  margin-top: 20px;
}

.sched-popup {
  margin-top: 0 !important;
}

.popup-table {
  width: 100%;
}

.schedule-header-left {
  gap: 25px !important;
}

.totalschedule-notify {
  background-color: rgba(255, 232, 204, 1);
  color: rgba(255, 138, 0, 1);
  border-radius: 10px;
  padding: 2px 10px;
}

.completed-notify {
  background-color: rgba(179, 231, 198, 0.55);
  color: rgba(67, 146, 64, 0.7);
  border-radius: 10px;
  padding: 2px 10px;
}

.upcoming-notify {
  background-color: rgba(72, 114, 229, 0.15);
  color: rgba(100, 148, 224, 0.84);
  border-radius: 10px;
  padding: 2px 10px;
}

.incomplete-notify {
  background-color: rgba(245, 135, 135, 0.31);
  color: rgba(255, 89, 89, 0.7);
  border-radius: 10px;
  padding: 2px 10px;
}

.popup-content {
  max-height: 400px;
  /* Set maximum height for the popup content */
  overflow-y: auto;
  /* Enable vertical scrolling if content exceeds maximum height */
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ui-widget-header {
  background-color: rgba(255, 194, 73, 1)!important;
}

.ui-dialog-buttonpane {
  display: none !important;
}

.notify-popup {
  margin-top: 2px;
  margin-left: 3px;
}

/* Misc */
.break-word {
  word-break: break-word;
}

/* USER PROFILE STATUS */
.user-profile-info .user-status-label {
  margin-top: 10px;
}

.user-status-label {
  border-radius: 10px;
  background-color: #7b7b7b;
  color: #fff !important;
  display: inline-block;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

.user-status-registered {
  background-color: #4eaae9;
}

.user-status-active {
  background-color: #49cb41;
}

.user-status-inactive {
  background-color: #d85c5c;
}

/* DASHBOARD DATE RANGES */
.dashboard-daterange {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #b7b7b7;
}

.dashboard-daterange-tab {
  text-align: center;
  margin-top: 0px;
  padding: 20px 25px;
  font-size: 14px;
  color: #b7b7b7;
}

.dashboard-daterange-growth {
  margin-top: 10px;
  margin-left: 20px;
  font-size: 14px;
  color: #b7b7b7;
}

.scheduleclass-filter {
  height: auto;
  border: 2px solid #ff8a00;
  padding: 0 !important;

  @media (max-width: 1260px) {
    width: 90px;
  }

  @media (min-width: 1261px) and(max-width:1299px) {
    width: 88px;
  }

  @media (min-width: 1300px) {
    width: 96px;
  }
}

.scheduleclass-filter1 {
  height: auto;
  border: 2px solid #ff8a00;
  padding: 0 !important;
  width: 96px;
}

.wrap-text {
  text-wrap: nowrap;
}

.notification-resp-popup {
  padding-bottom: 10px;
}

.activate-menu-bar {
  min-width: 0;
  margin-left: 85px;
  cursor: pointer;
}

.no-notifications {
  text-align: center;
}

.stage-wrap {
  padding-right: 30px !important;
}

#fb-editor {
  margin-bottom: 20px;
}

#publish,
#preview {
  margin-left: 20px;
}

.btn-primary:disabled {
  color: #fff;
  background-color: #696a6a;
  border-color: #696a6a;
}

.page-content {
  margin: 0 0 50px !important;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.loader svg {
  width: 150px;
}

/* site settings button */
.icon-toggle-btn {
  width: 50px;
  height: 23px;
  margin: 10px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  background:  rgba(223, 234, 242, 1);
  
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAyklEQVQ4T42TaxHCQAyENw5wAhLACVUAUkABOCkSwEkdhNmbpHNckzv689L98toIAKjqGcAFwElEFr5ln6ruAMwA7iLyFBM/TPDuQSrxwf6fCKBoX2UMIYGYkg8BLOnVg2RiAEexGaQQq4w9e9klcxGLLAUwgDAcihlYAR1IvZA1sz/+AAaQjXhTQQVoe2Yo3E7UQiT2ijeQdojRtClOfVKvMVyVpU594kZK9zzySWTlcNqZY9tjCsUds00+A57z1e35xzlzJjee8xf0HYp+cOZQUQAAAABJRU5ErkJggg==") no-repeat 27px center #e74c3c;
  cursor: pointer;
  -webkit-transition: background-color 0.4s ease-in-out;
  -moz-transition: background-color 0.4s ease-in-out;
  -o-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
  cursor: pointer;

  &.active {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAmUlEQVQ4T6WT0RWDMAhFeZs4ipu0mawZpaO4yevBc6hUIWLNd+4NeQDk5sE/PMkZwFvZywKSTxF5iUgH0C4JHGyF97IggFVSqyCFga0CvQSg70Mdwd8QSSr4sGBMcgavAgdvwQCtApvA2uKr1x7Pu++06ItrF5LXPB/CP4M0kKTwYRIDyRAOR9lJTuF0F0hOAJbKopVHOZN9ACS0UgowIx8ZAAAAAElFTkSuQmCC") no-repeat 5px center #2ecc71;
    /* background:  rgba(38, 183, 121, 1); */
    .round-btn {
      left: 30px;
    }
  }

  .round-btn {
    width: 19px;
    height: 19px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 1px;
    top: 50%;
    margin-top: -10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .cb-value {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
    cursor: pointer;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

/* WEBPORTAL STYLES */
.webportal-sidebar {
  aside {
    z-index: 2000;
    /* show above footer */
    width: 300px;
    height: 100%;
    position: fixed;
    float: left;
    background: #fff;
    /* border-right: 1px solid #D4D9DD; */
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
    /* box-shadow: 0 2px 4px 0 rgba(0,0,0,.2); */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .slimScrollBar {
    width: 8px !important;
  }

  .slimscroll-menu {
    padding: 30px;
    /* padding-top: 45px; */
    padding-top: 10px;
  }

  li {
    list-style: none;
  }

  i {
    font-size: 22px;
    margin-right: 10px;
  }

  span.text {
    margin-top: 8px;
    position: absolute;
    font-size: 15px;
  }

  span.bubble {
    float: right;
    margin-top: 7px;
    width: 25px;
    height: 25px;
    padding-top: 8px;
    text-align: center;
  }

  a.close-aside {
    position: absolute;
    top: 11px;
    left: 162px;
    color: #a9abb3;
    display: none;
  }

  aside label.menu-icon {
    width: 40px;
  }

  /* LEFT SIDE MENU ITEMS */

  li a {
    display: block;
    font-size: 14px;
    color: #212121;
    /* padding: 7px !important; */
    display: flex;
    align-items: center;
  }

  li a:hover,
  aside li a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #4aa3fb;
    font-weight: 700;
    border-radius: 15px;
  }

  /* 
	.nav-item {
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0.5rem;
	}

	.nav-item i {
		padding-left: 0px;
	} */

  .handpointer {
    cursor: pointer;
  }
}

.webportal-sidebar aside li a:active,
aside li a.active {
  color: #fff;
  text-decoration: none;
  background-color: #4aa3fb;
  font-weight: 700;
  border-radius: 15px;
  display: flex;
  align-items: center;
}

.course-main {
  display: "flex";
  gap: 20px;
  @media screen and (max-width: 1370px) {
    gap: 10px;
  }
}

.dt-buttons {
  height: 0;
  padding-top: 0px;
}

.upcoming-schedule-card {
  padding: 10px 30px 20px 30px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Style for the border below the tab text */
.tab.active::after,
.sched-tab.active::after,
.yet-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  /* Adjust the distance of the border from the text */
  width: 100%;
  height: 2px;
  /* Border height */
  background-color:  rgba(246, 51, 51, 0.85);
  /* Initial color of the border */
  transition: background-color 0.3s ease;
  /* Smooth transition effect */
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff;
}

.btn-directions {
  background-color: #4aa3fb;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  a{
    color: white;
  }
}
.btn-directions:hover {
  background-color: #4aa3fb;
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
}

.label-theory {
  background: #ff6b0033;
  color: #ff6b00;
  padding: 5px 10px !important;
  border-radius: 5px;
  text-align: center;
}

.label-onroad {
  background: #e17cfd1a;
  color: #e17cfd;
  padding: 5px 10px;
  text-align: center;
  border-radius: 5px;
  @media screen and (max-width: 1290px) {
 text-wrap: nowrap;
  }
}

.pagination .current {
  background-color: #fbc02d;
  border-color: #fbc02d;
  color: #fff;
}

.pagination .paginate_button {
  border-radius: 50%;
  padding: 5px 10px;
}

/* Apply border-radius to the top row */
tbody>tr>td:first-child {
  border-top-left-radius: 20px;
}

tbody>tr>td:last-child {
  border-top-right-radius: 20px;
}

/* Apply border-radius to the bottom row */
tbody>tr>td:first-child {
  border-bottom-left-radius: 20px;
}

tbody>tr>td:last-child {
  border-bottom-right-radius: 20px;
}

table.dataTable {
  border-spacing: 0 20px;
}

table.dataTable tbody td {
  padding: 14px 10px;
}

.student-webportal-main {
 
  
  padding-top: 30px;
  width: calc(100% - 250px);

  @media screen and (max-width: 1260px) {
    width: 100%;
  }

  .bold-800 {
    font-weight: 800;
  }

  .bold-500 {
    font-weight: 500;
  }

  .bold-600 {
    font-weight: 600;
  }

  .course-name {
    font-weight: 700;
    color: #2358a1;
    font-size: 32px;
  }

  .course-chart-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 900px) {
     gap: 3px;
    }
    @media screen and (max-width: 770px) {
      flex-direction: column;
     }
    .total-course-hours {
      display: flex;
      align-items: center;
      justify-content: center;

      .total-course-img {
        height: 250px;
        width: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background-color: #FFFFFF;
        border-radius: 50%;

        @media screen and (max-width: 1600px) {
          width: 200px;
          height: 200px;
        }

        @media screen and (max-width: 1440px) {
          width: 180px;
          height: 180px;
        }

        @media screen and (max-width: 1300px) {
          width: 170px;
          height: 170px;
        }

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

      .total-courses-count {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;

        .count {
          font-weight: 700;
          font-size: 35px;
          color: #2358a1;

          @media screen and (max-width: 1600px) {
            font-size: 28px;
          }
        }

        .name {
          font-weight: 500;
          font-size: 20px;
          color: #2358a1;

          @media screen and (max-width: 1600px) {
            font-size: 16px;
          }

          @media screen and (max-width: 1300px) {
            font-size: 14px;
          }
        }
      }
    }

    .course-cards {
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;

      .inner-card {
        background: linear-gradient(107.38deg,
            rgba(76, 73, 237, 0.65) 2.61%,
            rgba(10, 6, 244, 0.65) 101.2%);
        border-radius: 20px;

        .top-section {
          display: flex;
          padding: 20px;
          gap: 20px;

          @media screen and (max-width: 1600px) {
            padding: 15px;
            gap: 10px;
          }

          @media screen and (max-width: 1600px) {
            padding: 10px;
            gap: 8px;
          }

          .left-details {
            display: flex;
            flex-direction: column;
            gap: 20px;

            @media screen and (max-width: 1600px) {
              gap: 10px;
            }

            @media screen and (max-width: 1600px) {
              gap: 8px;
            }

            .left-top {
              display: flex;

              img {
                width: 60px;
                height: 60px;

                @media screen and (max-width: 1600px) {
                  width: 40px;
                  height: 40px;
                }

                @media screen and (max-width: 1600px) {
                  width: 30px;
                  height: 30px;
                }
              }

              .class-type {
                display: flex;
                flex-direction: column;
                font-size: 18px;

                >span:nth-child(1) {
                  @media screen and (max-width: 1600px) {
                    font-size: 17px;
                  }

                  @media screen and (max-width: 1300px) {
                    font-size: 16px;
                  }
                }
              }
            }

            .left-bottom {
              display: flex;
              flex-direction: column;

              .hour-text {
                font-size: 18px;

                @media screen and (max-width: 1300px) {
                  font-size: 16px;
                }
              }

              .hours-desc {
                font-size: 24px;

                @media screen and (max-width: 1600px) {
                  font-size: 20px;
                }

                @media screen and (max-width: 1300px) {
                  font-size: 16px;
                }
              }
            }
          }

          .right-details {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
              height: 150px;
              width: 150px;

              @media screen and (max-width: 1600px) {
                height: 130px;
                width: 130px;
              }

              @media screen and (max-width: 1440px) {
                width: 110px;
                height: 110px;
              }

              @media screen and (max-width: 1300px) {
                width: 90px;
                height: 90px;
              }
            }

            .course-percentage {
              position: absolute;
              z-index: 2;
              font-size: 22px;
              font-weight: 700;

              @media screen and (max-width: 1600px) {
                font-size: 18px;
              }

              @media screen and (max-width: 1370px) {
                font-size: 16px;
                right: 56px;
    top: 45px;
              }
              @media screen and (max-width: 450px) {
                font-size: 16px;
                right: 56px;
    top: 60px;
              }
              @media screen and (max-width: 400px) {
                font-size: 16px;
                right: 56px;
                top: 45px;
              }
            }
          }
        }

        .bottom-section {
          padding: 8px;
          background: linear-gradient(180deg,
              rgba(255, 255, 255, 0.15) 0%,
              rgba(255, 255, 255, 0) 100%);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 14px;
          font-weight: 600;

          .course-hours {
            font-size: 20px;

            @media screen and (max-width: 1600px) {
              font-size: 16px;
            }

            @media screen and (max-width: 1300px) {
              font-size: 15px;
            }
          }
        }
      }
    }
  }

  .courses-container {
    background-color: rgba(254, 194, 72, 0.11);
    padding: 30px 15px;
    border-radius: 32px;

    .courses-heading {
      font-weight: 600;
      font-size: 18px;
    }

    .single-course-div {
      display: flex;
      gap: 15px;

      @media screen and (max-width: 1600px) {
        gap: 10px;
      }
      @media screen and (max-width: 1370px) {
        gap: 2px;
      }

      .main-course {
        font-size: 12px;

        @media screen and (max-width: 1600px) {
          font-size: 10px;
        }
      }

      .left-text {
        display: flex;
        flex-direction: column;
      }

      .course-img {
        width: 80px;
        height: 80px;

        @media screen and (max-width: 1600px) {
          width: 60px;
          height: 60px;
        }
      }

      .course-content {
        display: flex;
        flex-direction: column;
      }

      .course-type-div {
        gap: 20px;
         div {
          display: flex;
          flex-direction: column;
        }
        @media screen and (max-width: 1450px) {
         gap: 5px;
        }
      }

      .gap-20 {
        gap: 20px;
      }
    }

    .btn-div {
      display: flex;
      align-items: center;
      justify-content: flex-end;

      @media screen and (max-width: 1600px) {
        width: 50px;
      }
    }

    .course-price-div {
      font-weight: 600;
      color: #e17cfd;
      border: 1px solid #e17cfd;
      padding: 4px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      font-size: 16px;

      @media screen and (max-width: 1600px) {
        font-size: 12px;
        padding: 4px;
        text-wrap: nowrap;
      }
    }

    .buy-button {
      background-color: #4aa3fb;
      color: white;
      border-radius: 10px;
      font-size: 12px;
      @media screen and (max-width: 1600px) {
        font-size: 12px;
        padding: 4px;
        text-wrap: nowrap;
      }
    }
  }
}

.student-webportal-heading {
  background-color: #f1ecff;
  padding: 40px;
  border-radius: 32px;

  @media screen and (max-width: 1600px) {
    padding: 25px;
  }

  .page-header {
    padding-bottom: 10px;
  }

  .page-title {
    font-size: 30px;
  }

  .course-days {
    font-weight: 800;
  }
}

.student-webportal-course-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  @media screen and (max-width: 350px) {
    flex-wrap: wrap;
  } 
  
  .heading {
    color: #212121;
    font-size: 28px;
    font-weight: 500;
    @media screen and (max-width: 450px) {
      font-size: 22px;
    } 
    @media screen and (max-width: 400px) {
      font-size: 18px;
    } 
  }

  .course-tag {
    background-color: #4aa3fb;
    border-radius: 5px;
    color: white;
    padding: 4px 8px;

    .individual-tag {
      font-size: 18px;
      font-weight: 800;
    }

    .total-tag {
      font-size: 13px;
      font-weight: 600;
    }
  }
}

.welcome-title {
  color: #f63333;
}

.webportal-schedule-div {
  background-color: #f1ecff;
  padding: 40px;
  border-radius: 32px;
}

.schedule-page {
  padding-top: 30px;
  width: calc(100% - 250px);

  @media screen and (max-width: 1260px) {
    width: 100%;
  }
}

.settings-card-div {
  background: white;
  border-radius: 20px;
}

.settings-page-card {
  border: none;
  padding: 20px 25px;
  border-radius: 5px;
  form{
    width: auto;
  }
  /* margin-bottom: 30px; */
  /* -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2); */

  @media screen and (max-width: 576px) {
    padding: 8px 14px !important;
  }

  @media screen and (max-width: 380px) {
    padding: 6px 12px !important;
  }
}

.webportal-profile-settings {
  
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap:20px;
  align-items: flex-start;

 @media screen and (max-width: 520px) {
 /* flex-direction: column; */
 flex-wrap: wrap
  }
}

.password-inputs{
  @media screen and (max-width: 450px) {
    width: auto;
    }
}
.profile-save-btn{
  @media screen and (max-width: 620px) {
  text-align: center !important;
  }
 }

.settings-row {
  display: flex;
  gap: 20px;
  @media screen and (max-width: 800px) {
  flex-wrap: wrap
  }
}
.settings-inputs{
  @media screen and (max-width: 620px) {
    /* width: auto; */
    }
    
}
.province-input{
  @media screen and (max-width: 620px) {
  /* width: 260px; */
  }
}
.notification-msg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
  font-size: 16px;
  @media screen and (max-width: 900px) {
    font-size: 14px;
  }
}

.notifictaion-date {
  display: flex;
  flex-direction: column;
  align-items: end;
  color: rgba(33, 33, 33, 0.37);
}

.doc-section {
  display: flex;
  gap: 30px;
  position: absolute;
  top: -70px;
  right: 0;
  @media screen and (max-width: 560px) {
    top: -60px;
   }
   @media screen and (max-width: 450px) {
    top: -15px;
    }
}

.document-card {
  padding: 10px;
  background: rgba(126, 95, 211, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  gap: 15px;
  @media screen and (max-width: 560px) {
   padding: 6px;
  } 

}

.logo-div {
  width: 55px;
  height: 55px;

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

.documents-list {
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(254, 194, 72, 0.09);
  margin-bottom: 30px;
  border-radius: 20px;
  @media screen and (max-width: 450px) {
    flex-wrap: wrap;
  
   } 
}
.documents-list-section{
  @media screen and (max-width: 450px) {
    margin-top: 40px;
   } 
}

.doc-title {
  font-size: 18px;
  line-height: 33px;
  font-weight: 600;
  width: 500px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  @media screen and (max-width: 800px) {
  width: 200px;
  }
  @media screen and (max-width: 1600px) {
    width: 300px;
  }
  @media screen and (max-width: 1450px) {
  width: 250px;
  }

}

.action-container {
  display: flex;
  gap:20px;
}

.update-div {
  color: rgba(103, 116, 142, 1);
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  width: 235px;
}

.icon-div{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width:40px;
  font-size: 20px;
  height: 40px;
  cursor: pointer;
  @media screen and (max-width: 560px) {
    width: 25px;
    font-size: 16px;
    height: 25px;
   } 

}

.card-text-div{
  display: flex;
  flex-direction: column;
  >span:nth-child(1){
    font-weight: 600;
    @media screen and (max-width: 900px) {
      font-size: 14px;
    }
  }
}

#del {
  background: rgba(246, 51, 51, 0.16);
  color: rgba(246, 51, 51, 0.75);

}

#downloadDoc{
  background: rgba(225, 124, 253, 0.23);
  color: rgb(176 16 221);
 
}

.invoice-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  padding: 11px 15px;
  margin: 15px;
  border-radius: 20px;
  background-color: #F1ECFF;
  a{
    color: rgba(35, 35, 35, 1);
  }
  @media screen and (max-width: 900px) {
   flex-wrap: wrap;
  }
  @media screen and (max-width: 550px) {
    width: auto;
   }
}
.invoice-table tbody tr:nth-of-type(odd) {
  background-color: #F1ECFF;
}
.invoice-btn{
  color: rgba(74, 163, 251, 1);
  border: 1px solid rgba(74, 163, 251, 1);
  background-color: white;
  display: flex;
    gap: 5px;
    padding: 4px 12px;
}
.invoice-section{
  display: flex;
  flex-direction: column;
}
.invoice-table{
  display: flex;
  flex-direction: column;
}

/* notes popup */
.notes-container {
  display: flex;
 
}
.notes-area{
  width: 100%;
  resize: none;
  height: 70px;
  padding: 20px 15px 35px 15px;
  border-radius:8px;
  border: none;
  overflow: hidden;
}
.notes-list {
  flex: 2;
  
  padding: 30px 0 30px 30px;
 
}
.green-btn{
  float: right;
  color: white;
  background: rgba(21, 107, 70, 0.61);
outline: none;
user-select: none;
border: none;
border-radius: 8px;
padding: 4px 8px;

}
.send-blue-btn{
  float: right;
  outline: none;
  color: white;
user-select: none;
border: none;
border-radius: 8px;
background-color: rgba(74, 163, 251,1);
padding: 4px 18px;
}
.edit-blue-btn{
  float: right;
  outline: none;
  color: white;
user-select: none;
border: none;
border-radius: 8px;
background-color: rgba(74, 163, 251,1);
padding: 4px 18px;
}
.notes-details {
  flex: 2;
  background: rgba(241, 236, 255, 1);
  padding: 30px 30px 30px 30px;
}
.note-item {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
    margin-bottom: 10px;
    background: rgba(241, 236, 255, 1);
    cursor: pointer;
    padding: 10px;
    border-radius: 14px;
}
.selected-note {
  background-color:  rgba(241, 236, 255, 1); /* Change this to your desired background color */
 
}
.note-item:hover {
  background-color: rgba(241, 236, 255, 1);
}
.notes-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  .heading{
    color:rgba(35, 88, 161, 1);
    font-size: 22px;
    font-weight: 500;

  }
  .icons-div{
    font-size: 24px;
    display: flex;
    gap: 20px;
  }
  .nav-tabs li a.active, .nav-tabs li a.active {
    color: #2358A1 !important;
    font-weight: 700;
    background-color: #fff;
    border-bottom: #2358A1 2px solid !important;
}
.nav-tabs li a{
  padding-bottom: 5px !important;
}
}
.notes-popup-div{
  padding: 20px;
}
.notes-dialog-box{
  max-width: 800px;
}
.chats-dialog-box{
  max-width: 1000px;
}
.chats-model-div{
width: 980px;
}
.notes-top-div{
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding: 0px 10px 10px 0;
 
  span{
    text-wrap: nowrap;
    font-weight: 600;
    color: rgba(35, 88, 161, 1);
  }
  .btn{
    border-radius: 8px;
    font-size: 12px;
  }
}
.gap-2{
    gap:10px;
}
.right-container{
  display: flex;
  flex-direction: column;
  gap:20px;
}
/* chat popup */
.chat-container {
  display: flex;
 padding: 30px ;
 gap: 20px;
}

.sidebar {
  width: 300px;
  background-color: #fff;
  border: 0.58px solid rgba(225, 226, 255, 1);
  padding:20px;
  border-radius: 15px;
}

.sidebar h2 {
  margin: 0 0 20px;
  font-size: 20px;
}

.chat-list .chat-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}

.chat-list .chat-item.active {
  border: 0.58px solid rgba(223, 224, 235, 1);
  box-shadow: 0px 0px 4.67px 0px rgba(183, 185, 255, 1);

}

.chat-list .chat-item img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-list .chat-info {
  display: flex;
  gap:20px;
}

.chat-list .chat-info h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.chat-list .chat-info p {
  margin: 5px 0 0;
  color: rgba(161, 161, 161, 1);
  font-size: 10px;
  font-weight: 400;
}

.chat-list .chat-info span {
  color: (33, 33, 33, 0.5);
  font-size: 10px;
  font-weight: 400;
}

.chat-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: 0.58px solid rgba(225, 226, 255, 1);
  border-radius: 15px;
}

.chat-header {
  display: flex;
  align-items: center;
  padding:  20px;
  border-bottom: 1px solid #ddd;
}

.chat-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header-info {
  flex-grow: 1;
}

.chat-header-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.chat-header-info p {
  margin: 5px 0 0;
  color: rgba(33, 33, 33, 1);
  font-size: 12px;
  font-weight: 400;
}


.chat-header-options button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.chat-body {
  flex-grow: 1;
  display: flex;
  padding: 20px;
  background-color: #f9f9f9;
  flex-direction: column;
  overflow-y: auto;
}

.message {
  max-width: 60%;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 20px;
  position: relative;
  font-size: 14px;
}
.icon-chat-avatar{
  color: white;
  font-weight: 500;
}
.message.received {
  align-self: flex-start;
}
.single-chat-recieved{
  display: flex;
  gap:10px;
.chat-div{
  display: flex;
  flex-direction: column;
  
  p{
    border: 0.58px solid rgba(165, 166, 246, 1);
    margin: 0;
    padding: 5px;
    border-radius: 6px;
    color: rgba(126, 95, 211, 1);
    font-size: 12px;
    font-weight: 400;

  }
 
}
}
.single-chat-sent{
  display: flex;
  flex-direction: row-reverse;
  gap:10px;
  .chat-div{
    display: flex;
    flex-direction: column;
  
    p{
      background-color: rgba(126, 95, 211, 0.63);
      margin: 0;
      padding: 5px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 400;
    }
   
  }

}
.message.sent {

  align-self: flex-end;
  color: white;
}

.message span {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.chat-footer {
  display: flex;
  padding: 20px;
  border-top: 1px solid #ddd;

}

.chat-footer textarea {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  resize: none;
}

.send-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
}
#dialog-content-notes.modal-body {
  padding: 0;
  border-radius: 20px;
}
.webportal-courses-page{
  margin: auto;
  padding: 20px;
  background: rgba(255, 248, 235, 1);
  border-radius: 8px;
  .header {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 20px; */
    align-items: center;
    gap:100px;
}
.filter-section-button{
  display: flex;
  align-items: center;
  text-wrap: nowrap;
  font-weight: 500;
  gap: 5px;
}
.header h1 {
  font-size: 26px;
  color:  rgba(35, 88, 161, 1);
  font-weight: 600;
}
.filter-button {
    background-color: #ccc;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.courses .course {
  position: relative; /* Ensure the pseudo-element is positioned correctly */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  display: flex;
  padding: 20px;
  gap: 20px;
  justify-content: space-between;
  @media screen and (max-width: 900px) {
   flex-wrap: wrap;
  }
}
.search-box{
  height: calc(2.25rem + 2px);
}
.courses .course::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 1px;
  height: 70%;
  width: 5px; /* Adjust the width of the line as needed */
  background-color: #2358A1; /* Adjust the color of the line as needed */
  border-radius: 20px; /* Match the border radius of the .course element */
}
.course-data{
  display: flex;
  gap: 20px;
  @media screen and (max-width: 420px) {
flex-wrap: wrap;
  }
  .course-heading{
    width: 500px; /* Adjust this value as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    @media screen and (max-width: 1370px) {
      width: 410px;
    }
    @media screen and (max-width: 1300px) {
      width: 350px;
    }
    @media screen and (max-width: 900px) {
      width: 600px;
    }
    @media screen and (max-width: 770px) {
      width: 500px;
    }
    @media screen and (max-width: 550px) {
      width: 300px;
    }
    @media screen and (max-width: 420px) {
      width: 200px;
    }
  }
  .product-heading{
    width: 800px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    @media screen and (max-width: 1370px) {
      width: 410px;
    }
    @media screen and (max-width: 1300px) {
      width: 350px;
    }
    @media screen and (max-width: 900px) {
      width: 600px;
    }
    @media screen and (max-width: 770px) {
      width: 500px;
    }
    @media screen and (max-width: 550px) {
      width: 300px;
    }
    @media screen and (max-width: 420px) {
      width: 200px;
    }
  }
}
.course-duration {
    font-weight: 700;
    color: rgba(33, 33, 33, 0.74);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 22px;

img{
  width: 100px;
  height: 70px;
}
}

.course-details
{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  .course-heading {
    font-size: 22px;
    font-weight: 700;
    color:rgba(35, 88, 161, 1);
    margin: 0 ;
}
.product-heading {
  font-size: 22px;
  font-weight: 700;
  color:rgba(35, 88, 161, 1);
  margin: 0 ;
}
}


/* .course-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
} */
/* 
.course-details ul li {
    margin:0 0 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap:10px;
} */
.course-session{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.course-session .session {
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
    gap: 10px;
    img{
      width:36px;
      height: 40px;
    }
}
.sess-details{
  display: flex;
  flex-direction: column;
}
.session-time {
    font-weight: 700;
    font-size: 22px;
    color: rgba(103, 116, 142, 1);
   
}

.session-type {
  color: rgba(255, 107, 0, 1);
  font-size: 16px;
  font-weight: 400;
 
}

.course-price {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
    .price-div{
      display: flex;
      gap: 5px;
      font-size: 22px;
      font-weight: 500;
      color: rgba(33, 33, 33, 0.8);
    }
}

.course-price span {
    display: block;
    color: #28a745;
    font-weight: 700;
    margin-bottom: 10px;
}

.buy-now {
    background-color: rgba(74, 163, 251, 1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
}
.registered-btn {
  background: #e17cfd !important;
  color: #f8f7f8 !important;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
   outline: none;
  /* cursor:none; */
}


.pagination {
    text-align: center;
    /* margin-top: 20px; */
}

.pagination .page {
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination .page.active {
    background-color: #007bff;
    color: white;
}
}

.webportal-single-course{
  .heading-course {
    font-size: 25px;
  }
  .right-details {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      height: 150px;
      width: 150px;

      @media screen and (max-width: 1600px) {
        height: 130px;
        width: 130px;
      }

      @media screen and (max-width: 1440px) {
        width: 110px;
        height: 110px;
      }

      @media screen and (max-width: 1300px) {
        width: 90px;
        height: 90px;
      }
    }

    .course-percentage {
      position: absolute;
      z-index: 2;
      color: #212121;
      font-size: 22px;
      font-weight: 700;

      @media screen and (max-width: 1600px) {
        font-size: 18px;
      }

      @media screen and (max-width: 1300px) {
        font-size: 16px;
      }
    }}

  .container-course {
    
    margin: auto;
    padding: 20px;
    background-color: rgba(241, 236, 255, 1);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 26px;
    color:  rgba(35, 88, 161, 1);
    margin-bottom: 20px;
    font-weight: 600;
}

.course-card-web{
    display: flex;
    /* justify-content: space-between; */
    gap: 100px;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    .course-progress-card{
      display: flex;
    }
}
.courses-list{

  border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 20px 25px !important;
    border-radius: 20px;
}
.course-desc{
  display: flex;
  align-items: center;
  gap:10px;
  >div:nth-child(1){
    display:inline-flex;
    align-items: flex-start;
  }
}
.course-progress {
    
    padding-right: 20px;
    
}


h2 {
    font-size: 24px;
    color: rgba(35, 88, 161, 1);
    font-weight: 700;
    margin-bottom: 20px;
}

.session-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: rgba(103, 116, 142, 1);
}

.session {
    display: flex;
}

.session-time {
    display: block;
    font-size: 16px;
    color: rgba(103, 116, 142, 1);
    font-weight: bold;
    font-size: 20px;
}

.session-type {
    display: block;
    font-size: 14px;
    color: #666;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 20px;
    margin-bottom: 10px;
    height:25px;
    position: relative;
}

.progress-bar .progress {
   
    height: 100%;
    background-color: #ffcc00;
    border-radius: 20px;
    position: absolute;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(103, 116, 142, 1);
    font-weight: 600;
    margin-bottom: 20px;
    span{
      font-size: 16px;
      font-weight: 600;
      color:   rgba(77, 77, 77, 1);
    }
}

.course-meta {
  display: flex;
  justify-content: space-between;
    font-size: 18px;
    color: #666;
    font-weight: 700;
    color: rgba(103, 116, 142, 1);
    span{
      color:   rgba(77, 77, 77, 1);
    }
}

.course-details {
    width: 45%;
}

.course-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.course-details ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.course-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.course-price {
    font-size: 25px;
    font-weight: 600;
    color: rgba(225, 124, 253, 1);
}
.course-line-1{
display: flex;
align-items: center;
}
.course-line-2{
display: flex;
flex-direction: column;
font-weight: 500;
  font-size: 14px;
color: rgba(103, 116, 142, 1);
span{
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
}
}
}

/* checkout popup */
.checkout-div{
  .prev-button{
    color:  rgba(74, 163, 251, 1);
      float:right;
      font-size: 16px;
      font-weight: 700;
  }
  .form-control{
height: 30px;
padding: 0 0.75rem;
  }
  display:flex;
  .right-div{
    background-color: rgba(241, 236, 255, 1);
  }
  .left-div{
    padding: 20px;
    .text-strong{
      font-weight: 600;
      color: rgba(33, 33, 33, 1);
    }
    .next-btn{
      /* box-shadow: 0px 2.43px 2.43px 0px rgba(0, 0, 0, 0.25); */
      color:  rgba(74, 163, 251, 1)
      ;
      /* background-color: rgba(74, 163, 251, 1) ; */
      padding:4px 24px;
      float:right;
      font-size: 16px;
      font-weight: 700;
    }
  }
  .right-div{
    padding: 20px;
    .text-strong{
      font-weight: 600;
      font-size:20px;
      color: rgba(33, 33, 33, 1);
    }
    .pay-btn{
      background:rgba(246, 51, 51, 0.56);
      color: white;
      box-shadow: 0px 2.1px 2.1px 0px rgba(0, 0, 0, 0.25);
    }
    .checkout-details{
      display: flex;
      flex-direction: column;
    }
    .checkout-course{
      display: flex;
      justify-content: space-between;
      padding:20px 0;
      border-bottom:1px solid lightgray;
      border-top:1px solid lightgray;
      span{
        color:  rgba(0, 0, 0, 0.45);
        font-size: 20px;
        font-weight: 400;
      }
      .course-name{
        display: flex;
        gap:10px;
      }
      .course-price{
        font-weight: 900;
        font-size: 16px;
        color:rgba(33, 33, 33, 0.77);
      }
      .course-div{
        display: flex;
        flex-direction: column;
        font-weight:500;
        color:rgba(33, 33, 33, 0.83);
        font-size: 15px;

      }
    }
    .remove-btn{
      color:rgba(101, 108, 236, 1);
      font-weight: 500;
      font-size: 14px;
    }
    .total-price{
      display:flex;
      justify-content: space-between;
      font-weight: 900;
      font-size: 16px;
      color:rgba(33, 33, 33, 0.77);
      padding:20px 0;
    }
  }
}

  /* .dataTables_wrapper .dataTables_info{
  
    display: none !important;
  
} */

/* .paginate_button.previous{
  display: none !important;
}
.paginate_button.next{
  display: none !important;
} */
 .add-notes-popup{
  .send-blue-btn{

    outline: none;
    color: white;
  user-select: none;
  border: none;
  border-radius: 8px;
  background-color: rgba(74, 163, 251);
  padding: 4px 18px;
  }
 }
 .payment-gateways
{
  display: flex;
  gap:10px;
  align-items: center;
  flex-wrap: wrap;
}

.pay-next-btn{
  float: right;
  box-shadow: 0px 2.43px 2.43px 0px rgba(0, 0, 0, 0.25);
      color: white;
      background-color: rgba(74, 163, 251, 1) ;
      padding:4px 24px;
}
.payment-section-1{
  display: flex;
  flex-direction: column;
  padding: 0px 0px 20px 0px;
  /* border-bottom: 0.6px solid rgba(0, 0, 0, 0.25) */
}
.payment-popup-options-list{
  .payment-method {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    background-color: #f9f9f9;
}
.payment-method h2 {
    font-size: 18px;
    color: #ff4d4f;
}
.payment-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.payment-option img {
    width: 40px;
    margin-right: 10px;
}
.payment-option label {
    font-size: 14px;
}
.form-group {
    margin: 10px 0;
}
.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
}
.form-group input[type="radio"] {
    width: auto;
    margin-top: 0;
    margin-right: 10px;
}
.form-group label {
    font-size: 12px;
    color: #999;
}
}
.custom-invoice-style{
  background-color: red;
}
.schedule-button-div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 400px) {
 flex-wrap: wrap;
     }

}

.slider {
  position: relative;
  width: 100%;
  margin: auto;
}

#course-container {
  transition: transform 0.5s ease-in-out;
}

 .prev-slide-btn ,.next-slide-btn {
  position: absolute;
  top: 62%;
  transform: translateY(-50%);
  background-color:  rgba(225, 124, 253, 1);
  border: none;
  color: white;
  padding:8px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.next-slide-btn {
  right: -10px;
  @media screen and (max-width: 1450px) {
    right: -40px;
  }
}
.prev-slide-btn{
  left: -22px;
}

.dataTables_info{
display:none;
}

.date-picker-container {
  display: none;
  /* margin-top: 10px; */
}
.date-picker-container input {
  margin-right: 5px;
  max-width: 140px;
}
.cancel-request{
  text-wrap: nowrap;
}
.date-div-group{
  display: flex;
  gap:10px;
  align-items: center;
  padding-left: 15px;
  @media screen and (max-width: 820px) {
    flex-wrap: wrap;
    margin-top: 15px;
   }
}
.search-instructor{
  @media screen and (max-width: 560px) {
  gap:10px;
   }
}
.pagination {
  display: flex;
  justify-content: end;

}
.pagination button {
  margin: 0 5px;
  border-radius: 50%;
  padding: 8px 15px;
  border: 0.96px solid rgba(227, 227, 227, 1);
  outline: none;
}
.pagination button:focus{
  border: 0.96px solid rgb(227, 227, 227);
  outline: none;
}
.entry-info {
  text-align: left;
  margin-bottom: 10px;
}
.pagination-botom{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  align-items: center;
}
.croppie-cabinet .croppie-figure{
border-radius: 50%;
width: 115px;
height: 115px;
min-height: 115px;
}
.croppie-cabinet{
  border-radius: 50%;
}
.croppie-output{
  border-radius: 50%;
}

.date-filter-box{
  display:flex;
  align-items: center;
  @media screen and (max-width: 900px) {
   flex-wrap: wrap;
  }
  .form-control{
    height:auto;
  }
}
.input-container {
  position: relative;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-control {
  padding-right: 30px; /* Adjust padding to make space for the icon */
}
.calendar-icon {
  position: absolute;
  right: 10px;
  pointer-events: none; /* Prevent icon from blocking clicks to the input */
  font-size: 16px;
  color: #000; /* Adjust the color as needed */
}
.select-div{
  padding: .25rem .5rem;
  height: auto;
}
.instructor-cell {
  white-space: nowrap; /* Prevent the text from wrapping */
  overflow: hidden; /* Hide the overflow text */
  text-overflow: ellipsis; /* Display an ellipsis (...) for overflowed text */
  max-width: 200px; /* Ensure the cell width doesn't exceed 300px */
  @media screen and (max-width: 800px) {
    max-width: 110px;
   }
   @media screen and (max-width: 1340px) {
    max-width: 150px;
   }
}
.view-all-button{
  color: #F63333; display: flex;align-items: center; justify-content: center; cursor: pointer;
}
.view-all-button:hover{
  color: #F63333;
}
.notification-count{
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F63333;
  color: white;
  border-radius: 50%;
  font-weight: 500;
}
.pagination-button {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.pagination-button.active {
  background-color: rgb(255, 194, 72);
  color: white;
}

.pagination-button:hover {
  background-color: #e0e0e0;
}

.text-clipping{
  max-width: 400px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
  @media screen and (max-width: 800px) {
    max-width: 200px;
  }
  @media screen and (max-width: 1600px) {
    /* max-width: 300px; */
    max-width: 250px;
  }
  @media screen and (max-width: 1450px) {
    max-width: 250px;
  }
}

#upcomingTable_paginate , #completedTable_paginate{
  float: right;
  margin-top: 10px;
  a{
    cursor: pointer;
  }
  a:hover{
    border: none;
  }
  .paginate_button{
    margin-right: 10px;
  }
}




#invoice-body{
  td{
    /* width: 100%; */
  }
  /* .invoice-course-name-div{
    white-space: nowrap;
     overflow: hidden;
      text-overflow: ellipsis;
       width: 400px;
       @media screen and (max-width: 1500px) {
        width: 350px;
        }
        @media screen and (max-width: 1370px) {
          width: 300px;
          }
          @media screen and (max-width: 1300px) {
            width: 200px;
            }
            @media screen and (max-width: 400px) {
              width: 140px;
              }
  } */
}
.classType-div{
  width: 100px !important;

}
.location-div{
  width: 150px !important;

}
.sched-text{
  max-width:95px;
  @media screen and (max-width: 1600px) {
    max-width:60px
  }
  
}
.circular-progress {
  --size: 225px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 28px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * 3.141592653589793 * 2);
  --progress: 0;
  width: var(--size);
  height: var(--size);
}

.circular-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.circular-progress circle.bg {
  stroke: #4AA3FB
  ;
}

.circular-progress circle.fg {
  stroke: #E17CFD;
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: calc(var(--progress) * var(--circumference) / 100) calc(var(--circumference) - (var(--progress) * var(--circumference) / 100));
  transition: stroke-dasharray 0.3s linear;
}
.circular-progress.zero-progress circle.fg {
  stroke: none;
}

.course-progress {
  --size: 150px;
  --half-size: calc(var(--size) / 2);
  --stroke-width: 28px;
  --radius: calc((var(--size) - var(--stroke-width)) / 2);
  --circumference: calc(var(--radius) * 3.141592653589793 * 2);
  --progress: 0;
  width: var(--size);
  height: var(--size);
  @media screen and (max-width: 1370px) {
    --size: 130px;
  }
  @media screen and (max-width: 770px) {
    --size: 150px;
  }
  @media screen and (max-width: 400px) {
    --size: 130px;
  }

}

.course-progress circle {
  cx: var(--half-size);
  cy: var(--half-size);
  r: var(--radius);
  stroke-width: var(--stroke-width);
  fill: none;
  stroke-linecap: round;
}

.course-progress circle.bg {
  stroke: #FFEDC9;
}

.course-progress circle.fg {
  stroke: #FFC248;
  transform: rotate(-90deg);
  transform-origin: var(--half-size) var(--half-size);
  stroke-dasharray: calc(var(--progress) * var(--circumference) / 100) calc(var(--circumference) - (var(--progress) * var(--circumference) / 100));
  transition: stroke-dasharray 0.3s linear;
}
.course-progress.zero-progress circle.fg {
  stroke: none;
}
.single-invoice-div{
  gap:10px;
  span{
    font-size: 12px;
  }
 
}
.invoice-headings{
  width:110px;
  font-weight:500;
  color:black;
  text-wrap:nowrap;
}
.invoice-dashboard-card{
  background: #f1ecff;
  width: 100%;
  padding: 5px 10px;
  border-radius: 10px;
}

.toggle-search{
 
  @media screen and (max-width: 400px) {
    margin-top: 10px;
  }
}

.table-main-div-schedule{
  @media screen and (max-width: 1300px) {
   overflow-x: scroll;
  }
}

.student-dashboard-main{
  @media screen and (max-width: 900px) {
    flex-wrap: wrap;
   }
}


.invoice-course-name-div{
  text-wrap:nowrap;width:120px;
  @media screen and (max-width: 1370px) {
  width: 100px;
  }
  @media screen and (max-width: 900px) {
    width: 600px;
    }
}
.invoice-date-section{
  width:200px;
  @media screen and (max-width: 1370px) {
    width: 110px;
    }
 
}
.invoice-ref-section{
width: 115px;
@media screen and (max-width: 1450px) {
  width: 70px;
  }
}
.invoice-amount-section{
  width: 140px;  
}
.right-course-name-div{
  text-wrap:nowrap;width:120px;
  @media screen and (max-width: 1370px) {
  width: 100px;
  }
  @media screen and (max-width: 900px) {
    width: 600px;
    }
    @media screen and (max-width: 450px) {
      width: 200px;
      }
      @media screen and (max-width: 399px) {
        width: 100px;
        }
}
.activation-banner-div{
  position: absolute;
  z-index: 100;
  background-color: blue;
  top: 0;
  left: 55px;
  width: 100%;
  color: white;
  gap: 4px;
  padding: 4px;
  font-size: 16px;
  font-weight: 500;
  @media screen and (max-width: 900px) {
    flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  left:0px;
    }
 

}
.activate-btn{
  background-color: #26B779;
  color: white;
  border-radius: 8px;
}
.course-notes{
  width: 660px;
  @media screen and (max-width: 1540px) {
    width: 600px;
    }
    @media screen and (max-width: 1450px) {
      width: 520px;
      }
      @media screen and (max-width: 1370px) {
        width: 450px;
        }
        @media screen and (max-width: 1300px) {
          width: 300px;
          }
          @media screen and (max-width: 900px) {
            width: auto;
            }
}

.product-notes{
  width: 800px;
  @media screen and (max-width: 1540px) {
    width: 600px;
    }
    @media screen and (max-width: 1450px) {
      width: 520px;
      }
      @media screen and (max-width: 1370px) {
        width: 450px;
        }
        @media screen and (max-width: 1300px) {
          width: 300px;
          }
          @media screen and (max-width: 900px) {
            width: auto;
            }
}

.payment-methods
{
  display: flex;
  gap:10px;
 align-items: center;
 padding: 14px 2px;
}
.payment-chips{
  color: black;
    padding: 8px 10px;
    background: #d3d3d373;
    border-radius: 8px;
    cursor: pointer;
}
.selected-chip {
  background-color: #4aa3fb; /* Blue background color */
  color: white; /* Optional: change text color for better visibility */
}

.stripe-contents{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.selected-payment-chip-value{
  padding: 2px;
    border: #4aa3fb 1px solid;
    border-radius: 11px;
    box-shadow: lightgray 0px 0px 5px 2px;
}
.info-message{
  background: rgba(241, 236, 255, 1);
  border-radius: 8px;
  padding: 5px;

}
.status-model-div{
  width:500px !important;
}
.success-popup{
  text-align: center;
    font-weight: 500;
    color: black;
    padding: 10px;
    font-size: 16px;
}
.registered-btn-dashboard {
  background: #e17cfd !important;
  color: #f8f7f8 !important;
  border: none;
  padding: 4px ;
  border-radius: 10px;
  font-weight: 500;
  cursor:none;
  font-size: 12px;
}

.sched-text-1{
  max-width:51px ;
  @media screen and (max-width: 1500px) {
    max-width: 51px;
    }
    @media screen and (max-width: 1300px) {
      max-width: 45px;
      }
      @media screen and (max-width: 900px) {
        max-width: 30px;
        }
}
.locations-div{
  display:flex;align-items:center;
  @media screen and (max-width: 800px) {
   flex-direction: column;
    }
    .btn-position{
      position:absolute;right:5px;
      @media screen and (max-width: 800px) {
        position: relative;
         }
    }
}

/* style for product tour button */

#tour-btn{
  background-color: orange;
  color: white;
  border: none;
  border-radius: 10px;
  height: 35px;
  width: 100px;
  margin-left: 50px;
  margin-top: 25px;
 
 }

 .reciept-btns{
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  @media screen and (max-width: 899px) {
   flex-direction: row;
     }
     @media screen and (max-width: 399px) {
      flex-direction: column;
        }
 }
 .download-btns-invoice{
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: end;
  @media screen and (max-width: 899px) {
   flex-direction: row;
     }
   
 }
 .my-video-dimensions {
  width: 100%;
  height: 600px;
}
.launch-btn {
  background-color:#26B779;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  cursor:pointer;
}
 .reg-div-price{
  justify-content: center !important;
 }
 .btndisabled{
  background-color: rgba(74 162 249 / 75%);
 }

 #videoModal{
  @media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 1200px;
    }
}
 }
 .offer-box {
 
  position: relative;
  
}



.ribbon-wrap {
  width: 80px;
  height: 80px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  left: -10px;
}

.ribbon-wrap::before,
.ribbon-wrap::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #e61855;
  position: absolute;
  z-index: -1;
}

.ribbon-wrap::before {
  top: 0;
  right: 5px;
}

.ribbon-wrap::after {
  bottom: 5px;
  left: 0;

}

.ribbon {
  width: 100px;
    font-weight: 800;
    text-align: center;
    background: #333;
    color: #f70b52;
    position: absolute;
    transform: rotate(-50deg);
    padding-left: 5px;
    left: -22%;
    top: 34%;
}


.ribbon:hover {
  animation: glow 1s infinite alternate;
}

@keyframes glow {
  0% {
      box-shadow: 0 0 10px #e6187f;
  }

  100% {
      box-shadow: 0 0 20px #f30930;
  }
}

.ins-sched-grp{
  .btn-default{
background-color:  #e1eef8;
  }
  .selected,
.btn-default.active {
  color: #fff;
  background: rgba(255, 194, 73, 1);
  outline: 0 !important;
  box-shadow: none;
}
}


#bookingStepperModal{
  .fc .fc-view-harness{
    height: 500px !important;
  }
  .modal-lg{
    max-width: 900px;
  } 
  .nav-item{
    /* width: 100%; */
    border-radius: 10px;
    text-align: center;
    position:relative;
  }
  .nav{
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
  }
  .lines{
    height: 2px;
    width: 100%;
    background: black;
  }
  .line-nav{
    display:flex;
    align-items:center;
    width: 150px;
   
  }
  .nav-pills .nav-link.active {
    /* background-color: #007bff; */
    color: white;
    border-radius: 10px;
  }
  .nav-link{
    padding:0;
    position:relative;
  }
  
}
 /* Style active steps */
 .nav-pills .nav-link.active {
  background-color: transparent;
  color: white;
}

/* Step navigation margins */
.nav-pills {
  margin-bottom: 20px;
}

/* Add margins to buttons */
button {
  margin-top: 10px;
}

.step-nav-item{
  /* background: aliceblue; */
}
.book-modal-body{
  max-height: 90vh;
}
.view-book-modal-body{
  height: 120vh;
}
#availabilityViewModal{
  .modal-lg {
    max-width: 1000px !important;
}
}

#confirmationSummary{
  margin: 10px 0;
}
/* Style for the step numbers */
.step-number {
  display: flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ddd;
    color: black;
    text-align: center;
    /* line-height: 20px; */
    /* margin-right: 5px; */
    /* margin-top: 20px; */
    align-items: center;
    justify-content: center
  /* margin-right: 5px; */
}
.span-txt{
  position: absolute;
  left: -25px;
  top: 45px;
  text-wrap: nowrap;
  color: black;
  font-weight: 600;
  font-size: 15px;
}
.step-nav-item .nav-link.active .step-number {
  border: 5px solid #E07CFC;
    background: white;
    color: #E07CFC;
    box-shadow: 0 0 4px 2px #E07CFC;
    
}
.nav-link.active .span-txt{
  color: #E07CFC !important;  
}
/* Completed steps will turn green with a checkmark */
.step-number.completed {
  background-color: #369CFE;
    content: "✓";
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.lines {
  height: 2px;
  width: 100%;
  background-color: #ddd;
  /* margin-top: 10px; */
}

.lines.active {
  background-color: #007bff; /* Active line color */
}
.fc-v-event .fc-event-main {
height: auto;
}
.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0.9em;
}
.label-instructor{
  color: #2A2A2A;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.fc-event{
  background: #4AC053BF !important;

}

.fc-event.availableSched{
  background: #4AC053BF !important;
  opacity:0.5;
  .fc-event-time{
    display: none !important;
  }
}

.schedule-row{
  display: flex;
    gap: 20px;
}

.slot-buttons{
  background-color:#B0B0B0;color: white;
}
.slot-buttons.selected{
  background-color:#4AA3FB !important;
}
.fc-event.muted {
  background-color: #EF6D58BF !important;
  opacity: 1;
  color: #696769 !important;
  cursor: not-allowed;
  .fc-event-time{
    display: none !important;
  }
  }
  .fc .fc-toolbar-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.fc-timeGridWeek-button, .fc-timeGridDay-button{display: none !important;}
.fc-button-group{
  left: 670px;
}
#selectedSlotsTable{
  th,td{
    border: 1px solid #dee2e6;
  }
  
}
.fc-event-time{
  display: none !important;
}

button:disabled {
  background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3)) !important;
  color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3)) !important;
  border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3)) !important;
}
.truncate-texts {
	max-width: 150px;
	/* Adjust as per your design */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* CSS for Status Labels */
.status-label {
  padding: 5px 10px !important;
  border-radius: 5px;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  font-size: 14px;
}

.status-completed {
  color: rgba( 15, 194, 4);
  background-color: rgba(220, 250, 230, 1); 
}

.status-in-progress {
  background: #ff6b0033;
  color: #ff6b00;
}

.status-upcoming {
  background-color: rgb(227 241 255);
  color: rgb(71 146 221);
}

.files-div{
  display: flex;
}
.terms-holder{
  padding: 30px;
}
.student-book{
  background-color: #ffa031b8 !important;
  opacity: 1;
  color: #696769 !important;
  cursor: not-allowed;
  text-wrap: nowrap;
}

.expense-button-div{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
  @media screen and (max-width: 400px) {
    flex-wrap: wrap;
  }
}
.label-required::after {
	content: " *";
	color: #ff0000;
}

.launch-survey-btn{
  background-color:orange;
  color: white;
  
  padding: 8px;
  margin-top: 5px;
  border-radius: 10px;
  /* font-weight: 500; */
  cursor:none;
  outline: none !important;
  border: 1px solid;
  border-color: transparent !important;
}
.survey-model-div {
  /* height: 650px; */
  width: 100%;
  margin: auto;
  overflow: hidden !important;

  @media (min-width: 1000px) {
    width: 800px;
  }

  @media (min-width: 769px) and (max-width: 999px) {
    width: 700px;
  }

  @media (max-width: 768px) {
    width: 500px;
  }

  @media (max-width: 500px) {
    width: 300px;
  }
}
.course-buttons {
    margin-top: 10px;
}

.course-buttons .registered-btn {
    margin-bottom: 10px;
}

.form-buttons {
    display: flex;
    gap: 10px;
   
}
#iframe-loading.hidden {
    display: none !important;
}

.table-responsive{
  height: 100%;
  min-height: 300px !important;
  overflow-x: hidden !important;
}
.split-section{
	display: flex;
}
.row-divs{
	display: flex;
	align-items: center;
}
.label-div{
	min-width: 112px;
}
.date-label-div{
	min-width: 80px;
}
/* .schedule-modal-dialog{

		max-width: 1000px !important;
	
} */
.row-divs{
	display: flex;
	align-items: center;
	gap:20px;
}
.label-div{
	min-width: 112px;
	/* width: 100%;
	max-width: 13.3333%; */
}
.date-label-div{
	gap: 3px;
}
.new-schedule-modal-dialog {
  max-width: 1090px !important;
}

.buffer-aligned-row {
  gap: 8px;
  flex-wrap: wrap;
  label {
  font-size: 13px;
  margin-bottom: 4px;
  white-space: nowrap;
  }
}

.buffer-aligned-row  {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
}
.buffer-dropdown{
	    max-width: 160px;
		min-width: 130px;
		gap: 3px;
}
.col-divs{
	gap: 8px; 
	flex: 1 1 45%;
}
.new-schedule-modal-dialog {
	@media(min-width:768px) and (max-width:992px) {
		max-width: 550px;
	}
}
@media (min-width: 1260px) {
	.new-schedule-modal-dialog {
		margin: 1.75rem 4.75rem !important;
	}
}
@media (min-width: 1370px) {
	.new-schedule-modal-dialog {
		margin: 1.75rem 12.5rem !important;
	}
}
.doc-label{
	color: #7f8fa4;
	font-weight: bold;
	font-size: 17px;
}

.role-label-new {
	font-weight: 600;
	font-size: 18px;
	color: #7BC2F1 !important;
	
}
.add-student-label{
	font-size: 18px;
	color: #636060;
	font-weight: 600;
	margin-bottom: 20px;
	margin-left: 15px;
}

#allstudent-data-table2_filter {
    display: flex !important;
    justify-content: center; 
    width: 100%;
}

#allstudent-data-table2_filter input {
   
    width: 100%;  
    box-sizing: border-box;  
    border-radius: 40px !important; 
	height: 40px; 
    position: absolute;  
    top: 0;  
    left: 0;  
	padding-left: 20px;    
}
#allstudent-data-table2_filter input::placeholder { 
	padding-left: 20px;
 }
 #student-data-table2_filter {
    display: flex;
    justify-content: center; 
	flex-direction: column;
    width: 100%;
}
 #student-data-table2_filter input { 
    width: 100%;  
    box-sizing: border-box;  
    border-radius: 40px !important; 
	height: 40px; 
    position: absolute;  
    top: 0;  
    left: 0;  
	padding-left: 20px;
    
}
#student-data-table2_filter input::placeholder { 
	padding-left: 10px;
	color: #636060 !important;

 }
/* #student-data-table2 {
    margin-left: 15px;
    max-width: 98%;
} */
 #student-data-table2_info {
    display: none !important;
}
#student-data-table2_paginate {
    margin-top: 20px;
	display: none;
}
#marksession-complete, #marksessionStudent-complete {
    float: right;
    margin-top: 30px;  
	margin-left: 10px;
}
.btn-grey { background-color: grey; color: white; }
.btn-green { background-color: #2ecc71; color: white; }
.btn-red { background-color: #e74c3c; color: white;}
.delete-row-btn{
	border: none;
	background: none; 
	color:#909298;
	font-size: 30px; 
	cursor: pointer;
	font-weight: 500;
}
#Razorpay-image{
  width: 99px;
  height: 39px;
}
.students-actions-col {
    overflow: visible !important;
}



