.loader {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ededed;
}

.circle {
  width: 48px;
  height: 48px;
  border: 3px dotted #2100A6;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

.circle::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #6949E8;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}

@keyframes rotation { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); } 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); } }
@-webkit-keyframes rotation { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); } 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); } }

@keyframes rotationBack { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); } 100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); } }
@-webkit-keyframes rotationBack { 0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); } 100% { transform: rotate(-360deg); -webkit-transform: rotate(-360deg); } }

@font-face {
  font-family: "Roboto Medium";
  src: url(./fonts/Roboto-Medium.woff);
  font-style: normal;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(./fonts/MaterialIcons-Regular.woff2) format("woff2");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-weight: normal;
  font-family: "Roboto Medium";
}

#htmlloadimg{
  display: none;
}

.app-video-loader{
  background-color: #000;
}

.app-video-loader .circle{
  border: solid 6px transparent;
  border-top: 6px solid #827171;
  border-left: 6px solid #827171;
  width: 64px;
  height: 64px; 
}

.resourcePlayer {
  width: 100%;
  height: 100%;
  background: #ededed;
}

iframe {
  border: none;
  height: 100%;
}

.resourcePlayer iframe#ebookIframe {
  background: #ededed;
  height: 100%;
}

#closeBtn {
  display: none;
  width: 30px;
  height: 30px;
  color: #000000;
  line-height: 28px;
  border-radius: 30px;
  text-align: center;
  border: solid 2px #000000;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

#watermark {
  /* color: rgba(204, 204, 204, 0.2); */
  color: rgba(0, 0, 0, 0.38);
  font-size: 30px;
  font-family: Arial, Helvetica, sans-serif;
  user-select: none;
  pointer-events: none;
  z-index: 9999999;
}

.annotationContainer .md-dialog-container {
  top: 0px !important;
}

.ne-relative {
  position: relative;
}

.ne-absolute {
  position: absolute;
}

.custom-popup {
  display: none;
}

.custom-popup .modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
}

.custom-popup .modal .modal-content {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  margin: auto;
  padding: 16px;
  border: 1px solid #888;
  width: auto;
  min-width: 330px;
  line-height: 24px;
  border-radius: 5px;
  width: auto;
  max-width: 80%;
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
  background: #fff;
  box-sizing: border-box;
}

/* Module resource changes */
.show-res-player-header .resourcePlayer{
  height: calc(100% - 48px);
  position: relative;
}

