@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --heading_size: 2em;
  --subheading_size: 1.1em;
  --paragraph_size: 0.9em;
  --dl_blue: #2da3dc;
  --dl_orange: #f79221;
  --lite_orange: #f7922124;
  --green: #76904b;
  --white: #fff;
}

body {
  background-color: white !important;
}

.bg {
  background-image: url(/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.4;
}

.main-container {
  display: flex;
  min-height: 100vh;
}

.sidebar-container {
  width: 20vw;
  height: 100vh;
  overflow-y: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1em;
  box-shadow: 0 0 10px grey;
}

.child-details-slidebar {
  zoom: 85%;
}

.child-details-slidebar .avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: var(--dl_blue);
  position: relative;
  display: flex;
  box-shadow: 0 0 6px black;
  margin: auto;
  /* padding-top: 1em; */
}

.child-details-slidebar .avatar::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.child-details-slidebar .avatar img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.child-details-slidebar .child-name {
  margin: auto;
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 1em;
}

.child-details-slidebar .type {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  margin-top: 0.5em;
  display: flex;
  justify-content: center;
}

.child-details-slidebar .type p {
  background: var(--dl_orange);
  padding: 2px 8px;
  border-radius: 50px;
  color: white;
  text-transform: capitalize;
}

.child-details-slidebar .user-detail-list {
  position: relative;
  cursor: pointer;
}

.child-details-slidebar .user-detail-list:hover .user-details-tooltip {
  display: flex;
  transition: display 1s ease-in-out;
}

