:root {
  --primary-color: #3e2f91;
  --secondary-color: #00bbcf;
  --white-color: #fff;
  --black-color: #000000;
  --calander-background: #ced4da;
  --admin-background: #f1ebdf;
  --red-color: #ff0000;
  --table-border: #b2bfbd;
}

/*hamburger*/
.sidebar-arrow {
  display: flex;
  color: var(--primary-color);
  position: fixed;
  font-size: 25px;
  left: 245px;
  top: 52px;
  z-index: 55;
  background: #fff;
  height: 35px;
  width: 35px;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 3px rgb(192, 192, 192);
}

.wrapper.active .sidebar-arrow {
  left: 5px;
}

/*table*/

.table-action-group {
  display: inline-block;
  white-space: nowrap;
  overflow: auto;
}

.table .table-action {
  min-width: 75px;
}

.table-action-group .table-action {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
/* .override {
  padding-left: 6rem !important;
} */
.quiz-btn {
  background-color: var(--secondary-color);
  width: 50px;
  height: 10px !important;
}

/*admin form */
/* .admin-form .admin-form-group, */
.form-own .form-own-group {
  min-height: 85px;
}

.form-own-label {
  color: var(--primary-color);
}

/*logout*/
.logout-wrapper {
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: margin-left 0.2s ease-in-out, left 0.2s ease-in-out,
    margin-right 0.2s ease-in-out, right 0.2s ease-in-out;
  width: 260px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.logout-wrapper.logout-admin {
  /* bottom: -12px; */
  border-top: none;
}

.logout-wrapper .sidebar-link {
  font-size: 1.1rem;
}
.logout-wrapper .sidebar-link:hover {
  color: var(--white-color);
}

.logout-wrapper.collapsed {
  margin-left: -260px;
}

/*Logo Upload*/

.show-icon-wrapper {
  pointer-events: none;
}

.show-icon-wrapper img {
  width: 150px;
}

/*toggle switch*/
.toggle-input {
  height: 0;
  width: 0;
  visibility: hidden;
}

.toggle-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 50px;
  height: 25px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.toggle-label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 90px;
  transition: 0.5s;
}

.toggle-input:checked + .toggle-label {
  background: var(--primary-color);
}

.toggle-input:checked + .toggle-label::after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.toggle-label:active::after {
  width: 20px;
}

/*admin video*/
.admin-modal .video-wrapper .video-name {
  background: var(--primary-color);
  color: var(--white-color);
}

/*dropdown menu*/
.user-profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 15px);
  background: var(--primary-color);
  color: #f7f7f7;
  box-shadow: 0 3px 7px 1px rgba(0, 0, 0, 0.4);
  z-index: 55;
  min-width: 240px;
  font-size: 14px;
}

.user-profile-dropdown:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--primary-color);
  right: 20px;
  top: -8px;
}

.profile-dropdown-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.profile-dropdown-list > li .menu-list-txt {
  display: block;
  padding: 10px 15px;
}

.profile-dropdown-list > li a,
.profile-dropdown-list > li:hover,
.profile-dropdown-list > li:focus {
  color: var(--primary-color);
  background-color: var(--white-color);
}

.profile-dropdown-list > li:last-child {
  border-bottom: none;
}

.user-details .user-name-text {
  position: relative;
  padding-right: 20px;
  color: var(--primary-color);
}

.user-details .user-name-text:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.password-helper .helper-list {
  color: var(--red-color);
}

.password-helper .helper-list .active {
  color: green;
}

.form-img-wrapper {
  position: absolute;
  top: 42px;
  right: 10px;
  color: var(--primary-color);
}

.form-img-wrapper.login {
  top: 11px;
}

.form-group .login-password {
  position: absolute;
  bottom: 40px;
  right: 15px;
  color: var(--white-color);
}

.form-report {
  display: flex;
}

.form-report .form-report-group {
  display: flex;
  padding: 0 10px;
}

.form-report .form-report-group .datepicker-report .react-date-picker__wrapper {
  background: #fff;
  border: 1px solid rgb(218, 215, 215);
  padding: 5.5px 10px;
  border-radius: 4px;
}

.form-report .form-report-group .datepicker-report .react-date-picker {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  z-index: 5;
}

.react-date-picker__inputGroup .react-date-picker__inputGroup__input {
  height: 70%;
  border: none;
  margin-right: 0;
}

/*reports tables*/
.report-wrapper {
  display: flex;
  padding-top: 0.5rem;
  padding-left: 15px;
  padding-right: 15px;
}
.report-wrapper .report-table-wrapper {
  width: 100%;
  padding-right: 20px;
}
.report-wrapper .report-table-wrapper .report-type,
.reports-stats-wrapper .report-type {
  font-size: 20px;
}

.report-wrapper .reports-stats-wrapper {
  padding-left: 50px;
}

.reports-stats-wrapper .reports-stats {
  width: 200px;
}

.reports-stats .list-unstyled .report-data {
  padding: 10px;
  font-size: 12px;
  font-weight: 900;
}

.report-wrapper.user-data-wrapper {
  padding-left: 25px;
  padding-right: 1px;
}

/*dashboard*/
.dashboard-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.dashboard-menu.web-menu {
  width: 100%;
}

.dashboard-menu .dashboard-logo {
  width: 35px;
}

.dashboard-menu .dashboard-label {
  /* padding-top: 15px; */
}