/* Resource Player Header Starts */
.resourceHeader {
  padding: 5px 10px;
  display: none;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  background-color: black;
  color: #fff;
  min-height: 48px;
  box-sizing: border-box;
}
.resourceHeader button {
  width: auto;
  height: auto;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  color: unset;
}
.resourceHeader p {
  margin: 0;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.resourceHeader.tn  {
  background-color: #81b214;
}
.resourceHeader.lms  {
  background: #fad000;
  color: #212121;
}
.custom-popup .modal .modal-content .display-msg {
  text-align: center;
  font-size: 18px;
  padding: 8px;
  line-height: 28px;
  max-width: 400px;
}

.custom-popup .modal .modal-content .alerActionBar {
  margin: 12px 0 0 0;
  text-align: right;
}
.custom-popup .modal .modal-content .alerActionBar button {
  padding: 8px 16px;
  background-color: #00c260;
  border: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Roboto Regular";
  font-weight: bold;
  outline: none;
}
.resource-collection-mode{
  font-size: 14px;
  padding: 20px 24px;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.resource-collection-mode h3{
  margin: 0 0 6px 0;
  font-weight: normal;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.resource-collection-mode button {
  width: auto;
  border: none;
  height: auto;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

.resource-collection-mode ul {
    margin: 0 0 16px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}
.resource-collection-mode ul li {
    font-size: 12px;
    color: #737373;
    margin-right: 5px;
}
.resource-collection-mode ul li.active {
    color: #000;
    cursor: pointer;
}

.resources-list-view{
    background: #fff;
    border: 1px solid #C2C2C2;
    border-radius: 5px;
    padding: 7px;
    min-height: 56px;
    box-shadow: 0px 2px 4px #00000014;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-size: 13px;
}
.courseplanlistview .courseplanresourcetype  {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #7FCF30;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    margin-right: 12px;
    margin-left: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.courseplanlistview .courseplanresourcetype img {
    width: 20px;
}
.courseplanlistview .courseplanresourcetype i,
.courseplanlistview .resourcetype i {
    font-size: 18px;
    color: var(--secondary-text-color) !important;
    line-height: 32px;
}
.courseplanlistview strong{ 
    font-weight: normal;
    display: inline;
    /* autoprefixer: off */
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word; 
}
.courseplanlistview {
  display: flex;
  align-items: center;
  flex: 1;
} 
.courseplanlistview .resourcetype  {
  background: #C86AF7;
}
.courseType {
  display: flex;
  flex-direction: row; 
  place-content: space-between;
  padding-left: 10px;
  padding-right: 10px;
}
.resources-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}
#resourceList .default-thumbnail {
  display: none;
}

/* Resource Grid view */
.resourceGrid>div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;  
}
.resourceGrid .courseplanlistview {
  flex-direction: column;
  align-items: inherit;
}
.resourceGrid .grideInfo {
  flex-direction: row;
  display: flex;
  align-items: center;
  padding: 8px;
  padding-left: 5px;
}
.resourceGrid .courseplanlistview .default-thumbnail {
  width: 100%;
  border-radius: 0;
  height: 130px;
  margin: 0;
}
.resourceGrid .courseplanlistview .default-thumbnail img {
  max-width: 100%;
  max-height: 130px;
  width: auto;
}
.resourceGrid .courseplanlistview .default-thumbnail i {
  font-size: 32px;
  border: solid 2px #fff;
  width: 60px;
  height: 60px;
  display: flex;
  place-content: center;
  align-items: center;
  border-radius: 56px;
}
.resourceGrid .resources-grid-view {
  width: calc(25% - 16px);  
  margin: 10px 8px;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 29%);
  transition: ease-in-out all 0.3s;
  cursor: pointer;
}
.resourceGrid .resources-grid-view:hover {
  box-shadow: 0px 0px 2px 2px #f5cf00;
  transform: scale(1.05);
}
.resourceGrid .courseplanlistview .courseplanresourcetype { 
  margin-right: 8px;
}
.resourceGrid .courseType {
  display: none;
}

/* TN case Style Starts */
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .default-thumbnail i {
  width: 80px;
  height: 80px;
  border-radius: 80px;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .default-thumbnail i img {
  width: 30px;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .grideInfo i {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: flex;
  place-content: center;
  align-items: center;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .grideInfo i img {
  width: 16px;
  margin: 0 auto;
}

/* TN Color Code Starts */
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .audio {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.audio {
  background-color: #4aa735 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .lessonplan {
  background-color: #84bed0 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.lessonplan {
  background-color: #84bed0 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .simulation {
  background-color: #bf84d0 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.simulation {
  background-color: #bf84d0 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .quiz {
  background-color: #d96464 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.quiz {
  background-color: #d96464 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .teachermanualactivity {
  background-color: #59c2b4 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.teachermanualactivity {
  background-color: #59c2b4 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .mindmap {
  background-color: #61d2a8 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.mindmap {
  background-color: #61d2a8 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .experiments {
  background-color: #dbb14c !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.experiments {
  background-color: #dbb14c !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .hots {
  background-color: #d49659 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.hots {
  background-color: #d49659 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .ebook {
  background-color: #dbb458 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.ebook {
  background-color: #dbb458 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .textbooks {
  background-color: #6ab2e9 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.textbooks {
  background-color: #6ab2e9 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .companions {
  background-color: #6bc565 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.companions {
  background-color: #6bc565 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .cbt {
  background-color: #cf69c5 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.cbt {
  background-color: #cf69c5 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .excercises {
  background-color: #b284d1 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.excercises {
  background-color: #b284d1 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .formativeassessments {
  background-color: #d15885 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.formativeassessments {
  background-color: #d15885 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .assessment {
  background-color: #d15885 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.assessment {
  background-color: #d15885 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .pdf {
  background-color: #d15885 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.pdf {
  background-color: #d15885 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .webreference {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.webreference {
  background-color: #4aa735 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .collection {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.collection {
  background-color: #4aa735 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .module {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.module {
  background-color: #4aa735 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .wiki {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.wiki {
  background-color: #4aa735 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .scorm {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.scorm {
  background-color: #4aa735 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .image {
  background-color: #6ab2e9 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.image {
  background-color: #6ab2e9 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .document {
  background-color: #cf69c5 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.document {
  background-color: #cf69c5 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .spreadsheet {
  background-color: #cf69c5 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.spreadsheet {
  background-color: #cf69c5 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .presentation {
  background-color: #cf69c5 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.presentation {
  background-color: #cf69c5 !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .livelecture {
  background-color: #4aa735fa !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.livelecture {
  background-color: #4aa735fa !important;
}

.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .video {
  background-color: #4aa735 !important;
}
.resourceGrid .resources-grid-view.resources-tn-view .courseplanlistview .courseplanresourcetype.video {
  background-color: #4aa735 !important;
}



/* TN Color Code Ends */
/* TN case Style Ends */

/* Next Studio Style Starts  */
.nextStudiobuttonBlock {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 9999;
}
.nextStudiobutton {
  width: 50px;
  height: 50px;
  background: #f9c400;
  border: solid 2px #fa9400;
  cursor: pointer;
  border-radius: 40px;
  padding: 8px;
}
.nextStudiobuttonBlock .dragIcon {
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: white;
  width: 32px;
  height: 28px;
  display: flex;
  flex-direction: row;
  place-content: center;
  align-items: center;
  border: solid 2px #fa9400;
  z-index: -1;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
}
.nextStudiobuttonBlock .dragIcon::after {
  border: dotted #000 3px;
  content: '';
  display: inline-block;
  width: 4px;
  height: 9px;
  margin-right: 9px;
}
#nextStudio, #nsdrag{
  display: none;
}
#nextStudio iframe{
  position: fixed; 
  z-index: 999; 
  width: 100%; 
  height: 100%;
  top: 0; 
  left:0;
}
/* Next Studio Style Ends  */

/* Resource Player Header Ends */

/* ===== Web Reference Starts ===== */
.resourceFooter {
  display: none;
}

.show-res-player-footer .resourcePlayer {
  height: calc(100% - 40px);
  position: relative;
}
.show-res-player-footer .resourceFooter {
  width: 100%;
  background-color: #333333;
  height: 40px;
  padding: 0px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
}
.show-res-player-footer .resourceFooter button.closeButton {
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  place-content: center;
}
.show-res-player-footer .resourceFooter button.closeButton img {
  width: 26px;
  height: 26px;
  display: block;
}
.show-res-player-footer .app-tools-block {
  position: relative;
  margin: 0 24px;
  display: flex;
}
.show-res-player-footer .app-tools-menu {
  position: absolute;
  bottom: 40px;
  background-color: #303030; 
} 
.show-res-player-footer .app-tools-menu ul {
  margin: 0;
  padding: 0;
}
.show-res-player-footer .app-tools-menu ul li {
  box-sizing: border-box;
  display: flex;
  padding: 12px 32px 12px 16px;
  align-items: center;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.show-res-player-footer .app-tools-menu ul li:hover {
  background: #3d3d3c;
}
.show-res-player-footer .app-tools-menu ul li i {
  width: 24px;
  margin-right: 8px;
  height: 24px;
}
.show-res-player-footer .app-tools-menu[style="display: block;"]~.app-tool-icon {
  background-color: #fad000 !important;
}
.show-res-player-footer .app-tools-block .app-tool-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  place-content: center;
  background-color: #333333;
  border: none;
  cursor: pointer;
}
.show-res-player-footer .app-tools-block .app-tool-icon img {
  width: 24px;
  height: 24px;
}
.show-res-player-footer .app-tools-menu ul li i {
  background-repeat: no-repeat !important;
}
.show-res-player-footer .app-tools-menu ul li i.dictionary_icon {
  background: url(./images/dictionary_icon.svg);
}
.show-res-player-footer .app-tools-menu ul li i.tools_icon {
  background: url(./images/nexttools.svg);
}
.show-res-player-footer .app-tools-menu ul li i.studio_icon {
  background: url(./images/studio.svg);
}
.show-res-player-footer .app-tools-menu ul li i.external_icon {
  background: url(./images/externalmedia.svg);
}
.show-res-player-footer .app-tools-menu ul li i.cue_generator_icon {
  background: url(./images/cue_generator.svg);
} 


/* LMS Style*/ 
.show-res-player-footer .app-tools-block.tools-LMS .app-tools-menu {
  background-color: white;
  box-shadow: 0 2px 4px -1px rgb(0 0 0 / 20%), 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%);
}
.show-res-player-footer .app-tools-block.tools-LMS .app-tools-menu ul li {
  color: #37474f;
}
.show-res-player-footer .app-tools-block.tools-LMS .app-tools-menu ul li:hover {
  background: rgb(238,238,238);
}
 
/*=====  Web Reference Ends ===== */

/* E Book Empty message Starts */
.ebookEmptyMessage,
.ebookEmptyMessageInside {
  display: flex;
  flex-direction: row;
  place-content: center;
  align-items: center;
}
.ebookEmptyMessage {
  width: 100%;
  height: 100%;
  background-color: #ebeff3; 
}
.ebookEmptyMessageInside {
  width: 83.2%;
  height: calc(100% - 80px);
  background-color: white;
  
  border-radius: 8px;
}
.ebookEmptyMessage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  pointer-events: none;
}
.loader.ebookloader {
    width: 83.2%;
    margin: 0 auto;
    box-shadow: 0px 3px 6px rgb(0 0 0 / 29%);
    background-color: white;
    right: 0;
    height: calc(100% - 96px);
    bottom: 0px;
    top: 48px;
}
/* E Book Empty message Ends */

.ebook-embedded-resource-popup {
  position: absolute; 
  width: 90% !important; 
  height: 90% !important; 
  border: none; 
  top: 0px; 
  left: 0px; 
  bottom: 0; 
  right: 0; 
  margin: auto; 
  border-radius: 4px; 
  box-shadow: 0 0 0 999px rgb(33 33 33 / 64%);
}
/* spinner starts */
.spinnerSection {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; 
  background-color: #F1F3FF;
  background-image: url(./images/toolsbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  place-content: center;
  align-items: center;
  flex-direction: row;
}
.spinner { 
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.spinner .spinner-item {
  width: calc(75px / 12);
  height: 80%; 
  animation: spinner1 1000ms ease-in-out infinite;
}
@keyframes spinner1 {
  50% {
    transform: scaleY(0.25);
  }
}
.spinner .spinner-item:nth-child(1) {
  background-color: #bbbb88;
  animation-delay: calc(1000ms / 10 * -3);
}
.spinner .spinner-item:nth-child(2) {
  background-color: #ccc68d;
  animation-delay: calc(1000ms / 10 * -1);
}
.spinner .spinner-item:nth-child(3) {
  background-color:#eedd99;
  animation-delay: calc(1000ms / 10 * -2);
}
.spinner .spinner-item:nth-child(4) {
  background-color: #eec290;
  animation-delay: calc(1000ms / 10 * -1);
}
.spinner .spinner-item:nth-child(5) {
  background-color: #eeaa88;
  animation-delay: calc(1000ms / 10 * -3);
}
/* spinner Ends */
@media only screen and (min-width: 1369px) { 
  .resourceGrid .resources-grid-view { 
    width: calc(16.66% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }
  .resourceGrid .courseplanlistview .default-thumbnail {
    height: 130px;
  }
  .resourceGrid .courseplanlistview .default-thumbnail img { 
    max-height: 130px;
  }
  .resourceGrid .grideInfo { 
    padding: 14px;
    padding-left: 12px;
  }
} 
@media only screen and (min-width: 1601px) and (max-width: 1940px) {
  .resourceGrid .courseplanlistview .default-thumbnail { 
    height: 153px;
  }
  .resourceGrid .courseplanlistview .default-thumbnail img { 
    max-height: 153px;
  }

/*=====  Web Reference Starts ===== */
  .show-res-player-footer .resourceFooter {
    height: 48px;
    padding: 0 14px;
  }
  .show-res-player-footer .resourcePlayer {
    height: calc(100% - 48px); 
  }
  .show-res-player-footer .resourceFooter button.closeButton {
    width: 48px;
    height: 48px;
  }
  .show-res-player-footer .resourceFooter button.closeButton img {
    width: 30px;
    height: 30px;
  } 
  .show-res-player-footer .app-tools-block {
    margin: 0 30px;
  } 
  .show-res-player-footer .app-tools-menu ul li {
      font-size: 18px;
  } 
/*=====  Web Reference Ends ===== */

}
@media only screen and (min-width: 1025px) and (max-width: 1368px) {
  .resourceGrid .resources-grid-view { 
    width: calc(20% - 16px);
  }
  .resourceGrid .courseplanlistview .default-thumbnail {
    height: 130px;
  }
  .resourceGrid .courseplanlistview .default-thumbnail img { 
    max-height: 130px;
  }
  .resourceGrid .grideInfo { 
    padding: 10px;
    padding-left: 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .resourceGrid .courseplanlistview .default-thumbnail {
    height: 90px;
  }
  .resourceGrid .courseplanlistview .default-thumbnail img { 
    max-height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .resourceHeader { 
    font-size: 16px;
    padding-left: 6px;
  }
  .resource-collection-mode {
    padding: 8px;
  }  
  .courseType {
    padding-right: 0;
  }  
  .courseType p {
    margin: 0;
  } 
  .resource-collection-mode ul {
    margin-bottom: 8px;
  }
  .courseplanlistview .courseplanresourcetype {
    margin-right: 6px;
    margin-left: 3px;
  }
  /* Gride View  */
  .resourceGrid .courseplanlistview .courseplanresourcetype {
    position: static;
    margin-right: 5px;
  }
  .resourceGrid .resources-grid-view {
    width: calc(33.33% - 16px);
  }
  .resourceGrid .courseplanlistview .grideInfo {
    font-size: 12px;
  }
  .resourceGrid .courseplanlistview .default-thumbnail { 
    height: 90px; 
  }
  .resourceGrid .courseplanlistview .default-thumbnail img { 
    max-height: 90px;
  }  
  /*=====  Tools Menu Starts ===== */
  .show-res-player-footer .app-tools-block {
      margin: 0 16px;
  }
  .show-res-player-footer .app-tools-menu ul li {
      font-size: 12px;
      padding: 9px 20px 9px 12px;
      min-height: 38px;
  }
  .show-res-player-footer .app-tools-menu ul li i {
      background-size: 18px !important;
      width: 20px;
      height: 20px;
      margin-right: 6px;
  }
  .show-res-player-footer .app-tools-block .app-tool-icon {
      width: 32px;
      height: 32px;
  }
  .show-res-player-footer .app-tools-menu {
      bottom: 32px;
  }
  /*=====  Tools Menu Ends ===== */ 
  .ebook-embedded-resource-popup {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
  }

}

@media only screen and (max-width: 329px) {
  .resourceGrid .custom-popup .modal .modal-content {
    min-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .custom-popup .modal .modal-content .alerActionBar {
    text-align: center;
  }
  .resourceGrid .resources-grid-view {
    width: calc(50% - 13px);
    margin: 6px;
  }
  .resourceGrid .courseplanlistview .grideInfo {
    padding: 5px;
    padding-left: 3px;
  }
}

#cpEbookError{
  display: none;
}

/* service info Dialog Starts*/
.serverInfoButton {
  position: absolute;
  right: 16px;
  top: 6px;
  z-index: 2;
  background-color: #fff;
  min-width: 32px;
  min-height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 24px;
  border-radius: 32px;
  border: solid 1px black;
  cursor: pointer;
  display: none;
}
.serverInfoDialogMain {
  display: none;
}
.serverInfoDialog {
  position: absolute;
  right: 13px;
  top: 54px;
  width: 420px;
  min-height: 100px;
  background-color: white;
  z-index: 3;
  border-radius: 4px;
  box-shadow: -3px 4px 5px 1px rgb(33 33 33 / 34%);
}
.serverInfoDialog p{
  overflow: auto;
  max-height: calc(100vh - 150px);
}
.serverInfoDialog:after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: white;
  position: absolute;
  top: -6px;
  right: 12px;
  transform: rotate(45deg);
}
.serverinfoLayer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(33 33 33 / 34%);
}
.serverInfoDialog p {
  margin: 0;
  padding: 0px 16px 10px 16px;
  padding-bottom: 0;
  word-break: break-word;
  white-space: pre-wrap;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}
.serviceinfoFooter {
  min-height: 48px;
  display: flex;
  flex-direction: row;
  place-content: flex-end;
  padding: 0 12px;
  align-items: center;
}
.serverInfoClose {
  min-width: 80px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  background-color: green;
  color: white;
  border-radius: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
} 
@media only screen and (max-width: 767px) { 
  .serverInfoDialog {
    width: 300px;
  }
  .serverInfoDialog p {
    font-size: 14px;
  }
  .serverInfoClose {
    line-height: 26px;
    font-size: 14px;
  }
}
/* service info Dialog Ends*/
/*****----- subject colors & font ----******/
@font-face {
  font-family: 'subject';
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i[class^="subject-"], i[class*=" subject-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'subject' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.subject_icon i {
  font-size: 14px !important;
  display: block;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
}
.subject-malayalam:before {
  content: "\e906";
  color: #fff;
}
.subject-telugu:before {
  content: "\e90e";
  color: #fff;
}
.subject-arabic:before {
  content: "\e926";
  color: #fff;
}
.subject-storiesrhymes:before {
  content: "\e900";
  color: #fff;
}
.subject-civics:before {
  content: "\e901";
  color: #fff;
}
.subject-nextitskillslinux:before {
  content: "\e902";
  color: #fff;
}
.subject-science:before {
  content: "\e903";
  color: #fff;
}
.subject-generalscience:before {
  content: "\e904";
  color: #fff;
}
.subject-mechanic:before {
  content: "\e905";
  color: #fff;
}
.subject-sciencencert:before {
  content: "\e907";
  color: #fff;
}
.subject-socialscience:before {
  content: "\e908";
  color: #fff;
}
.subject-biology:before {
  content: "\e909";
  color: #fff;
}
.subject-physicssolutions:before {
  content: "\e90a";
  color: #fff;
}
.subject-history:before {
  content: "\e90b";
  color: #fff;
}
.subject-linux:before {
  content: "\e90c";
  color: #fff;
}
.subject-yoga:before {
  content: "\e90d";
  color: #fff;
}
.subject-mathssolutions:before {
  content: "\e90f";
  color: #fff;
}
.subject-mysubjects:before {
  content: "\e910";
  color: #fff;
}
.subject-chemistrysolutions:before {
  content: "\e911";
  color: #fff;
}
.subject-geography:before {
  content: "\e912";
  color: #fff;
}
.subject-abc:before {
  content: "\e913";
  color: #fff;
}
.subject-englishwritingskills:before {
  content: "\e914";
  color: #fff;
}
.subject-grosmotorskills:before {
  content: "\e915";
  color: #fff;
}
.subject-businessmathematics:before {
  content: "\e916";
  color: #fff;
}
.subject-economicsncert:before {
  content: "\e917";
  color: #fff;
}
.subject-storiesrhyms:before {
  content: "\e918";
  color: #fff;
}
.subject-nextitskillswindows:before {
  content: "\e919";
  color: #fff;
}
.subject-chemistry:before {
  content: "\e91a";
  color: #fff;
}
.subject-accountancy:before {
  content: "\e91b";
  color: #fff;
}
.subject-biotechnology:before {
  content: "\e91c";
  color: #fff;
}
.subject-zoology:before {
  content: "\e91d";
  color: #fff;
}
.subject-biologyncert:before {
  content: "\e91e";
  color: #fff;
}
.subject-hindipoems:before {
  content: "\e91f";
  color: #fff;
}
.subject-standardbooks:before {
  content: "\e920";
  color: #fff;
}
.subject-commerce:before {
  content: "\e921";
  color: #fff;
}
.subject-windows:before {
  content: "\e922";
  color: #fff;
}
.subject-sciencesolutions:before {
  content: "\e923";
  color: #fff;
}
.subject-english:before {
  content: "\e924";
  color: #fff;
}
.subject-phychology:before {
  content: "\e925";
  color: #fff;
}
.subject-sessionlist:before {
  content: "\e927";
  color: #fff;
}
.subject-hindisaral:before {
  content: "\e928";
  color: #fff;
}
.subject-maths:before,
.subject-mathematics:before {
  content: "\e929";
  color: #fff;
}
.subject-environmentalscience:before {
  content: "\e92a";
  color: #fff;
}
.subject-engineeringgraphics:before {
  content: "\e92b";
  color: #fff;
}
.subject-finearts:before {
  content: "\e92c";
  color: #fff;
}
.subject-generalmaths:before {
  content: "\e92d";
  color: #fff;
}
.subject-sociology:before {
  content: "\e92e";
  color: #fff;
}
.subject-englishgrammar:before {
  content: "\e92f";
  color: #fff;
}
.subject-phonetics:before {
  content: "\e930";
  color: #fff;
}
.subject-hindi:before {
  content: "\e931";
  color: #fff;
}
.subject-stories:before {
  content: "\e932";
  color: #fff;
}
.subject-monthlybooks:before {
  content: "\e933";
  color: #fff;
}
.subject-finemotorskills:before {
  content: "\e934";
  color: #fff;
}
.subject-biologysolutions:before {
  content: "\e935";
  color: #fff;
}
.subject-economics:before {
  content: "\e936";
  color: #fff;
}
.subject-physicsncert:before {
  content: "\e937";
  color: #fff;
}
.subject-generalknowledge:before {
  content: "\e938";
  color: #fff;
}
.subject-politicalscience:before {
  content: "\e939";
  color: #fff;
}
.subject-social:before {
  content: "\e93a";
  color: #fff;
}
.subject-lifescience:before {
  content: "\e93b";
  color: #fff;
}
.subject-physicaleducation:before {
  content: "\e93c";
  color: #fff;
}
.subject-writingskills:before {
  content: "\e93d";
  color: #fff;
}
.subject-chemistryncert:before {
  content: "\e93e";
  color: #fff;
}
.subject-craft:before {
  content: "\e93f";
  color: #fff;
}
.subject-sanskrit:before {
  content: "\e940";
  color: #fff;
}
.subject-evs:before {
  content: "\e941";
  color: #fff;
}
.subject-businessstudies:before {
  content: "\e942";
  color: #fff;
}
.subject-botany:before {
  content: "\e943";
  color: #fff;
}
.subject-rajasthanadhyayan:before {
  content: "\e944";
  color: #fff;
}
.subject-computerscience:before {
  content: "\e945";
  color: #fff;
}
.subject-fashionstudies:before {
  content: "\e946";
  color: #fff;
}
.subject-evm:before {
  content: "\e947";
  color: #fff;
}
.subject-art:before {
  content: "\e948";
  color: #fff;
}
.subject-physics:before {
  content: "\e949";
  color: #fff;
}
.subject-independenttitles:before {
  content: "\e94a";
  color: #fff;
}

/***** Subject Colors start *******/
/******

Defined subject colors & subject names --
electric-purple:  Maths,Mathslab,Business Mathematics
crusta: accountancy,generalknowledge,politicalscience
lime-green: science,evs,sciencelab,chemistry,biotechnology,technology,generalscience,lifescience,botany,biology,physics,psychology,zoology
bright-sun: environmentalscience
medium-turquoise: civics
medium-purple: history,physicaleducation
cornflower-blue: english,englishgrammar,englishlab,englishliterature,englishv2,englishv3
deep-sky-blue: englishwritingskills,writingskills,englishwriting
dark-turquoise: computerscience,computersandcommunicationtechnology,sanskrit
hot-pink: statistics,hindi,hindise,hindipoems,hindigrammar,hindisaral
shakespeare: arabic
dodger-blue: telugu
light-slate-blue: finearts
chateau-green: geography
brightSun: economics,fashionstudies
brink-pink: social, yoga, linux, nextitskillslinux, nextitskillswindows, windows, socialscience, sociology, humanities, commerce
  
*****/
.subject_icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
}
.subject_icon img {
  width: 20px;
  display: block;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
}
.subject_icon .icon_letter {
  font-size: 20px;
  font-size: 2rem;
  color: var(--secondary-text-color);
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.subject_icon i[class*="lms-"],
.subject_icon i[class*="material-icons"],
.subject_icon i[class*="fa"] {
  font-size: 20px;
  font-size: 2rem;
  color: var(--secondary-text-color);
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.subject_icon.size_56 {
  width: 56px !important;
  height: 56px !important;
}
.subject_icon.size_56 img{
  width: 28px;
}
.subject_icon.size_48 {
  width: 48px !important;
  height: 48px !important;
}
.subject_icon.size_48 i[class*="lms-"] {
  font-size: 24px;
  font-size: 2.4rem;
}
.subject_icon.size_48 i[class*="material-icons"],
.subject_icon.size_48 i[class*="fa"] {
  font-size: 24px;
  font-size: 2.4rem;
}
.subject_icon.size_48 .icon_letter {
  font-size: 24px;
  font-size: 2.4rem;
}
.subject_icon.size_40 {
  width: 40px !important;
  height: 40px !important;
}
.subject_icon.size_36 i[class*="lms-"] {
  font-size: 20px;
}
.subject_icon.size_36 {
  width: 36px !important;
  height: 36px !important;
}
.subject_icon.size_36 i[class*="lms-"] {
  font-size: 20px;
  font-size: 2rem;
}
.subject_icon.size_36 i[class*="material-icons"],
.subject_icon.size_36 i[class*="fa"] {
  font-size: 24px;
  font-size: 2.4rem;
}
.subject_icon.size_36 .icon_letter {
  font-size: 14px;
}
.subject_icon.size_32 img {
  width: 16px;
}
.subject_icon.size_32 {
  width: 32px !important;
  height: 32px !important;
}
.subject_icon.size_32 i[class*="lms-"] {
  font-size: 16px;
}
.subject_icon.size_32 i[class*="material-icons"],
.subject_icon.size_32 i[class*="fa"] {
  font-size: 20px;
}
.subject_icon.size_32 .icon_letter {
  font-size: 14px;
}
.subject_icon.size_28 {
  width: 28px !important;
  height: 28px !important;
}
.subject_icon.size_28 i[class*="lms-"] {
  font-size: 14px;
  font-size: 1.4rem;
}
.subject_icon.size_28 i[class*="material-icons"],
.subject_icon.size_28 i[class*="fa"] {
  font-size: 18px;
}
.subject_icon.size_28 .icon_letter {
  font-size: 14px;
}
.subject_icon.size_28 img {
  width: 16px;
}

.subject_icon.size_24 {
  width: 24px !important;
  height: 24px !important;
}
.subject_icon.size_24 i[class*="lms-"] {
  font-size: 14px;
  font-size: 1.4rem;
}
.subject_icon.size_24 i[class*="material-icons"],
.subject_icon.size_24 i[class*="fa"] {
  font-size: 18px;
  font-size: 1.8rem;
}
.subject_icon.size_24 .icon_letter {
  font-size: 14px;
  font-size: 1.4rem;
}
:root {
	--electric-purple: #C86AF7;						/****-- Maths,Mathslab,Business Mathematics -- ***/
	--electric-purple24: rgba(200,106,247,0.24);
	--crusta: #F68E4D;								/*** -- accountancy,generalknowledge,politicalscience -- ***/
	--crusta24: rgba(246,142,77,0.24);
	--lime-green: #38D04F;							/*** -- science,evs,sciencelab,chemistry,biotechnology,technology,generalscience,lifescience,botany,biology,physics,psychology,zoology -- ***/
	--lime-green24: rgba(56,208,79,0.24);
	--bright-sun: #e0bd2e;							/*** -- environmentalscience -- ***/
	--bright-sun24: rgba(224,189,46,0.24);
	--brink-pink: #FE7A81;							/*** -- social, yoga, linux, nextitskillslinux, nextitskillswindows, windows, socialscience, sociology, humanities, commerce -- ***/
	--brink-pink24: rgba(254,122,129,0.24);
	--medium-turquoise: #48CEB5;					/*** -- civics -- ***/
	--medium-turquoise24: rgba(72,206,181,0.24);
	--medium-purple:  #A175E8;						/*** -- history,physicaleducation -- ***/
	--medium-purple24:  rgba(161,117,232,0.24);
	--cornflower-blue: #6B86FA;						/*** -- english,englishgrammar,englishlab,englishliterature,englishv2,englishv3 -- ***/
	--cornflower-blue24: rgba(107,134,250,0.24);
	--deep-sky-blue: #09BBEE;						/*** -- englishwritingskills,writingskills,englishwriting -- ***/
	--deep-sky-blue24: rgba(9,187,238,0.24);
	--dark-turquoise: #00CEE5;						/*** -- computerscience,computersandcommunicationtechnology,sanskrit -- ***/
	--dark-turquoise24: rgba(0,206,229,0.24);
	--hot-pink: #F45FBB;							/*** -- statistics,hindi,hindise,hindipoems,hindigrammar,hindisaral -- ***/
	--hot-pink24:  rgba(244,95,187,0.24);
	--shakespeare: #58A0B7;							/*** -- arabic -- ***/
	--shakespeare24: rgba(88,160,183,0.24);
	--dodger-blue: #3C95F6;							/*** -- telugu -- ***/
	--dodger-blue24: rgba(60,149,246,0.24);
	--light-slate-blue: #8D8FFE;					/*** -- finearts -- ***/
	--light-slate-blue24: rgba(141,143,254,0.24);
	--chateau-green: #36AE51;						/*** -- geography -- ***/
	--chateau-green24: rgba(54,174,81,0.24);
	--brightSun: #F2B52A;							/*** -- economics,fashionstudies -- ***/
	--brightSun24: rgba(242,181,42,0.24);
	--defaultColor: #8E98A9;						/*** -- Others -- ***/
	--defaultColor24: rgba(142,152,169,0.24);
}
/* subject colors */
.subject_term1 {
  background: #e91e63;
  background: -webkit-radial-gradient(center, #e91e63, #ee4c83);
  background: -moz-radial-gradient(center, #e91e63, #ee4c83);
  background: radial-gradient(ellipse at center, #e91e63, #ee4c83);
}

.subject_color_term1 {
  background: #ee4c83 !important;
}
.subject_lightcolor_term1 {
  background: #ee4c831a !important;
}
.border_color_term1{
	border-color: #ee4c83 !important;
}

.subject_term2 {
  background: #e91e63;
  background: -webkit-radial-gradient(center, #e91e63, #ee4c83);
  background: -moz-radial-gradient(center, #e91e63, #ee4c83);
  background: radial-gradient(ellipse at center, #e91e63, #ee4c83);
}
.border_color_term2{
	border-color: #e91e63 !important;
}
.subject_color_term2 {
  background: #ee4c83 !important;
}
.subject_lightcolor_term2 {
  background: #ee4c831a !important;
}

.subject_term3 {
  background: #e91e63;
  background: -webkit-radial-gradient(center, #e91e63, #ee4c83);
  background: -moz-radial-gradient(center, #e91e63, #ee4c83);
  background: radial-gradient(ellipse at center, #e91e63, #ee4c83);
}
.border_color_term3 {
	border-color: #e91e63 !important;
}
.subject_color_term3 {
  background: #ee4c83 !important;
}
.subject_lightcolor_term3 {
  background: #ee4c831a !important;
}

.subject_maths {
  background: var(--electric-purple);
}
.border_color_maths{
	border-color: var(--electric-purple24) !important;
}
.subject_color_maths {
  background: var(--electric-purple) !important;
}
.subject_lightcolor_maths {
  background: var(--electric-purple24) !important;
}
.subject_mathematics {
  background: var(--electric-purple);
}
.border_color_mathematics{
	border-color: var(--electric-purple24) !important;
}
.subject_color_mathematics {
  background: var(--electric-purple) !important;
}
.subject_lightcolor_mathematics {
  background: var(--electric-purple24) !important;
}


.subject_businessmathematics {
  background: var(--electric-purple);
}
.border_color_businessmathematics{
	border-color: var(--electric-purple24) !important;
}
.subject_color_businessmathematics {
  background: var(--electric-purple) !important;
}
.subject_lightcolor_businessmathematics {
  background: var(--electric-purple24) !important;
}

.subject_mathslab {
  background: var(--electric-purple);
}
.border_color_mathslab {
	border-color: var(--electric-purple24) !important;
}
.subject_color_mathslab {
  background: var(--electric-purple) !important;
}
.subject_lightcolor_mathslab {
  background: var(--electric-purple24) !important;
}

.subject_accountancy {
  background: var(--crusta);
}
.border_color_accountancy {
	border-color: var(--crusta24) !important;
}
.subject_color_accountancy {
  background: var(--crusta) !important;
}
.subject_lightcolor_accountancy {
  background: var(--crusta24) !important;
}

.subject_science {
  background: var(--lime-green);
}
.border_color_science {
	border-color: var(--lime-green24) !important;
}
.subject_color_science {
  background: var(--lime-green) !important;
}
.subject_lightcolor_science {
  background: rgba(56,208,79,0.24) !important;
}

.subject_stories {
  background: #00e5ff;
}
.border_color_stories {
	border-color: #00e5ff !important;
}
.subject_color_stories {
  background: #0000ff !important;
}
.subject_lightcolor_stories {
  background: #0000ff1a !important;
}

.subject_environmentalscience {
  background: var(--bright-sun);
}
.border_color_environmentalscience {
	border-color: var(--bright-sun24)!important;
}
.subject_color_environmentalscience {
  background: var(--bright-sun) !important;
}
.subject_lightcolor_environmentalscience {
  background: var(--bright-sun24) !important;
}

.subject_evs {
  background: var(--lime-green);
}
.border_color_evs {
	border-color: var(--lime-green24) !important;
}
.subject_color_evs {
  background: var(--lime-green) !important;
}
.subject_lightcolor_evs {
  background: var(--lime-green24) !important;
}

.subject_sciencelab {
  background: var(--lime-green);
}
.border_color_sciencelab {
	border-color: var(--lime-green24) !important;
}
.subject_color_sciencelab {
  background: var(--lime-green) !important;
}
.subject_lightcolor_sciencelab {
  background: var(--lime-green24) !important;
}

.subject_chemistry {
  background: var(--lime-green);
}
.border_color_chemistry {
	border-color: var(--lime-green24) !important;
}
.subject_color_chemistry {
  background: var(--lime-green) !important;
}

.subject_lightcolor_chemistry {
  background: var(--lime-green24) !important;
}

.subject_civics {
  background: var(--medium-turquoise);
}
.border_color_civics {
	border-color: var(--medium-turquoise24) !important;
}
.subject_color_civics {
  background: var(--medium-turquoise) !important;
}
.subject_lightcolor_civics {
  background: var(--medium-turquoise24) !important;
}

.subject_social {
  background: var(--brink-pink);
}
.border_color_social {
	border-color: var(--brink-pink24) !important;
}
.subject_color_social {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_social {
  background: var(--brink-pink24) !important;
}

.subject_generalknowledge {
  background: var(--crusta);
}
.border_color_generalknowledge {
	border-color: var(--crusta24) !important;
}
.subject_color_generalknowledge {
  background: var(--crusta) !important;
}
.subject_lightcolor_generalknowledge {
  background: var(--crusta24) !important;
}

.subject_biotechnology {
  background: var(--lime-green);
}
.border_color_biotechnology {
	border-color: var(--lime-green24) !important;
}
.subject_color_biotechnology {
  background: var(--lime-green) !important;
}

.subject_lightcolor_biotechnology {
  background: var(--lime-green24) !important;
}

.subject_technology {
  background: var(--lime-green);
}
.border_color_technology {
	border-color: var(--lime-green24) !important;
}
.subject_color_technology {
  background: var(--lime-green) !important;
}
.subject_lightcolor_technology {
  background: var(--lime-green24) !important;
}

.subject_generalscience {
  background: var(--lime-green);
}
.border_color_generalscience{
	border-color: var(--lime-green24) !important;
}
.subject_color_generalscience {
  background: var(--lime-green) !important;
}
.subject_lightcolor_generalscience {
  background: var(--lime-green24) !important;
}

.subject_lifescience {
  background: var(--lime-green);
}
.border_color_lifescience {
	border-color: var(--lime-green24) !important;
}
.subject_color_lifescience {
  background: var(--lime-green) !important;
}
.subject_lightcolor_lifescience {
  background: var(--lime-green24) !important;
}

.subject_history {
  background: var(--medium-purple);
}
.border_color_history {
	border-color: var(--medium-purple24) !important;
}
.subject_color_history {
  background: var(--medium-purple) !important;
}
.subject_lightcolor_history {
  background: var(--medium-purple24) !important;
}

.subject_botany {
  background: var(--lime-green);
}
.border_color_botany {
	border-color: var(--lime-green24) !important;
}
.subject_color_botany {
  background: var(--lime-green) !important;
}
.subject_lightcolor_botany {
  background: var(--lime-green24) !important;
}

.subject_yoga {
  background: var(--brink-pink);
}
.border_color_yoga {
	border-color: var(--brink-pink24) !important;
}
.subject_color_yoga {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_yoga {
  background: var(--brink-pink24) !important;
}

.subject_linux {
  background: var(--brink-pink);
}
.border_color_linux {
	border-color: var(--brink-pink24) !important;
}
.subject_color_linux {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_linux {
  background: var(--brink-pink24) !important;
}

.subject_nextitskillslinux {
  background: var(--brink-pink);
}
.border_color_nextitskillslinux {
	border-color: var(--brink-pink24) !important;
}
.subject_color_nextitskillslinux {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_nextitskillslinux {
  background: var(--brink-pink24) !important;
}

.subject_nextitskillswindows {
  background: var(--brink-pink);
}
.border_color_nextitskillswindows {
	border-color: var(--brink-pink24) !important;
}
.subject_color_nextitskillswindows {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_nextitskillswindows {
  background: var(--brink-pink24) !important;
}

.subject_windows {
  background: var(--brink-pink);
}
.border_color_windows {
	border-color: var(--brink-pink24) !important;
}
.subject_color_windows {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_windows {
  background: var(--brink-pink24) !important;
}

.subject_socialscience {
  background: var(--brink-pink);
}
.border_color_socialscience {
	border-color: var(--brink-pink24) !important;
}
.subject_color_socialscience {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_socialscience {
  background: var(--brink-pink24) !important;
}

.subject_geography {
  background: var(--chateau-green);
}
.border_color_geography {
	border-color: var(--chateau-green24) !important;
}
.subject_color_geography {
  background: var(--chateau-green) !important;
}
.subject_lightcolor_geography {
  background: var(--chateau-green24) !important;
}

.subject_sociology {
  background: var(--brink-pink);
}
.border_color_sociology {
	border-color: var(--brink-pink24) !important;
}
.subject_color_sociology {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_sociology {
  background: var(--brink-pink24) !important;
}

.subject_politicalscience {
  background: var(--crusta);
}
.border_color_politicalscience {
	border-color: var(--crusta24) !important;
}
.subject_color_politicalscience {
  background: var(--crusta) !important;
}
.subject_lightcolor_politicalscience {
  background: var(--crusta24) !important;
}

.subject_humanities {
  background: var(--brink-pink);
}
.border_color_humanities {
	border-color: var(--brink-pink24) !important;
}
.subject_color_humanities {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_humanities {
  background: var(--brink-pink24) !important;
}

.subject_computerscience {
  background: var(--dark-turquoise);
}
.border_color_computerscience {
	border-color: var(--dark-turquoise24) !important;
}
.subject_color_computerscience {
  background: var(--dark-turquoise) !important;
}
.subject_lightcolor_computerscience {
  background: var(--dark-turquoise24) !important;
}

.subject_computersandcommunicationtechnology {
  background: var(--dark-turquoise);
}
.border_color_computersandcommunicationtechnology {
	border-color: var(--dark-turquoise24) !important;
}
.subject_color_computersandcommunicationtechnology {
  background: var(--dark-turquoise) !important;
}
.subject_lightcolor_computersandcommunicationtechnology {
  background: var(--dark-turquoise24) !important;
}

.subject_biology {
  background: var(--lime-green);
}
.border_color_biology {
	border-color: var(--lime-green24) !important;
}
.subject_color_biology {
  background: var(--lime-green) !important;
}
.subject_lightcolor_biology {
  background: var(--lime-green24) !important;
}

.subject_businessstudies {
  background: #ffc000;
}
.border_color_businessstudies {
	border-color: rgba(255,192,0,0.24) !important;
}
.subject_color_businessstudies {
  background: #ffc000 !important;
}
.subject_lightcolor_businessstudies {
  background: rgba(255,192,0,0.24) !important;
}

.subject_statistics {
  background: var(--hot-pink);
}
.border_color_statistics {
	border-color: var(--hot-pink24) !important;
}
.subject_color_statistics {
  background: var(--hot-pink) !important;
}
.subject_lightcolor_statistics {
  background: var(--hot-pink24) !important;
}

.subject_physics {
  background: var(--lime-green);
}
.border_color_physics {
  border-color: var(--lime-green24) !important;
}
.subject_color_physics {
  background: var(--lime-green) !important;
}
.subject_lightcolor_physics {
  background: var(--lime-green24) !important;
}

.subject_psychology {
  background: var(--lime-green);
}
.border_color_psychology {
	border-color: var(--lime-green24) !important;
}
.subject_color_psychology {
  background: var(--lime-green) !important;
}
.subject_lightcolor_psychology {
  background: var(--lime-green24) !important;
}

.subject_commerce {
  background: var(--brink-pink);
}
.border_color_commerce {
	border-color: var(--brink-pink24) !important;
}
.subject_color_commerce {
  background: var(--brink-pink) !important;
}
.subject_lightcolor_commerce {
  background: var(--brink-pink24) !important;
}

.subject_economics {
  background: var(--brightSun);
}
.border_color_economics {
	border-color: var(--brightSun24) !important;
}
.subject_color_economics {
  background: var(--brightSun) !important;
}
.subject_lightcolor_economics {
  background: var(--brightSun24) !important;
}

.subject_fashionstudies {
  background: var(--brightSun);
}
.border_color_fashionstudies{
	border-color: var(--brightSun24) !important;
}
.subject_color_fashionstudies {
  background: var(--brightSun) !important;
}
.subject_lightcolor_fashionstudies {
  background: var(--brightSun24) !important;
}

.subject_english {
  background: var(--cornflower-blue);
}
.border_color_english {
	border-color: var(--cornflower-blue24) !important;
}
.subject_color_english {
  background: var(--cornflower-blue) !important;
}
.subject_lightcolor_english {
  background: var(--cornflower-blue24) !important;
}

.subject_englishwritingskills {
  background: var(--deep-sky-blue);
}
.border_color_englishwritingskills {
	border-color: var(--deep-sky-blue24) !important;
}
.subject_color_englishwritingskills {
  background: var(--deep-sky-blue) !important;
}
.subject_lightcolor_englishwritingskills {
  background: var(--deep-sky-blue24) !important;
}

.subject_englishgrammar {
  background: var(--cornflower-blue);
}
.border_color_englishgrammar {
	border-color: var(--cornflower-blue24) !important;
}
.subject_color_englishgrammar {
  background: var(--cornflower-blue) !important;
}
.subject_lightcolor_englishgrammar {
  background: var(--cornflower-blue24) !important;
}

.subject_englishlab {
  background: var(--cornflower-blue);
}
.border_color_englishlab {
	border-color: var(--cornflower-blue24) !important;
}
.subject_color_englishlab {
  background: var(--cornflower-blue) !important;
}
.subject_lightcolor_englishlab {
  background: var(--cornflower-blue24) !important;
}

.subject_writingskills {
  background: var(--deep-sky-blue);
}
.border_color_writingskills {
	border-color: var(--deep-sky-blue24) !important;
}
.subject_color_writingskills {
  background: var(--deep-sky-blue) !important;
}
.subject_lightcolor_writingskills {
  background: var(--deep-sky-blue24) !important;
}

.subject_phonetics {
  background: #00BFFF;
}
.border_color_phonetics {
	border-color: rgba(0,191,255,0.24) !important;
}
.subject_color_phonetics {
  background: #00BFFF !important;
}
.subject_lightcolor_phonetics {
  background: rgba(0,191,255,0.24) !important;
}

.subject_englishliterature {
  background: var(--cornflower-blue);
}
.border_color_englishliterature {
	border-color: var(--cornflower-blue24) !important;
}
.subject_color_englishliterature {
  background: var(--cornflower-blue) !important;
}
.subject_lightcolor_englishliterature {
  background: var(--cornflower-blue24) !important;
}

.subject_englishwriting {
  background: var(--deep-sky-blue);
}
.border_color_englishwriting {
	border-color: var(--deep-sky-blue24) !important;
}
.subject_color_englishwriting {
  background: var(--deep-sky-blue) !important;
}
.subject_lightcolor_englishwriting {
  background: var(--deep-sky-blue24) !important;
}

.subject_englishv2 {
  background: var(--cornflower-blue);
}
.border_color_englishv2 {
	border-color: var(--cornflower-blue24) !important;
}
.subject_color_englishv2 {
  background: var(--cornflower-blue) !important;
}
.subject_lightcolor_englishv2 {
  background: var(--cornflower-blue24) !important;
}

.subject_englishv3 {
  background: var(--cornflower-blue);
}
.border_color_englishv3 {
	border-color: var(--cornflower-blue24) !important;
}
.subject_color_englishv3 {
  background: var(--cornflower-blue) !important;
}
.subject_lightcolor_englishv3 {
  background: var(--cornflower-blue24) !important;
}

.subject_hindi {
  background: var(--hot-pink);
}
.border_color_hindi {
	border-color: var(--hot-pink24) !important;
}
.subject_color_hindi {
  background: var(--hot-pink) !important;
}
.subject_lightcolor_hindi {
  background: var(--hot-pink24) !important;
}

.subject_hindise {
  background: var(--hot-pink);
}
.border_color_hindise {
	border-color: var(--hot-pink24) !important;
}
.subject_color_hindise {
  background: var(--hot-pink) !important;
}
.subject_lightcolor_hindise {
  background: var(--hot-pink24) !important;
}

.subject_hindipoems {
  background: var(--hot-pink);
}
.border_color_hindipoems {
	border-color: var(--hot-pink24) !important;
}
.subject_color_hindipoems {
  background: var(--hot-pink) !important;
}
.subject_lightcolor_hindipoems {
  background: var(--hot-pink24) !important;
}

.subject_hindigrammar {
  background: var(--hot-pink);
}
.border_color_hindigrammar {
	border-color: var(--hot-pink24) !important;
}
.subject_color_hindigrammar {
  background: var(--hot-pink) !important;
}
.subject_lightcolor_hindigrammar {
  background: var(--hot-pink24) !important;
}

.subject_hindisaral {
  background: var(--hot-pink);
}
.border_color_hindisaral {
	border-color: var(--hot-pink24) !important;
}
.subject_color_hindisaral {
  background: var(--hot-pink) !important;
}
.subject_lightcolor_hindisaral {
  background: var(--hot-pink24) !important;
}

.subject_sanskrit {
  background: var(--dark-turquoise);
}
.border_color_sanskrit {
	border-color: var(--dark-turquoise24) !important;
}
.subject_color_sanskrit {
  background: var(--dark-turquoise) !important;
}
.subject_lightcolor_sanskrit {
  background: var(--dark-turquoise24) !important;
}

.subject_zoology {
  background: var(--lime-green);
}
.border_color_zoology {
	border-color: var(--lime-green24) !important;
}
.subject_color_zoology {
  background: var(--lime-green) !important;
}
.subject_lightcolor_zoology {
  background: var(--lime-green24) !important;
}

.subject_physicaleducation {
  background: var(--medium-purple);
}
.border_color_physicaleducation {
	border-color: var(--medium-purple24) !important;
}
.subject_color_physicaleducation {
  background: var(--medium-purple) !important;
}
.subject_lightcolor_physicaleducation {
  background: var(--medium-purple24) !important;
}

.subject_healthandphysicaleducation {
  background: var(--medium-purple);
}
.border_color_healthandphysicaleducation {
	border-color: var(--medium-purple24) !important;
}
.subject_color_healthandphysicaleducation {
  background: var(--medium-purple) !important;
}
.subject_lightcolor_healthandphysicaleducation {
  background: var(--medium-purple24) !important;
}

.subject_arabic {
  background: var(--shakespeare);
}
.border_color_arabic {
	border-color: var(--shakespeare24)!important;
}
.subject_color_arabic {
  background: var(--shakespeare) !important;
}
.subject_lightcolor_arabic {
  background: var(--shakespeare24) !important;
}

.subject_telugu {
  background: var(--dodger-blue);
}
.border_color_telugu{
	border-color: var(--dodger-blue24) !important;
}
.subject_color_telugu {
  background: var(--dodger-blue) !important;
}
.subject_lightcolor_telugu {
  background: var(--dodger-blue24) !important;
}

.subject_malayalam {
  background: var(--dodger-blue);
}
.border_color_malayalam{
	border-color: var(--dodger-blue24) !important;
}
.subject_color_malayalam {
  background: var(--dodger-blue) !important;
}
.subject_lightcolor_malayalam {
  background: var(--dodger-blue24) !important;
}

.subject_finearts {
  background: var(--light-slate-blue);
}
.border_color_finearts{
	border-color: var(--light-slate-blue24) !important;
}
.subject_color_finearts {
  background: var(--light-slate-blue) !important;
}
.subject_lightcolor_finearts {
  background: var(--light-slate-blue24) !important;
}

.subject_defaultsubject {
  background: #8E98A9;
}
.border_color_defaultsubject {
	border-color: var(--defaultColor24) !important;
}
.subject_color_defaultsubject {
  background: #8E98A9 !important;
}
.subject_lightcolor_defaultsubject {
  background: var(--defaultColor24) !important;
}
/* subject colors end*/


/***** Resource Fonts And Colors *****/

/*** ----- Resources font icons start --------*****/
@font-face {
  font-family: "lms";
  src: url(./fonts/lms.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
i[class*="lms-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lms" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lms-ic_olympiad:before {
  content: "\e924";
}
.lms-ic_competitive:before {
  content: "\e944";
}
.lms-ic_lab-icon:before {
  content: "\ea26";
}
.lms-ic_collections-icon:before,
.lms-ic_collections:before,
.lms-ic_collection:before {
  content: "\ea27";
}
.lms-ic_lecture-icon:before {
  content: "\ea2c";
}
.lms-ic_disable_rs:before {
  content: "\ea28";
  color: #f57f27;
}
.lms-ic_enable_rs:before {
  content: "\ea29";
  color: #80b241;
}
.lms-ic_import-session:before {
  content: "\ea2b";
  color: #81b214;
}
.lms-ic_teaching-plan-reports-icon:before {
  content: "\ea25";
  color: #81b214;
}
.lms-ic_analyticsSettingsIcon:before {
  content: "\ea1b";
  color: #81b214;
}
.lms-ic_go-to-gradebook-icon:before {
  content: "\ea1c";
}
.lms-ic_lessonplan-bulk-mapping:before {
  content: "\ea1d";
}
.lms-ic_lessonplan-day:before {
  content: "\ea1e";
}
.lms-ic_lessonplan-month:before {
  content: "\ea1f";
}
.lms-ic_lessonplan-week:before {
  content: "\ea20";
}
.lms-ic_llstutdent_deleted:before {
  content: "\ea21";
}
.lms-ic_next-academy:before {
  content: "\ea22";
}
.lms-ic_next_curriculum:before {
  content: "\ea23";
}
.lms-ic_postapprove:before {
  content: "\ea24";
}
.lms-ic_resourceapproval:before {
  content: "\ea1a";
}
.lms-ic_teachNext:before {
  content: "\ea19";
} 
.lms-ic_chapter-outline-icon:before {
  content: "\e9ee";
}
.lms-ic_teaching_plan_approval:before {
  content: "\e9ef";
}
.lms-ic_specificysession:before {
  content: "\e9f0";
}
.lms-ic_resource_availability:before {
  content: "\e9f1";
}
.lms-ic_properites:before {
  content: "\e9fc";
}
.lms-ic_nextsession:before {
  content: "\e9fd";
}
.lms-ic_lmsadd-to-session:before {
  content: "\e9fe";
}
.lms-ic_cardview:before {
  content: "\e9ff";
}
.lms-ic_analytics:before {
  content: "\ea00";
}
.lms-ic_nap:before {
  content: "\ea01";
}
.lms-ic_audioactivity:before,
.lms-ic_audio:before {
  content: "\ea02" !important;
}
.lms-ic_menuresources:before {
  content: "\ea03";
}
.lms-ic_toolquestion:before {
  content: "\ea04";
}
.lms-ic_other:before,
.lms-ic_others:before {
  content: "\ea05" !important;
}
.lms-ic_notesactivity:before,
.lms-ic_note:before,
.lms-ic_notes:before {
  content: "\ea06";
}
.lms-ic_learning:before {
  content: "\ea07";
}
.lms-ic_food:before {
  content: "\ea08";
}
.lms-ic_feed:before {
  content: "\ea09";
}
.lms-ic_courseplan:before {
  content: "\ea0a";
}
.lms-ic_toolclassroomactivity:before {
  content: "\ea0b";
}
.lms-ic_smart_goal:before {
  content: "\ea0c";
}
.lms-ic_delete:before {
  content: "\ea0d";
}
.lms-ic_restore:before {
  content: "\ea0e";
}
.lms-ic_standard:before {
  content: "\ea0f";
}
.lms-ic_resource_visibility:before {
  content: "\ea10";
}
.lms-ic_manage_tags:before {
  content: "\ea11";
}
.lms-ic_proctoring:before {
  content: "\ea12";
}
.lms-ic_listview-icon:before {
  content: "\ea13";
}
.lms-ic_create-resource:before {
  content: "\ea14";
}
.lms-ic_add-resource-library:before {
  content: "\ea15";
}
.lms-ic_evaluate_icon:before {
  content: "\ea16";
}
.lms-ic_evaluate_live_report:before {
  content: "\ea17";
}
.lms-ic_attendance-marked-icon:before {
  content: "\ea18";
  color: #349aff;
}
.lms-ic_questiontype:before {
  content: "\e9c2";
}
.lms-ic_examination:before {
  content: "\e9c3";
}
.lms-ic_activity-menu:before {
  content: "\e9c4";
}
.lms-ic_html:before,
.lms-ic_embed:before {
  content: "\e9be";
}
.lms-ic_web:before {
  content: "\e9b8";
}
.lms-ic_tools:before {
  content: "\e9b9";
}
.lms-ic_spreadsheet:before {
  content: "\e9ba";
}
.lms-ic_scorm:before {
  content: "\e9bb";
}
.lms-ic_QA_moderator:before {
  content: "\e9bc";
}
.lms-ic_QA_activity:before {
  content: "\e9bd";
}
.lms-ic_publish:before {
  content: "\e9c5";
}
.lms-ic_previoussession:before {
  content: "\e9c6";
}
.lms-ic_presentation:before {
  content: "\e9c7";
}
.lms-ic_notification:before {
  content: "\e9c8";
}
.lms-ic_markas_incomplete:before {
  content: "\e9c9";
}
.lms-ic_markas_complete:before {
  content: "\e9d5";
}
.lms-ic_examcorner-icon:before {
  content: "\e9f2";
}
.lms-ic_event:before {
  content: "\e9f3";
}
.lms-ic_document:before,
.lms-ic_docx:before,
.lms-ic_doc:before {
  content: "\e9f4";
}
.lms-ic_dashboard-qa:before {
  content: "\e9f5";
}
.lms-ic_createcourse:before {
  content: "\e9f6";
}
.lms-ic_coursesetting:before {
  content: "\e9f7";
}
.lms-ic_copyicon:before {
  content: "\e9f8";
}
.lms-ic_assessment:before {
  content: "\e9f9";
}
.lms-ic_adoptcourse:before {
  content: "\e9fa";
}
.lms-ic_addhomework:before {
  content: "\e9fb";
}

.lms-ic_explanations:before {
  content: "\e99b";
}
.lms-ic_others:before {
  content: "\e99c";
}
.lms-ic_examples:before {
  content: "\e9a2";
}
.lms-ic_subscription:before {
  content: "\e9a4";
}
.lms-ic_document:before {
  content: "\e9a5";
}
.lms-ic_experimentvideo:before {
  content: "\e9af";
  color: #17a6db;
}
.lms-ic_evaluate:before {
  content: "\e9b8";
}
.lms-ic_evaluate_live_report:before {
  content: "\e9b9";
}
.lms-ic_institutionbranch:before,
.lms-ic_Institutionbranch:before {
  content: "\e9ba";
}
.lms-ic_livelecture:before {
  content: "\e9b0";
}
.lms-ic_settingsproperties_grey:before {
  content: "\e9b1";
  color: #6d6d6d;
}
.lms-ic_specificsession_green:before {
  content: "\e9b2";
  color: var(--trinity-text-color);
}
.lms-ic_specificsession_gray:before {
  content: "\e9b3";
  color: #6d6d6d;
}
.lms-ic_close_icon_green:before {
  content: "\e9b4";
  color: var(--trinity-text-color);
}
.lms-ic_publish_icon:before {
  content: "\e9b5";
}
.lms-ic_copytosessionresources_green:before {
  content: "\e9b6";
  color: var(--trinity-text-color);
}
.lms-ic_copytosessionresources_grey:before {
  content: "\e9b7";
}
.lms-ic_add_homework:before {
  content: "\e9bf";
  color: #c44400;
}
.lms-ic_loop:before {
  content: "\e9c0";
}
.lms-ic_check_circle_outline:before {
  content: "\e9c1";
}
.lms-ic_voiceover_off:before {
  content: "\e9ca";
  color: #ff6800;
}
.lms-ic_random:before {
  content: "\e9cb";
}
.lms-ic_livemonitor:before {
  content: "\e9cc";
}
.lms-ic_visibiltiy_green_eye:before {
  content: "\e9cd";
  color: var(--trinity-text-color);
}
.lms-ic_merged:before {
  content: "\e9ce";
  color: #349aff;
}
.lms-ic_showadvance:before {
  content: "\e9cf";
}
.lms-ic_grid:before {
  content: "\e9d0";
  color: #6b6b6b;
}
.lms-ic_annotation_published:before {
  content: "\e9d1";
  color: #1e87ff;
}
.lms-ic_annotation_added:before {
  content: "\e9d2";
}
.lms-ic_allow_teacher:before {
  content: "\e9d3";
  color: #349aff;
}
.lms-ic_createpopquiz:before {
  content: "\e9d4";
}
.lms-ic_attendance_unmarked:before {
  content: "\e9d6";
  color: #f88d00;
}
.lms-ic_studentnew:before {
  content: "\e9d7";
  color: #b2b2b2;
}
.lms-ic_shareresource:before {
  content: "\e9d8";
}
.lms-ic_questionbulk_upload:before {
  content: "\e9d9";
}
.lms-ic_hand_raise_icon:before {
  content: "\e9da";
}
.lms-ic_shareresource_green:before {
  content: "\e9db";
  color: var(--trinity-text-color);
}
.lms-ic_liveleacture_blue:before {
  content: "\e9dc";
  color: #7377e1;
}
.lms-ic_video_camera:before,
.lms-ic_video:before {
  content: "\e9dd" !important;
}
.lms-ic_timetable_icon:before {
  content: "\e9de";
  color: #94c4e0;
}
.lms-ic_reports_green:before {
  content: "\e9df";
  color: var(--trinity-text-color);
}
.lms-ic_qa_new:before {
  content: "\e9e0";
  color: #a3d797;
}
.lms-ic_mycourses:before {
  content: "\e9e1";
}
.lms-ic_liveleactureblue:before {
  content: "\e9e2";
  color: #b2b5ee;
}
.lms-ic_chat_bubble_green:before {
  content: "\e9e3";
  color: var(--trinity-text-color);
}
.lms-ic_exercise:before,
.lms-ic_exercises:before,
.lms-ic_exercisetemplate:before {
  content: "\e9e4";
}
.lms-ic_file_upload:before {
  content: "\e9e5";
}
.lms-ic_video_call:before {
  content: "\e9e6";
}
.lms-ic_sync:before {
  content: "\e9e7";
  color: var(--trinity-text-color);
}
.lms-ic_settings:before {
  content: "\e9e8";
}
.lms-ic_sequence_green:before {
  content: "\e9e9";
}
.lms-ic_view_members:before {
  content: "\e9ea";
}
.lms-ic_summarynew:before {
  content: "\e9eb";
}
.lms-ic_book:before,
.lms-ic_textbook_activity:before {
  content: "\e9ec";
}
.lms-ic_open_book:before {
  content: "\e9ed";
}
.lms-ic_xls:before {
  content: "\e9a2";
}
.lms-ic_share:before {
  content: "\e9a3";
}
.lms-ic_colorpdf:before {
  content: "\e9a4";
}
.lms-ic_mp3:before {
  content: "\e9a5";
  /* color: #d95548; */
}
.lms-ic_rename:before {
  content: "\e9a6";
}
.lms-ic_move:before {
  content: "\e9a7";
}
.lms-ic_document:before {
  content: "\e9a8";
}
.lms-ic_uploadfile:before {
  content: "\e9a9";
}
.lms-ic_uploadfolder:before {
  content: "\e9aa";
}
.lms-ic_myfiles:before {
  content: "\e9ab";
}
.lms-ic_sharedwithme:before {
  content: "\e9ac";
}
.lms-ic_createnewfile:before {
  content: "\e9ad";
}
.lms-ic_createnewfolder:before {
  content: "\e9ae";
}

.lms-ic_student:before {
  content: "\e99a";
}
.lms-ic_moveresource:before {
  content: "\e99b";
}
.lms-ic_femaleicon:before {
  content: "\e99c";
}
.lms-ic_sequence:before {
  content: "\e99d";
}
.lms-ic_duetodays:before {
  content: "\e99e";
}
.lms-ic_completeds:before {
  content: "\e99f";
}
.lms-ic_duelater:before {
  content: "\e9a0";
}
.lms-ic_simulations:before {
  content: "\e98f";
}
.lms-ic_subjective_question:before {
  content: "\e990";
}
.lms-ic_objective_question:before {
  content: "\e991";
}
.lms-ic_classroom_activity:before {
  content: "\e992";
}
.lms-ic_activity_question:before {
  content: "\e993";
}
.lms-ic_create_testlet:before {
  content: "\e994";
}
.lms-ic_collection:before {
  content: "\e995";
}
.lms-ic_collection_template:before {
  content: "\e996";
}
.lms-ic_learning_outcome:before {
  content: "\e997";
}
.lms-ic_objective:before {
  content: "\e998";
}
.lms-ic_chapter_summarys:before {
  content: "\e999";
}
.lms-ic_globalresourcelibrary:before {
  content: "\e984";
}
.lms-ic_learningresources:before {
  content: "\e985";
}
.lms-ic_questionbank:before {
  content: "\e986";
}
.lms-ic_coursesettings:before {
  content: "\e987";
}
.lms-ic_courselevellibrary:before {
  content: "\e988";
}
.lms-ic_webreference:before {
  content: "\e989";
}
.lms-ic_sessionbreakup:before {
  content: "\e98a";
}
.lms-ic_chapters:before {
  content: "\e98b";
}
.lms-ic_addmoderator:before {
  content: "\e98c";
}
.lms-ic_addmembers:before {
  content: "\e98d";
}
.lms-ic_viewmembers:before {
  content: "\e98e";
}
.lms-ic_runningcourse:before {
  content: "\e95b";
}
.lms-ic_plannedcourse:before {
  content: "\e983";
}

.lms-ic_running_course:before {
  content: "\e951";
}
.lms-ic_recommand_read:before {
  content: "\e952";
}
.lms-ic_pre_read:before {
  content: "\e953";
}
.lms-ic_planned_course:before {
  content: "\e954";
}
.lms-ic_mannual_assignmen:before {
  content: "\e955";
}
.lms-ic_home:before {
  content: "\e956";
}
.lms-ic_extra_homework:before {
  content: "\e957";
}
.lms-ic_existing_assignments:before {
  content: "\e958";
}
.lms-ic_automatic_assignment:before {
  content: "\e959";
}
.lms-ic_adaptive_assignment:before {
  content: "\e95a";
}

.lms-ic_simulation:before {
  content: "\e94f";
}
.lms-ic_mindmap:before {
  content: "\e950";
}

.lms-ebook:before,
.lms-ic_ebook:before {
  content: "\ea2a";
}

.lms-ic_attendance:before {
  content: "\e946";
}

.lms-ic_browselibrary:before {
  content: "\e947";
}

.lms-ic_course:before {
  content: "\e948";
}

.lms-ic_department:before {
  content: "\e949";
}

.lms-ic_leave:before {
  content: "\e94a";
}

.lms-ic_profile:before {
  content: "\e94b";
}

.lms-ic_questionbank:before,
.lms-ic_questions:before {
  content: "\e94c";
}

.lms-ic_selfservice:before {
  content: "\e94d";
}

.lms-ic_staffdirectory:before {
  content: "\e94e";
}

.lms-ic_adaptive_assessment:before,
.lms-ic_multiirtassessment:before {
  content: "\e942";
}

.lms-ic_chapter_assessment:before {
  content: "\e943";
}

.lms-ic_quick_assessment:before {
  content: "\e945";
}

.lms-ic_course_book:before {
  content: "\e939";
}

.lms-ic_document:before {
  content: "\e93a";
}

.lms-ic_next_education:before,
.lms-ic_nexteducation:before {
  content: "\e93b";
}

.lms-ic_performance_analytics:before {
  content: "\e93c";
}

.lms-ic_presentation1:before {
  content: "\e93d";
}

.lms-ic_progress_analytics:before {
  content: "\e93e";
}

.lms-ic_resources_analytics:before {
  content: "\e93f";
}

.lms-ic_web_reference:before {
  content: "\e940";
}

.lms-ic_worksheet:before {
  content: "\e941";
}

.lms-labs:before,
.lms-ic_labs:before {
  content: "\e900";
}

.lms-assessments:before,
.lms-standard_assessments:before,
.lms-ic_assessments:before {
  content: "\e901";
}

.lms-asset:before,
.lms-ic_asset:before {
  content: "\e902";
}

.lms-reports:before,
.lms-ic_report:before {
  content: "\e903";
}

.lms-reports_all:before,
.lms-ic_reports_all:before {
  content: "\e904";
}

.lms-class_work_resources:before,
.lms-ic_classworkresources:before {
  content: "\e905";
}

.lms-home_work_resources:before,
.lms-ic_homeworkresources:before {
  content: "\e906";
}

.lms-concept_maps:before,
.lms-ic_concept_maps:before {
  content: "\e907";
}

.lms-chapter_summary:before,
.lms-ic_chaptersummary:before {
  content: "\e908";
}

.lms-experiment:before,
.lms-experiments:before,
.lms-ic_experiments:before,
.lms-ic_moduletemplate:before {
  content: "\e909";
}

.lms-grade:before,
.lms-ic_grade:before {
  content: "\e90a";
}

.lms-course_room:before,
.lms-ic_courseroom:before {
  content: "\e90b";
}

.lms-home:before {
  content: "\e90c";
}

.lms-lab:before,
.lms-ic_lab:before {
  content: "\e936";
}

.lms-mind_maps:before,
.lms-ic_mind_maps:before,
.lms-ic_mindmaps:before {
  content: "\e90e";
}

.lms-notes:before,
.lms-ic_notes:before {
  content: "\e90f";
}

.lms-online_tutor:before {
  content: "\e910";
}

.lms-online_tutoring:before {
  content: "\e911";
}

.lms-performance:before,
.lms-ic_performance:before {
  content: "\e912";
}

.lms-daywise_plan:before,
.lms-dayplan:before  {
  content: "\e913";
}

.lms-progress:before {
  content: "\e914";
}

.lms-projects:before {
  content: "\e915";
}

.lms-qa:before {
  content: "\e916";
}

.lms-resource:before,
.lms-ic_resource:before,
.lms-ic_lti:before {
  content: "\e917";
}

.lms-resource_usage:before,
.lms-ic_resourceusage:before {
  content: "\e918";
}

.lms-course_plan:before {
  content: "\e919";
}

.lms-slm:before,
.lms-ic_slm:before {
  content: "\e938";
}

.lms-social:before {
  content: "\e91b";
}

.lms-studyplan:before,
.lms-ic_studyplan:before {
  content: "\e91c";
}

.lms-ic_external_rec:before,
.lms-ic_mixed:before {
  content: "\e91d";
}

.lms-system_rec:before,
.lms-ic_system_recommended:before
 {
  content: "\e91e";
}

.lms-tlm:before {
  content: "\e937";
}

.lms-teacher_rec:before,
.lms-ic_teacher_recommended:before {
  content: "\e920";
}

.lms-home_work:before {
  content: "\e921";
}

.lms-time:before,
.lms-ic_time:before {
  content: "\e922";
}

.lms-time_report:before {
  content: "\e923";
}

.lms-ic_activity:before,
.lms-ic_activities:before,
.lms-ic_companion_activity:before {
  content: "\e90d";
}

.lms-ic_adaptive_reports:before {
  content: "\e91a";
}

.lms-ic_advanced:before {
  content: "\e91f";
}

.lms-ic_all_resources:before {
  content: "\e925";
}

.lms-ic_assessment_reports:before {
  content: "\e926";
}

.lms-ic_assessments:before {
  content: "\e927";
}

.lms-ic_assignment:before {
  content: "\e928";
}

.lms-ic_audio:before,
.lms-ic_swf:before {
  content: "\e929";
}

.lms-ic_audio_video:before {
  content: "\e92a";
}

.lms-ic_beginner:before {
  content: "\e92b";
}

.lms-ic_chapter_summary:before {
  content: "\e92c";
}

.lms-ic_class_report:before {
  content: "\e92d";
}

.lms-ic_class_work:before {
  content: "\e92e";
}

.lms-ic_course_plan:before {
  content: "\e92f";
}

.lms-ic_course_room:before {
  content: "\e930";
}

.lms-ic_daywise_plan:before {
  content: "\e931";
}

.lms-ic_documents:before {
  content: "\e932";
}

.lms-ic_exam_report:before {
  content: "\e933";
}

.lms-ic_experiment:before {
  content: "\e934";
}

.lms-ic_external_recommendations:before {
  content: "\e935";
}

.lms-ic_home_work:before {
  content: "\e95d";
}

.lms-ic_homework:before {
  content: "\e95e";
}

.lms-ic_homework_tracker:before {
  content: "\e95f";
}

.lms-ic_image:before,
.lms-ic_png:before,
.lms-ic_jpg:before,
.lms-ic_jpeg:before {
  content: "\e960";
}

.lms-ic_intermediate:before {
  content: "\e961";
}

.lms-ic_k-12_wiki:before {
  content: "\e962";
}

.lms-ic_mentored_courses:before {
  content: "\e963";
}

.lms-ic_my_resources:before {
  content: "\e964";
}

.lms-ic_next_education_resources:before {
  content: "\e965";
}

.lms-ic_next_studio:before {
  content: "\e966";
}

.lms-ic_next_tools:before {
  content: "\e967";
}

.lms-ic_future:before {
  content: "\e968";
}

.lms-ic_duetoday:before {
  content: "\e969";
}

.lms-ic_completed:before {
  content: "\e96a";
}

.lms-ic_pdf:before {
  content: "\e96b";
}

.lms-ic_ppt:before {
  content: "\e96c";
}

.lms-ic_qa_activity:before {
  content: "\e96d";
}

.lms-ic_qa:before {
  content: "\e96e";
}

.lms-ic_qa_forum:before {
  content: "\e96f";
}

.lms-ic_qa_moderator:before {
  content: "\e970";
}

.lms-ic_question_bank:before {
  content: "\e971";
}

.lms-ic_quick_links:before {
  content: "\e972";
}

.lms-ic_reports:before {
  content: "\e973";
}

.lms-ic_resource_bank:before {
  content: "\e974";
}

.lms-ic_resourses:before {
  content: "\e975";
}

.lms-ic_running_courses:before {
  content: "\e976";
}

.lms-ic_school_resources:before {
  content: "\e977";
}

.lms-ic_self_learning_module:before {
  content: "\e978";
}

.lms-ic_social:before {
  content: "\e979";
}

.lms-ic_student_reports:before {
  content: "\e97a";
}

.lms-ic_study_plan:before {
  content: "\e97b";
}

.lms-ic_superwised_couses:before {
  content: "\e97c";
}

.lms-ic_tasks:before {
  content: "\e97d";
}
.lms-ic_tools1:before {
  content: "\e97f";
}

.lms-ic_video:before {
  content: "\e980";
}

.lms-ic_whiteboard:before {
  content: "\e981";
}
.lms-ic_xls:before,
.lms-ic_spreadsheet:before,
.lms-ic_xlsx:before {
  content: "\e982";
}

.lms-ic_completed_tasks:before,
.lms-ic_overdue_tasks:before {
  content: "\e96a";
}

.lms-ic_duetoday_tasks:before {
  content: "\e969";
}

.lms-ic_future_tasks:before {
  content: "\e968";
}

.lms-ic_slm:before,
.lms-ic_exercise_slm:before,
.lms-ic_self_learning_module:before,
.lms-ic_excercisetemplates:before {
  content: "\e978";
}

.lms-ic_tlm:before,
.lms-ic_teacher_driven_module:before  {
  content: "\e97e";
}

.lms-ic_resourcebank:before {
  content: "\e974";
}

.lms-ic_presentation2:before {
  content: "\e96c";
}

.lms-ic_er:before {
  content: "\e935";
}

.lms-ic_assessment:before,
.lms-ic_practicetest:before,
.lms-ic_knowledgestateassessment:before {
  content: "\e927";
}

.lms-ic_assignments:before {
  content: "\e928";
}

.lms-ic_webreference:before {
  content: "\e940";
}

.lms-ic_coursebook:before {
  content: "\e939";
}

.lms-ic_quick:before {
  content: "\e945";
}

.lms-ic_chapter:before {
  content: "\e943";
}

.lms-ic_forum_creation:before {
  content: "\e95c";
}

.lms-wiki:before,
.lms-ic_wiki:before {
  content: "\e962";
}

.lms-ic_others:before {
  content: "\e91d";
}

.lms-ic_audiovideo:before {
  content: "\e92a";
}

/** Resources Colors ****/
.resource_color_explanations {
  color: #96d53e !important;
}
.resource_lightbg_explanations {
  background: rgba(150, 213, 62,0.2) !important;
}
.resource_bg_explanations {
  background: #96d53e !important;
}
.border_color_explanations {
  border-color: #96d53e !important;
}

.resource_color_examples {
  color: #fb987c !important;
}
.resource_lightbg_examples {
  background: rgba(251, 152, 1240.2) !important;
}
.resource_bg_examples {
  background: #fb987c !important;
}
.border_color_examples {
  border-color: #fb987c !important;
}

.resource_color_livelecture {
  color: #17A5D9 !important;
}
.resource_lightbg_livelecture {
  background: rgba(23, 165, 217,0.2) !important;
}
.resource_bg_livelecture {
  background: #17A5D9 !important;
}
.border_color_livelecture {
  border-color: #17A5D9 !important;
}

.resource_color_video {
  color: #2ca4e0 !important;
}
.resource_lightbg_video {
  background: rgba(44, 164, 224, 0.2) !important;
}
.resource_bg_video {
  background: #2ca4e0 !important;
}
.border_color_video{
  border-color: #2ca4e0 !important;
}

.resource_color_exercisetemplate,
.resource_color_exercise {
  color: #ab7efb !important;
}
.resource_lightbg_exercisetemplate,
.resource_lightbg_exercise {
  background: rgba(171, 126, 251, 0.2) !important;
}
.resource_bg_exercisetemplate,
.resource_bg_exercise {
  background: #ab7efb !important;
}
.border_color_exercisetemplate,
.border_color_exercise {
  border-color: #ab7efb !important;
}

.resource_color_audio {
  color: #2ca4e0 !important;
}

.resource_bg_audio {
  background: #2ca4e0 !important;
}
.resource_lightbg_audio {
  background: rgba(44, 164, 224, 0.2) !important;
}
.border_color_audio{
  border-color: #2ca4e0 !important;
}

.resource_color_swf {
  color: #2ca4e0 !important;
}

.resource_bg_swf {
  background: #2ca4e0 !important;
}
.border_color_swf{
  border-color: #2ca4e0 !important;
}

.resource_color_audiovideo {
  color: #2ca4e0 !important;
}

.resource_bg_audiovideo {
  background: #2ca4e0 !important;
}
.border_color_audiovideo{
  border-color: #2ca4e0 !important;
}

.resource_color_jpg,
.resource_color_png,
.resource_color_jpeg  {
  color: #806eda !important;
}

.resource_color_jpg.custom-jpg-color {
	color: #48A6E2!important;
}

.resource_bg_jpg,
.resource_bg_png,
.resource_bg_jpeg {
  background: #806eda !important;
}
.border_color_jpg {
  border-color: #806eda !important;
}
.resource_color_image {
  color: #806eda !important;
}

.resource_color_html,
.resource_color_embed {
  color: #806eda !important;
}

.resource_bg_image {
  background: #806eda !important;
}
.border_color_image {
  border-color: #806eda !important;
}
.resource_bg_html,
.resource_bg_embed {
  background: #806eda !important;
}
.border_color_html,
.border_color_embed {
  border-color: #806eda !important;
}

.resource_color_document,
.resource_color_doc,
.resource_color_docx {
  color: #6B86FA !important;
}

.resource_bg_document {
  background: #6B86FA !important;
}
.border_color_document {
  border-color: #6B86FA !important;
}
.resource_lightbg_document {
  background: rgba(107, 134, 250, 0.2) !important;
}

.resource_color_web {
  color: #806eda !important;
}

.resource_bg_web {
  background: #806eda !important;
}
.resource_lightbg_web {
  background: rgba(128, 110, 218, 0.2) !important;
}
.border_color_web {
  border-color: #806eda !important;
}

.resource_color_webreference {
  color: #806eda !important;
}

.resource_bg_webreference {
  background: #806eda !important;
}

.resource_lightbg_webreference {
  background: rgba(128, 110, 218, 0.2) !important;
}
.border_color_webreference {
  border-color: #806eda !important;
}

.resource_color_html {
  color: #806eda !important;
}

.resource_bg_html {
  background: #806eda !important;
}
.border_color_html {
  border-color: #806eda !important;
}

.resource_color_coursebook {
  color: #806eda !important;
}

.resource_bg_coursebook {
  background: #806eda !important;
}
.border_color_coursebook {
  border-color: #806eda !important;
}

.resource_color_ebook {
  color: #806eda !important;
}

.resource_bg_ebook {
  background: #806eda !important;
}
.resource_lightbg_ebook {
  background: rgba(128, 110, 218, 0.2) !important;
}
.border_color_ebook {
  border-color: #806eda !important;
}

.resource_color_teachernote {
  color: #806eda !important;
}

.resource_bg_teachernote {
  background: #806eda !important;
}
.border_color_teachernote {
  border-color: #806eda !important;
}

.resource_color_xls,
.resource_color_xlsx {
  color: #806eda !important;
}

.resource_bg_xls {
  background: #806eda !important;
}
.border_color_xls {
  border-color: #806eda !important;
}

.resource_color_ppt {
  color: #806eda !important;
}

.resource_bg_ppt {
  background: #806eda !important;
}
.border_color_ppt {
  border-color: #806eda !important;
}

.resource_color_presentation {
  color: #806eda !important;
}

.resource_bg_presentation {
  background: #806eda !important;
}
.border_color_presentation {
  border-color: #806eda !important;
}

.resource_color_pdf {
  color: #C86AF7 !important;
}

.resource_bg_pdf {
  background: #C86AF7 !important;
}
.border_color_pdf {
  border-color: #C86AF7 !important;
}
.resource_lightbg_pdf {
    background: rgba(200,106,247,0.2) !important;
}

.resource_color_spreadsheet,
.resource_color_xlsx {
  color: #806eda !important;
}

.resource_bg_spreadsheet,
.resource_bg_xlsx {
  background: #806eda !important;
}
.border_color_spreadsheet,
.border_color_xlsx {
  border-color: #806eda !important;
}

.resource_color_wiki {
  color: #806eda !important;
}

.resource_bg_wiki {
  background: #806eda !important;
}
.border_color_wiki {
  border-color: #806eda !important;
}

.resource_color_notebook {
  color: #806eda !important;
}

.resource_bg_notebook {
  background: #806eda !important;
}
.border_color_notebook {
  border-color: #806eda !important;
}

.resource_color_activity {
  color: #ff6666 !important;
}

.resource_bg_activity {
  background: #ff6666 !important;
}
.resource_lightbg_activity {
  background: rgba(255, 102, 102, 0.2) !important;
}
.border_color_activity {
  border-color: #ff6666 !important;
}

.resource_color_worksheet {
  color: #ff6666 !important;
}

.resource_bg_worksheet {
  background: #ff6666 !important;
}
.border_color_worksheet {
  border-color: #ff6666 !important;
}

.resource_color_assignment {
  color: #24b483 !important;
}

.resource_bg_assignment {
  background: #24b483 !important;
}
.resource_lightbg_assignment {
  background: rgba(36, 180, 131, 0.2) !important;
}
.border_color_assignment {
  border-color: #24b483 !important;
}

.resource_color_assessment,
.resource_color_practicetest,
.resource_color_knowledgestateassessment {
  color: #f29c47 !important;
}

.resource_bg_assessment,
.resource_bg_practicetest {
  background: #f29c47 !important;
}
.border_color_assessment {
  border-color: #f29c47 !important;
}
.border_color_practicetest {
  border-color: #f29c47 !important;
}
.resource_lightbg_assessment {
  background: rgba(242, 156, 71, 0.2) !important;
}

.resource_color_others {
  color: #9c27b0 !important;
}

.resource_bg_others {
  background: #9c27b0 !important;
}
.border_color_others {
  border-color: #9c27b0 !important;
}

.resource_color_mixed {
  color: #9c27b0 !important;
}

.resource_bg_mixed {
  background: #9c27b0 !important;
}
.border_color_mixed {
  border-color: #9c27b0 !important;
}

.resource_color_homework {
  color: #4f9be4;
}
.resource_bg_homework {
  background: #4f9be4 !important;
}
.border_color_homework {
  border-color: #4f9be4 !important;
}
.resource_color_questionbank {
  color: var(--trinity-text-color) !important;
}

.resource_bg_questionbank {
  background: var(--primary-bg-color) !important;
}
.resource_lightbg_questionbank {
  background: rgba(2, 159, 80, 0.2) !important;
}

.border_color_questionbank {
  border-color: var(--green-text) !important;
}
/*** End ***/