.child-details-slidebar .user-detail-list .user-details-tooltip {
  display: none;
  flex-direction: column;
  z-index: 999;
  transition: all 1s ease-in-out;
  background-color: var(--dl_orange);
  width: 100%;
  position: absolute;
  top: 160%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  opacity: 0.97;
  box-shadow: 0 0 5px grey;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .item {
  display: flex;
  background-color: white;
  border-radius: 12px;
  align-items: center;
  margin: 6px;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .item .item-heading {
  display: flex;
  background-color: var(--dl_orange);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 4px;
  font-size: 11px;
  box-shadow: 2px 0px 5px grey;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .item .item-value {
  display: flex;
  align-items: center;
  padding-left: 5px;
  font-weight: 500;
  color: var(--dl_orange);
}

.child-details-slidebar .user-detail-list .user-details-tooltip .item .item-value p {
  word-break: break-word;
  padding: 3px;
  padding-right: 0;
  font-size: 11px;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .detail-item {
  display: flex;
  border-radius: 12px;
  align-items: center;
  margin: 6px;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .detail-item .icon {
  display: flex;
  max-width: 30px;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .detail-item .icon-value {
  display: flex;
  align-items: center;
  padding-left: 5px;
  font-weight: 500;
  color: var(--white);
}

.child-details-slidebar .user-detail-list .user-details-tooltip .detail-item .icon-value p {
  word-break: break-word;
  padding: 3px;
  padding-right: 0;
  font-size: 11px;
}

.child-details-slidebar .user-detail-list .user-details-tooltip .triangle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-left: none;
  border-bottom: none;
  background: var(--dl_orange);
  top: -8px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) rotate(-44deg);
}

.child-details-slidebar .child-flow {
  margin-top: 1em;
}

.child-details-slidebar .get-child-details-btn {
  text-align: center;
  font-size: 1.1em;
  width: 85%;
  padding: 1em;
  margin-top: 11px;
  display: flex;
  margin-left: auto;
  height: 55px;
  justify-content: space-around;
  color: black;
  font-weight: 600;
  text-decoration: none;
  /* border-right: 8px solid #f6871f; */
  /* border-bottom: 3px solid #f6871f; */
  /* border-bottom-right-radius: 9px; */
}

.child-details-slidebar .get-child-details-btn .icon-image {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.child-details-slidebar .get-child-details-btn .icon-value {
  width: 85%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 8px;
  font-size: 14px;
}

.container {
  width: 80vw;
  min-height: 100vh;
  display: flex;
  position: relative;
  flex-direction: column;
}

.container .top-container {
  zoom: 80%;
  display: flex;
  flex-direction: column;
}

.container .top-container .top-layer {
  display: flex;
  position: relative;
}

.container .top-container .second-layer {
  display: flex;
  flex-direction: column;
}

.container .top-container .second-layer .breadcrumbs {
  display: flex;
  width: 95%;
  margin: auto;
  margin-top: 0.5em;
}

.container .top-container .second-layer .breadcrumbs .breadcrumb-item {
  display: flex;
  /* width: 50px; */
  align-items: center;
}

.container .top-container .second-layer .breadcrumbs .breadcrumb-item:last-child .breadcrumb-item-name {
  font-weight: 800;
  color: var(--dl_blue);
}

.container .top-container .second-layer .breadcrumbs .breadcrumb-item .breadcrumb-item-name {
  display: flex;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
}

.container .top-container .second-layer .breadcrumbs .breadcrumb-item .breadcrumb-item-name:hover {
  font-weight: 800;
  transition: all 0.1s ease-in-out;
}

.container .top-container .second-layer .breadcrumbs .breadcrumb-item .breadcrumb-item-bar {
  width: 25px;
  height: 25px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .top-container .hamburger-icons-list {
  display: flex;
  align-items: center;
}

.container .top-container .hamburger-icons-list .icon-item {
  display: flex;
  width: 40px;
  height: 40px;
  align-self: center;
  margin: 6px;
  align-items: center;
  justify-content: center;
  border: none;
  background: white;
  padding: 4px;
}

.container .top-container .search-bar {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0.5em;
}

.container .top-container .search-bar span {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 10px;
}

.container .top-container .search-bar span i {
  font-size: 1.1em;
}

.container .top-container .search-bar input {
  width: 100%;
  height: 35px;
  display: flex;
  border-radius: 5px;
  border: 1px solid grey;
  padding-left: 10px;
  outline: none;
}

.actionButtons {
  display: flex;
  justify-content: space-evenly;
  width: 50%;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
}

.actionButtons a,
.actionButtons button,
.actionButtons p {
  border: 5px solid white;
  border-radius: 8px;
  padding: 0.6em;
  background-color: var(--dl_blue);
  color: white !important;
  font-weight: 700;
  box-shadow: 0 0 5px grey;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  justify-content: center;
}

.actionButtons a:hover,
.actionButtons button:hover,
.actionButtons p:hover {
  /* background-color: var(--lite_orange); */
  color: var(--white);
  border-color: var(--dl_blue);
}

.top-container .hamburger-icons-list .hamburger-dialog {
  position: absolute;
  background: var(--dl_orange);
  top: 55px;
  right: 10px;
  border-top-right-radius: 7px;
  z-index: 10;
  flex-direction: column;
  display: none;
  border-radius: 10px;
}

.top-container .hamburger-icons-list .hamburger-dialog.active {
  display: flex !important;
}

.top-container .hamburger-icons-list .hamburger-dialog button {
  background-color: var(--dl_orange);
  padding: 10px;
  border: 2px solid transparent;
  color: white;
  font-weight: 600;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.top-container .hamburger-icons-list .hamburger-dialog button:hover {
  background-color: var(--white);
  color: var(--dl_orange);
  border-color: var(--dl_orange);
  cursor: pointer;
}

.top-container .hamburger-icons-list .hamburger-dialog .triangle {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--dl_orange);
  top: -8px;
  right: 3px;
  transform: rotate(-44deg);
  z-index: -1;
}

.top-container .hamburger-icons-list #hamburger-dialog-overlay.active {
  pointer-events: all;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: 5;
}

::-webkit-calendar-picker-indicator {
  background-image: url(./images/calender.png);
  position: relative;
  right: 0;
  width: 30px;
  height: 30px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background-image: url(./images/time.png);
  position: relative;
  right: 0;
  width: 25px;
  height: 25px;
}

.dl-logo {
  position: fixed;
  bottom: 0;
  width: 200px;
  padding: 10px;
  right: 0;
  opacity: 0.7;
}

.login-dl-logo {
  position: fixed;
  bottom: 0;
  width: 350px;
  padding: 1em;
  top: 0;
  opacity: 1;
}

/* Edit Profile and Logout */

.editprofile-popup {
  background: var(--dl_orange);
  background-color: var(--white);
  position: absolute;
  width: 500px;
  /* height: 50%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease-in-out;
  margin: auto;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--dl_orange);
  border-radius: 20px;
  opacity: 0.97;
  box-shadow: 0 0 6px grey;
  z-index: 1;
}

.editprofile-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.editprofile-popup .heading {
  display: flex;
  font-size: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  width: 100%;
  padding: 1em;
  justify-content: space-between;
  align-items: center;
}

.editprofile-popup .heading .icon {
  width: 50px;
  height: 50px;
}

.editprofile-popup .heading .name {
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 1em;
  font-weight: 700;
}

.editprofile-popup .heading>p {
  display: flex;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--dl_orange);
}

.changePassword-popup {
  background: var(--dl_orange);
  background-color: var(--white);
  position: absolute;
  width: 500px;
  /* height: 50%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease-in-out;
  margin: auto;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--dl_orange);
  border-radius: 20px;
  opacity: 0.97;
  box-shadow: 0 0 6px grey;
  z-index: 1;
}

.changePassword-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.changePassword-popup .heading {
  display: flex;
  font-size: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  width: 100%;
  padding: 1em;
  justify-content: space-between;
  align-items: center;
}

.changePassword-popup .heading .icon {
  width: 50px;
  height: 50px;
}

.changePassword-popup .heading .name {
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 1em;
  font-weight: 700;
}

.changePassword-popup .heading>p {
  display: flex;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--dl_orange);
}

.logout-popup {
  background: var(--dl_orange);
  background-color: var(--white);
  position: absolute;
  width: 500px;
  /* height: 50%; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 200ms ease-in-out;
  margin: auto;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--dl_orange);
  border-radius: 20px;
  opacity: 0.97;
  box-shadow: 0 0 6px grey;
}

.logout-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.logout-popup .heading {
  display: flex;
  font-size: 1.5em;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
  width: 100%;
  padding: 1em;
  justify-content: space-between;
  align-items: center;
}

.logout-popup .heading .icon {
  width: 50px;
  height: 50px;
}

.logout-popup .heading .name {
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 1em;
  font-weight: 700;
}

.logout-popup .heading>p {
  display: flex;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  cursor: pointer;
  color: var(--dl_orange);
}

.slot-item {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 50px;
  padding: 20px;
}

.slot-item div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.slot-item input {
  text-align: center;
}

.slot-item input:last-child {
  margin-left: 1em;
  text-align: left;
  width: 100%;
  border: 1px solid black;
  padding: 7px;
  outline: none;
  font-weight: 600;
  font-size: 16px;
}

.slot-item .actionButtons {
  margin: 1em;
  justify-content: flex-end;
}

.slot-item .subhead {
  width: 40%;
  justify-content: flex-start;
}

.slot-item .value {
  width: 60%;
  display: flex;
  justify-content: space-around;
}

.slot-item .value textarea {
  width: 100%;
  padding: 5px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid black;
  outline: none;
  border-radius: 5px;
}

.slot-item .value div {
  justify-content: flex-start;
}

.slot-item .value div label {
  padding-left: 10px;
}

.overlay {
  position: fixed;
  transition: all 200ms ease-in-out;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 1;
  pointer-events: none;
}

.overlay.active {
  pointer-events: all;
  background-color: rgb(0, 0, 0, 0.5);
}

#teacherInfo:hover .user-details-tooltip {
  display: flex !important;
  transition: display 1s ease-in-out;
}

#teacherInfo .user-details-tooltip {
  display: none;
  flex-direction: column;
  transition: all 1s ease-in-out;
  background-color: var(--dl_blue);
  border: 1px solid white;
  min-width: 100%;
  position: absolute;
  top: -46%;
  left: -41%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  opacity: 0.97;
  box-shadow: 0 0 5px grey;
}

#teacherInfo .user-details-tooltip .item {
  display: flex;
  background-color: white;
  border-radius: 12px;
  align-items: center;
  margin: 6px;
}

#teacherInfo .user-details-tooltip .item .item-heading {
  display: flex;
  background-color: var(--dl_orange);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 4px;
  font-size: 11px;
  box-shadow: 2px 0px 5px grey;
}

#teacherInfo .user-details-tooltip .item .item-value {
  display: flex;
  align-items: center;
  padding-left: 5px;
  font-weight: 500;
  color: var(--dl_orange);
}

#teacherInfo .user-details-tooltip .item .item-value p {
  word-break: break-word;
  padding: 3px;
  padding-right: 0;
  font-size: 11px;
}

#teacherInfo .user-details-tooltip .detail-item {
  display: flex;
  border-radius: 12px;
  align-items: center;
  margin: 6px;
}

#teacherInfo .user-details-tooltip .detail-item .icon {
  display: flex;
  max-width: 30px;
}

#teacherInfo .user-details-tooltip .detail-item .icon-value {
  display: flex;
  align-items: center;
  padding-left: 5px;
  font-weight: 500;
  color: var(--white);
}

#teacherInfo .user-details-tooltip .detail-item .icon-value p {
  word-break: break-word;
  padding: 3px;
  padding-right: 0;
  font-size: 11px;
}

#teacherInfo .user-details-tooltip .triangle {
  position: absolute;
  width: 20px;
  height: 20px;
  border-left: none;
  border-bottom: none;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  background: var(--dl_blue);
  top: 78%;
  border-radius: 1px;
  left: 90%;
  z-index: -1;
  transform: translateX(-50%) rotate(-44deg);
}

/* re-change in screening report  */

.reports__container {
  width: 100%;
  box-shadow: 1px 1px 4px gray;
  padding: 10px 15px;
  margin-top: 40px;
  position: relative;
}

.progress__container {
  position: absolute;
  width: 52%;
  height: 10px;
  z-index: 1;
  top: 22%;
  background-color: #97999b;
}

.reports__button {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  padding: 20px;
}

.prepare__report {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.prepare__report .img__conatiner {
  width: 100px;
  border-radius: 50%;
  height: 100px;
  background-color: #97999b;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prepare__report .img__conatiner img {
  width: 55%;
  object-fit: contain;
  object-position: center;
  height: auto;
}

.report__title {
  margin: 10px 0;
  font-size: 17px;
  font-weight: 600;
}

.report__description {
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
}

.button__container {
  display: flex;
}

.button__container button {
  outline: none;
  background-color: #97999b;
  color: white;
  padding: 10px 25px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 13px;
  cursor: pointer;
  margin: 30px 10px 10px;
}

/* Assignment  */
.assignment__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 600px;
  overflow: auto;
}

.page-name1 {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.page-name1 p {
  font-size: 25px;
  font-weight: 700;
}

.page-name1 form {
  border: 1px solid rgb(94, 93, 93);
  padding: 6px 10px;
  border-radius: 5px;
}

.page-name1 form input {
  border: none;
  outline: none;
}

.page-name1 form button {
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 16px;
  color: #f79221;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #f79221;
}

.assignment__heading__contain {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 15px auto 0px;
  background-color: #2da3dc;
  border-radius: 10px;
}

.assignment__heading__contain .thead {
  font-size: 15px;
  color: white;
  text-align: center;
  font-weight: 500;
  width: 19%;
  padding: 10px 10px;
  border-left: 1px solid white;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.assignment__heading__contain .thead:nth-child(1),
.assignment__heading__contain .thead:nth-child(2),
.assignment__heading__contain .thead:nth-child(3),
.assignment__heading__contain .thead:nth-child(4),
.assignment__heading__contain .thead:nth-child(6),
.assignment__heading__contain .thead:nth-child(7),
.assignment__heading__contain .thead:nth-child(8) {
  width: 12%;
}

.assignment__heading__contain h6:nth-child(1) {
  border-left: none;
}

.assignment__heading__contain .thead:nth-child(9) {
  width: 7%;
}

.assignment__heading__contain .thead:nth-child(7) {
  width: 16%;
}

.assignment__dropdown__contain {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  color: black;
  display: none;
  width: 100%;
  box-shadow: 0 0 5px grey;
}

.assignment__dropdown__contain.active {
  display: block;
}

.assignment__dropdown__contain div {
  width: 100%;
  margin: 5px auto;
  border-bottom: 1px solid grey;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assignment__dropdown__contain div input {
  margin-right: 5px;
  flex: 1;
}

.assignment__dropdown__contain div label {
  flex: 2;
  text-align: left;
  cursor: pointer;
}

.assignment__list__contain {
  background-color: #e8e8e8;
}

.assignment__completed__contain {
  display: flex;
  width: 100%;
  background-color: #e8e8e8;
  padding: 15px 15px;
  border-radius: 10px;
  margin-top: 10px;
}

.iscompleted {
  width: 40%;
  color: #71af0c;
  font-weight: 600;
  font-size: 17px;
}

.assignment__date {
  width: 40%;
  color: #2da3dc;
  font-weight: 600;
  font-size: 17px;
}

.assignment__list__contain {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  /* overflow: hidden; */
  /* background-color: #71af0c; */
  width: 100%;
}

.assignment__list__contain table {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  box-shadow: none;
  /* background-color: #2da3dc; */
}

.assignment__list__contain table tr {
  background-color: #f8f8f8;
}

.assignment__list__contain table button {
  background-color: transparent;
  width: 38px;
  height: 38px;
  border: none;
  outline: none;
  cursor: pointer;
}

.assignment__list__contain table button img {
  width: 100%;
  height: 100%;
}

.assignment__list__contain table tr td {
  color: #2da3dc;
  font-weight: 500;
  border-top: none;
  border-left: none;
  border-width: 3px;
  width: 10%;
  min-width: 10%;
  max-width: 10%;
  border-color: #e8e8e8;
}

.assignment__list__contain table tr td:nth-child(5) {
  width: 16%;
  min-width: 16%;
  max-width: 16%;
}

.assignment__list__contain table tr td:nth-child(9) {
  width: 6%;
  min-width: 6%;
  max-width: 6%;
}

.assignment__list__contain table tr td:nth-child(7) {
  width: 13% !important;
  min-width: 13% !important;
  max-width: 13% !important;
}

.action_btn {
  background-color: #cfcfcf !important;
  width: 45% !important;
  margin: 5px 0;
  color: white;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  padding: 10px 0px !important;
  height: 100% !important;
  border-radius: 3px;
}

.action_btn.active {
  background-color: #5fbceb !important;
}

.action_btn:hover {
  background-color: #5fbceb !important;
}

.assignment__modal__contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0000006c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.assignment__modal__contain.active {
  display: none;
}

.assignment__game__report {
  width: 50%;
  margin: auto;
  background-color: rgb(255, 255, 255);
}

.game__report__heading__container {
  /* background-color: #f79221; */
  display: flex;
  justify-content: space-between;
  padding: 15px 15px;
}

.game__report__heading__container p {
  color: rgb(5, 5, 5);
  font-weight: 600;
}

.game__report__heading__container button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

.assignment__game__report table {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.assignment__game__report table tr th {
  font-size: 13px;
  font-weight: 400;
  padding: 15px 3px;
}

.assignment__game__report table tr th:nth-child(1) {
  border-bottom-left-radius: 20px;
}

.assignment__game__report table tr th:nth-child(5) {
  border-bottom-right-radius: 20px;
}

.assignment__game__report table tr td {
  width: 100px;
}

.assignment__game__report table tr td {
  background-color: white;
  color: #2da3dc;
  font-weight: 500;
  font-size: 14px;
}

.assignment__game__report table tr td button {
  background-color: transparent;
  border: none;
  outline: none;
  width: 38px;
  height: 38px;
  font-size: 25px;
  color: #2da3dc;
}

.assignment__game__report table tr td button img {
  width: 100%;
}

.assigned_container {
  position: absolute;
  top: 10px;
  left: 50%;
  background-color: #20c26e;
  color: white;
  width: 300px;
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.assigned_container.active {
  display: none;
}

.type_switch_tab {
  background-color: var(--dl_orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  border: 1px solid var(--dl_orange);
}

.type_switch_tab button:nth-child(2) {
  border-left: 2px solid white;
  border-right: 2px solid white;
  border-radius: 0px;
}

.type_switch_tab button:nth-child(1) {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.type_switch_tab button:nth-child(3) {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.type_switch_tab button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  height: 100%;
  padding: 5px 20px;
  margin: 0 0px;
  cursor: pointer;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  transition: all 0.5s ease-in-out;
}

.type_switch_tab button.active {
  background-color: #ffffff;
  color: var(--dl_orange);
}



/* NEW ADDED BLENDED AND LESSON PLAN TABLE */
.blended_session_table tr {
  display: grid !important;
  grid-template-columns: 1fr 2fr 3fr 3fr 2fr 2fr 2fr 2fr 2fr 1.4fr 2fr !important;
  text-align: center;
}

.blended_session_table.active {
  display: none;
}




/* LEFT PANEL WRAPPER  */
#sub_wrapper {
  cursor: pointer;
  flex-direction: column !important;
}

#sub_wrapper_icon_container {
  display: flex;
  align-items: center;
}

#sub_wrapper_icon_container .icon-image {
  width: 40px !important;
  height: 40px !important;
}

#sub_wrapper #sub_wrapper_icon_container {
  width: 85%;
  margin-left: auto;
  text-align: right;

  padding: 10px;
  background-color: transparent;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-top: 4px;
  margin-bottom: 4px;
}

#sub_wrapper #sub_wrapper_icon_container:hover {
  background-color: #2da3dc;
  color: white;
}

#sub_wrapper_heading {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#sub_wrapper_list {
  display: none;
}

#sub_wrapper_list.show {
  display: block;
}



.notification_conatiner {
  width: 400px;
  height: 500px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  right: 5%;
  top: 100%;
  display: block;
  box-shadow: 0 0 9px 1px rgb(209, 209, 209);
  overflow: auto;
  z-index: 99999;
}

.notification_conatiner.active {
  display: none;
}

.notification_list {
  width: 100%;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  text-decoration: none;
  align-items: center;
  border-bottom: 1px solid rgb(206, 206, 206);
  padding: 10px 10px;
}

.notification_list:active {
  color: black;
}

.notification_btn {
  cursor: pointer;
  position: relative;

}

.notification_btn span {
  position: absolute;
  top: 5px;
  right: 6px;
  width: 20px;
  height: 20px;
  background-color: red;
  color: white;
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
}

.notification_dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 100%;
  text-decoration: none;
  background-color: white;
}

.notification_dot i {
  text-decoration: none;
  color: var(--dl_orange);
  font-size: 14px;
}

.notification_list .message {
  width: 80%;
}

.notification_list #text {
  font-size: 14px;
  color: black;
  font-weight: 700;
}

.notification_list #date {
  font-size: 13px;
  font-weight: 600;
  text-align: right;
  color: rgb(156, 156, 156);
}