@import url("components/cards.css");

.sidebar-menu li {
  background-color: transparent;
}

.long input {
  width: 100%;
}

md-input-group.md-default-theme label {
  color: rgba(0, 0, 0, 0.7);
  text-shadow: none;
}

md-input-group.md-default-theme input,
md-input-group.md-default-theme textarea,
md-input-group input {
  border-color: rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.73);
}

md-input-group.md-input-focused label {
  color: #03a9f4;
}

md-input-group.md-input-focused input {
  border-color: #03a9f4;
}

.md-float-bottom-right {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}

/*---- Input Error MSG ----*/
span.input-fields-error {
  position: absolute;
  bottom: -16px;
  font-size: 12px;
}

span.input-fields-error.danger {
  color: #f44336;
}

span.input-fields-error.warning {
  color: #ff5722;
}

span.input-fields-error.info {
  color: #03a9f4;
}

span.input-fields-error.success {
  color: #0f9d58;
}


.error-field {
  color: #f44336;
}

/*---- Angular ui form validation MSG override ----*/
span.CustomValidationError {
  position: absolute;
  bottom: -16px;
  font-size: 12px;
  color: #f44336;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}

/*------------------------*/
/*select.form-control {
    border-left: medium none;
    border-right: medium none;
    border-top: medium none;
    font-weight: 700;
    padding-left: 0;
    border-color: rgba(0,0,0,0.6);

}*/
select.form-control option {
  padding-top: 8px;
  padding-bottom: 8px;
}

.material-design-form-group {
  height: 60px;
  padding-top: 24px;
  margin: 7px 0 8px 0;
  position: relative;
  display: block;
}

.box-body h4 {
  margin-bottom: 0;
}

.profile-card {
  -moz-box-shadow: 0px 0px 5px #000000;
  -webkit-box-shadow: 0px 0px 5px #000000;
  box-shadow: 0px 0px 5px #000000;
  margin-bottom: 16px;
}

.profile-pic {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.profile-pic img {
  width: 100%;
  vertical-align: middle;
}

.profile-pic-content {
  width: 100%;
  min-height: 70px;
  position: relative;
  padding: 8px 12px 12px;
}

h4.profile-card-name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.profile-action-round-btn {
  position: absolute;
  top: -26px;
  right: 26px;
}

ul.he-subjects {
  display: none;
}

ul.he-subjects.exapand-list {
  display: block;
}

/*---- Material Design Color Scheme Override*/
.md-button.md-default-theme[disabled],
.md-button.md-default-theme.md-raised[disabled],
.md-button.md-default-theme.md-fab[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
  color: #ffffff;
}

.md-button.md-default-theme:not(.md-fab) {
  border-radius: 2px;
  padding: 8px 30px;
  /*color: rgba(255,255,255,.84);*/
}

/*
** Primary BTN
*/
.md-button.md-default-theme.md-raised.md-primary,
.md-button.md-default-theme.md-fab.md-primary {
  color: white;
  background-color: #4285f4;
}

.md-button.md-default-theme.md-raised.md-primary:not([disabled]):hover,
.md-button.md-default-theme.md-raised.md-primary:not([disabled]):focus,
.md-button.md-default-theme.md-fab.md-primary:not([disabled]):hover,
.md-button.md-default-theme.md-fab.md-primary:not([disabled]):focus {
  background-color: #4285f4;
}

.md-button.md-primary {
  color: #4285f4;
}

/*
** Success BTN
*/
.md-button.md-default-theme.md-raised.md-success,
.md-button.md-default-theme.md-fab.md-success {
  color: white;
  background-color: #0f9d58;
}

.md-button.md-default-theme.md-raised.md-success:not([disabled]):hover,
.md-button.md-default-theme.md-raised.md-success:not([disabled]):focus,
.md-button.md-default-theme.md-fab.md-success:not([disabled]):hover,
.md-button.md-default-theme.md-fab.md-success:not([disabled]):focus {
  background-color: #0f9d58;
}

.md-button.md-success {
  color: #0f9d58;
}

/*
** Info BTN
*/
.md-button.md-default-theme.md-raised.md-info,
.md-button.md-default-theme.md-fab.md-info {
  color: white;
  background-color: #03a9f4;
}

.md-button.md-default-theme.md-raised.md-info:not([disabled]):hover,
.md-button.md-default-theme.md-raised.md-info:not([disabled]):focus,
.md-button.md-default-theme.md-fab.md-info:not([disabled]):hover,
.md-button.md-default-theme.md-fab.md-info:not([disabled]):focus {
  background-color: #03a9f4;
}

.md-button.md-info {
  color: #03a9f4;
}

/*
** Warning BTN
*/
.md-button.md-default-theme.md-raised.md-warning,
.md-button.md-default-theme.md-fab.md-warning {
  color: white;
  background-color: #ff5722;
}

.md-button.md-default-theme.md-raised.md-warning:not([disabled]):hover,
.md-button.md-default-theme.md-raised.md-warning:not([disabled]):focus,
.md-button.md-default-theme.md-fab.md-warning:not([disabled]):hover,
.md-button.md-default-theme.md-fab.md-warning:not([disabled]):focus {
  background-color: #ff5722;
}

.md-button.md-warning {
  color: #ff5722;
}

/*
** Danger BTN
*/
.md-button.md-default-theme.md-raised.md-danger,
.md-button.md-default-theme.md-fab.md-danger {
  color: white;
  background-color: #f44336;
}

.md-button.md-default-theme.md-raised.md-danger:not([disabled]):hover,
.md-button.md-default-theme.md-raised.md-danger:not([disabled]):focus,
.md-button.md-default-theme.md-fab.md-danger:not([disabled]):hover,
.md-button.md-default-theme.md-fab.md-danger:not([disabled]):focus {
  background-color: #f44336;
}

.md-button.md-danger:not(.md-fab) {
  color: #f44336;
}

/*
** Default BTN
*/
.md-button.md-default-theme.md-raised.md-default,
.md-button.md-default-theme.md-fab.md-default {
  color: black;
  background-color: transparent;
}

.md-button.md-default-theme.md-raised.md-default:not([disabled]):hover,
.md-button.md-default-theme.md-raised.md-default:not([disabled]):focus,
.md-button.md-default-theme.md-fab.md-default:not([disabled]):hover,
.md-button.md-default-theme.md-fab.md-default:not([disabled]):focus {
  background-color: transparent;
}

.md-button.md-default {
  color: lightgray;
}

button.md-primary.md-button.md-default-theme[disabled] {
  color: gray;
}

/*
** Material Design Input Margins Reset For The Tables
*/
.table-row-inputs,
td .md-checked {
  margin: 0;
}

/*
** Input Icon
*/
.md-input-has-value .input-icon-label {
  display: inline-block;
  float: left;
  padding-top: 9px;
}

/*---- Material Toast ----*/
md-toast {
  position: fixed;
  z-index: 10000;
}

/*---- MD Bottom Sheet ----*/
md-bottom-sheet {
  z-index: 1041;
}

/*--- Profile Panel ----*/
.profile-holder {
  margin: 20px;
}

.profile-holder:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
  /* Adjusts for spacing */
}

.profile-info-header {
  background-color: #1b1a1e;
  height: 100px;
  margin: auto;
  width: 96%;
  -moz-box-shadow: 0px 0px 5px #000000;
  -webkit-box-shadow: 0px 0px 5px #000000;
  box-shadow: 0px 0px 5px #000000;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}

.profile-img-and-info {
  background-color: #fe504f;
  height: 220px;
  width: 100%;
  -moz-box-shadow: 0px 0px 5px #000000;
  -webkit-box-shadow: 0px 0px 5px #000000;
  box-shadow: 0px 0px 5px #000000;
}

.profile-more-info {
  background-color: #1b1a1e;
  margin: auto;
  min-height: 420px;
  width: 96%;
  -moz-box-shadow: 0px 0px 5px #000000;
  -webkit-box-shadow: 0px 0px 5px #000000;
  box-shadow: 0px 0px 5px #000000;
}

.profile-info-container .profile-pic {
  height: 220px;
}

.profile-info-header h4 {
  color: #f1f8e9;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}

.profile-info-header .material-design-form-group {
  margin: 0;
  padding: 0;
}

.profile-info-header .material-design-form-group select {
  background: none repeat scroll 0 0 transparent;
  border-bottom-color: #f1f8e9;
  color: #f1f8e9;
}

/*
** Profile Picture Uploading Component
*/
.inner-profile-pic-holder {
  display: inline-block;
  position: relative;
}

.profile-pic-upload-btn {
  display: inline-block;
  margin-left: 15px;
}

/*---- Circle Progress ----*/
.inner-profile-pic-holder md-progress-circular.md-default-theme {
  position: absolute;
  top: 50%;
  margin-top: -26px;
  left: 50%;
  margin-left: -26px;
}

md-progress-circular.md-default-theme .md-inset {
  background-color: rgba(0, 0, 0, 0);
}

md-progress-circular.md-default-theme .md-circle .md-mask .md-fill {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid #03a9f4;
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

/*
** Bottom Sheets
*/
md-bottom-sheet {
  position: fixed;
}

md-sidenav {
  z-index: 1040;
  position: fixed;
}

md-backdrop.md-opaque.md-default-theme {
  position: fixed;
  z-index: 1040;
}

/*
** Select2 Styles
*/
.select2-container .select2-choice {
  height: 34px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.73);
  border-radius: 0;
  color: rgba(0, 0, 0, 0.73) !important;
  font-weight: 700;
  padding-left: 0;
}

.select2-container .select2-choice .select2-arrow {
  background: none;
  border-left: none;
  border-radius: 0;
}

.select2-container-active.select2-dropdown-open {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-drop {
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
  border: none;
  margin-top: 0px;
  transition: margin-top 0.4s ease;
  -webkit-transition: margin-top 0.4s ease;
  -moz-transition: margin-top 0.4s ease;
  -o-transition: margin-top 0.4s ease;
  border-radius: 0;
  width: 0;
}

.select2-search input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #03a9f4;
}

.select2-drop.select2-drop-active {
  margin-top: -34px;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select2-result {
  transition: ALL 0.4s ease;
  -webkit-transition: ALL 0.4s ease;
  -moz-transition: ALL 0.4s ease;
  -o-transition: ALL 0.4s ease;
}

.select2-result.select2-highlighted {
  background: #2196f3;
}

.select2-container-multi .select2-choices {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid;
  background: #ffffff;
}

.select2-drop.select2-drop-multi.select2-display-none.select2-drop-active {
  margin-top: -3px;
  padding-top: 5px;
}

.select2-container-multi.select2-container-active .select2-choices {
  border: none;
}

.select2-container.select2-container-multi.ng-pristine.ng-untouched.ng-valid.select2-dropdown-open {
  z-index: 10000;
  -moz-box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.6);
}

.select2-container.select2-container-multi.ng-pristine.ng-untouched.ng-valid.select2-dropdown-open
  ul {
  border-bottom: 1px solid #03a9f4;
}

.select2-default {
  color: rgba(0, 0, 0, 0.73) !important;
  font-weight: 700;
  display: block;
  float: none;
  /*margin-right: 26px;*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}

.select2-container-multi .select2-choices .select2-search-field input {
  padding-left: 0;
}

.select2-container.select2-dropdown-open .select2-choices li input,
.select2-container-active .select2-choices li input {
  padding-left: 5px;
}

.select2-container.select2-container-active .select2-choices li input {
  padding-left: 5px;
}

button.dropdown-toggle:hover,
button.dropdown-toggle:focus,
button.btn.btn-default.dropdown-toggle {
  background: none !important;
  box-shadow: none;
}

.list-radio-group md-radio-button {
  display: inline;
  margin-left: 0;
}

/*---- Time tbl bt-sheet ----*/
.time-tbl-bt-sheet {
  padding-top: 15px;
  font-size: 18px;
}

.row.bt-sheet-header {
  padding-bottom: 10px;
  font-weight: 700;
}

.time-tbl-bt-sheet-cards {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.75);
  border-radius: 2px;
  overflow: hidden;
}

.time-tbl-bt-sheet-cards .card-cont {
  padding: 8px;
  font-size: 14px;
}

/*---- Time Table Fixed Box ----*/

.time-table-fixed-box {
  height: 300px;
  position: fixed;
  bottom: -20px;
  left: 0;
  border-radius: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

span.time-table-slot-error {
  color: #fff;
  text-align: center;
  display: inherit;
  cursor: help;
  height: 29px;
  margin-top: -2px;
  padding-top: 5px;
}

/*---- No Data ----*/
.no-data {
  background-color: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);
}

.no-data-icon {
  width: 60px;
  height: 60px;
  background-color: #9e9e9e;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  padding-top: 17px;
  text-align: center;
}

.no-data > h3 {
  display: inline-block;
  font-size: 22px;
  font-weight: 200;
  margin-left: 20px;
}

/*---- Disabled Input ----*/
md-input-container.md-default-theme .md-input[disabled],
[disabled] md-input-container.md-default-theme .md-input {
  border-bottom-color: rgba(0, 0, 0, 0.76);
  color: rgba(0, 0, 0, 0.76);
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.12) 33%,
    transparent 0%
  );
  background-image: -ms-linear-gradient(
    left,
    transparent 0%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

/*---- Top Scores ----*/
.top-scores-holder {
  width: 100%;
  height: auto;
  border: 2px;
  margin-bottom: 16px;
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.6);
}

.top-score-student-pic {
  width: 100%;
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
}

.top-score-student-cont {
  width: 100%;
  height: 40px;
  padding: 12px 0;
}

.top-score-student-cont h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

h3.top-scores-subject-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid lightgray;
  padding: 0 0 10px 0;
}

h4.top-scores-student-name {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin: 0px;
  color: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 10px 10px;
  font-weight: 300;
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY0Ii8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc2JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjY1Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 75%,
    rgba(0, 0, 0, 0.65) 76%
  );
  /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0)),
    color-stop(75%, rgba(0, 0, 0, 0.64)),
    color-stop(76%, rgba(0, 0, 0, 0.65))
  );
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 75%,
    rgba(0, 0, 0, 0.65) 76%
  );
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 75%,
    rgba(0, 0, 0, 0.65) 76%
  );
  /* Opera 11.10+ */
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 75%,
    rgba(0, 0, 0, 0.65) 76%
  );
  /* IE10+ */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 75%,
    rgba(0, 0, 0, 0.65) 76%
  );
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
  /* IE6-8 */
}

.fixed-hieght-top-widget,
.fixed-hieght-top-widget-lg {
  overflow-y: scroll;
  overflow-x: hidden;
}

.fixed-hieght-top-widget {
  max-height: 220px;
}

.fixed-hieght-top-widget-lg {
  max-height: 400px;
}

/* Ensure that the demo table scrolls */
th,
td {
  white-space: nowrap;
}

div.dataTables_wrapper {
  width: 100%;
  margin: 0 auto;
}

table.dataTable.no-footer {
  border: none;
}

.DTFC_LeftHeadWrapper {
  background-color: #ffffff;
}

/*---- Dashboard Widgets ----*/
.dahsboard-count-widgets h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 300;
}

.dahsboard-count-widgets h3 small {
  font-weight: 200;
  font-size: 16px;
}

/*---- No Data ----*/
.no-data {
  background-color: #ffffff;
  padding: 20px;
  -webkit-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.2);
}

.no-data-icon {
  width: 60px;
  height: 60px;
  background-color: #9e9e9e;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  padding-top: 17px;
  text-align: center;
}

.no-data > h3 {
  display: inline-block;
  font-size: 22px;
  font-weight: 200;
  margin-left: 20px;
}

.no-data.warning h3 {
  color: #f44336;
}

.no-data.warning .no-data-icon {
  background-color: #f44336;
}

div#sticker {
  padding: 20px;
  margin: 20px 0;
  background: #aaa;
  width: 190px;
}

.stick {
  position: fixed;
  top: 0px;
  margin-right: 15px;
}

.right-panel-fixed-height {
  max-height: 450px;
  overflow: auto;
}

.student-prfile-class {
  background-color: rgb(33, 150, 243);
  border-radius: 12%;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  padding: 8px;
  width: 100px;
  height: 40px;
}

.table-scroller {
  max-height: 520px;
  overflow: auto;
}

.md-input-for-md-main-box-header {
  margin: -18px 0 8px;
}

h3.search-result-msg {
  font-size: 15px;
  color: rgb(111, 111, 111);
  font-weight: 400;
}

.stick .tbl-scroller-sm {
  width: 90%;
}

.tbl-scroller-sm {
  width: 100%;
  height: 249px;
  overflow: auto;
}

.tbl-first-col-freezer {
  position: absolute;
  background-color: #ffffff;
  top: 0;
  overflow-y: hidden;
  overflow-x: scroll;
  max-height: 520px;
}

.tbl-first-row-freezer {
  position: absolute;
  background-color: #ffffff;
  left: 16px;
  top: 0;
  overflow: hidden;
}

.tbl-first-row-freezer table {
  margin: 0;
}

.md-tabs-content .md-tab-content {
  min-height: 600px;
}

.tbl-first-row-fixed-row-col {
  position: absolute;
  z-index: 1;
  background-color: #ffffff;
}

.tbl-first-row-fixed-row-col table {
  margin: 0;
}

.clickble-span {
  padding: 4px;
  margin: 4px;
  color: #ffffff;
  font-weight: 300;
  cursor: pointer;
  float: left;
}

.clickble-span.blue {
  background-color: #36c;
}

.clickble-span.green {
  background-color: #33cc5e;
}

.clickble-span.dark-yellow {
  background-color: #cc8433;
}

md-dialog-content.xs-md-dialog {
  min-width: 280px;
  max-width: 380px;
  padding: 10px;
}

/*---- Login Page ----*/
.login-page-back {
  width: 100%;
  height: 100%;
}

.login-top-half,
.login-bottom-half {
  width: 100%;
  height: 50%;
}

.login-top-half,
.small-login {
  background-color: #2196f3;
}

.small-login {
  width: 100%;
  height: 100%;
}

.cs-logo-sm img {
  width: 50%;
}

.smaller-login-h3 {
  color: #ffffff;
  text-align: center;
}

.login-container {
  width: 380px;
  height: 200px;
  margin: 20px auto 0 auto;
  background-color: #ffffff;
  box-shadow: 0 1px 11px rgba(0, 0, 0, 0.27);
}

.login-container.sm-md {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -190px;
  margin-top: -100px;
}

.google-sign-in-btn {
  width: 220px;
  height: 70px;
  margin: auto;
  cursor: pointer;
}

.google-sign-in-btn img {
  height: 100%;
}

.login-container h3 {
  text-align: center;
  font-weight: 400;
  margin-top: 0px;
  padding-top: 20px;
}

.cs-logo {
  margin: auto;
  width: 320px;
  padding-top: 40px;
}

.cs-logo img {
  width: 100%;
}

.warning-login {
  height: 100px;
  margin: auto;
  width: 100px;
}

.appInit {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.appInit h2 {
  text-align: center;
  font-weight: 300;
}

.grade-mark-high-marks {
  width: 30px;
  height: 30px;
  background-color: rgb(33, 150, 243);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  border-radius: 50%;
  margin: 3px 4px 0 0;
  float: left;
}

.no-padding-td {
  padding: 0 0 12px 0 !important;
  max-width: 60px;
}

.grade-high-mark-student {
  padding: 6px;
  background-color: #2196f3;
  margin: 4px;
  color: #ffffff;
  font-weight: 300;
  display: inline-block;
  float: left;
}

.grade-mark-high-subject {
  font-weight: 300;
  font-size: 18px;
}

high-mark-sub-th {
  vertical-align: middle !important;
}

md-input-container.tbl-input {
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
}

h3.grade-mark-per-title {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 8px 0;
}

h4.grade-mark-per-val {
  margin: 0 0 3px 0;
  text-align: left;
  font-size: 13px;
  font-weight: 400;
}

.progress.grade-marks-progress {
  margin-bottom: 4px;
}

.teacher-reg-subject-list {
  width: 100%;
  min-height: 500px;
  max-height: 500px;
  overflow: auto;
  background-color: #ececec;
}

.teacher-reg-subject-list-footer {
  width: 100%;
  background-color: #ececec;
  padding: 0 0 16px 0;
}

.count-down h3 {
  margin: 0 0 38px 0;
  font-size: 25px;
  font-weight: 300;
}

.count-down h3 span {
  color: #098109;
  font-weight: 400;
}

h3.reg-complete-h3 {
  font-size: 22px;
  font-weight: 300;
  text-align: center;
}

h3.reg-complete-email {
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  color: green;
}

.cs-login-error {
  border-radius: 0;
  padding: 4px;
}

.addMargin {
  margin-bottom: 300px;
}

span.select2-hidden-accessible {
  visibility: hidden;
}

/*---- Dashboard notification panel ----*/
.dashboard-notification-list md-list-item {
  background-color: #f7f7f7;
  border-bottom: 1px lightgray dashed;
}

.header-notifications-holder {
  position: absolute;
  top: 45px;
  right: 130px;
  z-index: 1001;
  background-color: #ffffff;
  width: 280px;
  max-height: 280px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.header-notifications-holder h4 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 10px 10px 10px 10px;
}

ul.header-notification-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.header-notification-list li {
  border-top: 1px solid #eaeaea;
  padding: 10px 10px;
}

ul.header-notification-list li a {
  color: #585858;
  font-weight: 300;
}

ul.header-notification-list li:hover {
  background-color: #efefef;
}

.notification-count {
  font-size: 9px;
  position: absolute;
  top: 12px;
  left: 7px;
  z-index: 1;
}

/* ---- Angular Text ---- */
.ta-editor {
  min-height: 300px;
  max-height: 300px;
  overflow: auto;
  border-radius: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 10px;
}

.ta-bind {
  min-height: 285px;
  outline: none;
}

.ta-toolbar {
  background-color: #f1f1f1;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.ta-toolbar .btn-group button.btn.btn-default {
  padding: 6px;
}

.ta-toolbar .btn-group {
  display: flex;
  margin-bottom: 10px;
}

.daterangepicker td,
.daterangepicker th {
  background: none;
  color: #000000;
}

/*---- Starts MD Auto Complete Template Styles ---- */
.autocomplete-custom-template li {
  border-bottom: 1px solid #ccc;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  white-space: normal;
}

.autocomplete-custom-template li:last-child {
  border-bottom-width: 0;
}

.autocompletedemoCustomTemplate .autocomplete-custom-template .item-title,
.autocompletedemoCustomTemplate .autocomplete-custom-template .item-metadata {
  display: block;
  line-height: 2;
}

.autocomplete-custom-template .item-title span {
  float: left;
  margin-left: 12px;
}

.autocomplete-custom-template .item-title .item-img {
  width: 40px;
  height: 40px;
  float: left;
  overflow: hidden;
  border-radius: 50%;
}

.autocomplete-custom-template .item-title .item-img img {
  width: 100%;
  vertical-align: inherit;
}

/*---- Ends MD Auto Complete Template Styles ---- */

/*---- Login Modules Card ----*/

.module-card {
  width: 280px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px 5px 0;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}

.module-card-holder:hover > .module-card {
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
  transform: scale(0.9);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  opacity: 0.6;
}

.module-card-holder:hover > .module-card:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  z-index: 10000;
  opacity: 1;
}

.moudle-card-img {
  width: 100%;
  height: 210px;
  position: relative;
}

h4.module-name {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 8px;
  bottom: 0;
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
}

.module-section-user-info-card {
  width: 570px;
  min-height: 224px;
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  margin: 0 auto 14px auto;
  overflow: hidden;
}

.user-info-card-logo {
  width: 100%;
  height: 150px;
  background-image: url("/resources/images/logo.png");
  background-size: 28%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0d74c1;
}

.user-info-card-user-info {
  position: relative;
  width: 100%;
  min-height: 74px;
}

.user-info-card-user-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: -40px;
  border: 4px solid #ffffff;
}

.user-info-card-user-info h2 {
  position: absolute;
  top: 7px;
  margin: 0;
  width: 100%;
  font-weight: 400;
  padding-left: 102px;
  font-size: 21px;
  text-align: left;
}

.tooltip-with-img .md-content {
  text-align: left;
  height: 68px;
  padding: 8px;
}

.tooltip-with-img .md-content span {
  font-size: 12px;
  line-height: 4;
  margin-left: 6px;
}

.tooltip-with-img .md-content img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  float: left;
}

/*---- Material Design Data Table ----*/

md-dialog md-toolbar {
  height: 60px;
}

md-toolbar.md-table-toolbar {
  height: 64px;
}

md-toolbar.md-table-toolbar.alternate {
  background-color: #e3f2fd;
  color: #2196f3;
}

md-toolbar.md-table-toolbar .md-toolbar-tools > span {
  font-size: 20px;
  font-family: roboto;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}

md-table-container {
  max-height: 500px;
  max-width: 800px;
}

md-table-pagination.md-table-pagination span,
md-select.md-table-select > .md-select-value > span {
  color: rgba(0, 0, 0, 0.54);
  font-size: 13px;
  font-family: roboto;
}

table.md-table th.md-column > * {
  font-size: 14px;
  font-weight: 600;
  font-family: roboto;
  color: rgba(0, 0, 0, 0.54);
}

th.md-column.ng-isolate-scope.md-sort {
  padding: 0 24px 0 16px;
}

table.md-table th.md-column > * {
  font-size: 14px;
  font-weight: 600;
  font-family: roboto;
  color: rgba(0, 0, 0, 0.54);
}

.md-table td,
.md-table th {
  padding: 10px 10px 10px 16px;
}

.md-select-value .md-select-icon:after {
  color: rgba(0, 0, 0, 0.87) !important;
}

md-select.md-table-select > .md-select-value > span {
  color: rgba(0, 0, 0, 0.87);
  font-family: roboto;
  font-size: 14px;
  font-weight: 500;
}

table.md-table td.md-cell {
  color: rgba(0, 0, 0, 0.87) !important;
  font-size: 14px !important;
  font-family: roboto;
  font-weight: 500;
}

table.md-table th.md-column.md-active > span {
  color: rgba(0, 0, 0, 0.87);
}

/*---- Class Marks Table ----*/
.class-mark-tbl td,
.class-mark-tbl th {
  border: 1px solid gray !important;
  font-family: roboto;
  text-transform: uppercase;
  font-weight: 500;
}

.class-mark-tbl tr:first-child th {
  text-align: center;
  font-weight: 600;
}

.break-wrods {
  white-space: pre-line;
  vertical-align: middle !important;
  text-align: center !important;
}

.cls-mrk-stu-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  float: left;
  margin-right: 7px;
}

h4.cls-mrk-tbl-student-name {
  margin: 0;
  font-size: 13px;
  width: 154px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  padding-top: 7px;
}

.class-mark-tbl-holder {
  width: 100%;
  min-height: 300px;
  max-height: 600px;
  position: relative;
}

.class-mark-tbl-left-column-freezer {
  /*min-width: 264px;
  max-width: 264px;*/
  min-width: 270px;
  max-width: 270px;
  overflow: hidden;
  position: absolute;
  background: #ffffff;
  min-height: 40px;
  max-height: 583px;
  z-index: 1;
}

.class-mark-tbl-left-column-freezer.class-mark-tbl--freezer-block {
  min-width: 206px;
  max-width: 206px;
  left: 0px;
  top: 0;
}

@media screen and (min-width: 768px) {
  .class-mark-tbl-left-column-freezer.class-mark-tbl--freezer-block {
    left: -1px;
    top: 0;
  }
}

.class-mark-tbl-holder-helper {
  width: 100%;
  min-height: 300px;
  max-height: 600px;
  overflow: auto;
}

.class-mark-tbl th {
  padding: 5px !important;
}

.class-mark-tbl tr:first-child {
  background-color: #ffffff !important;
}

.class-mark-tbl tr:nth-child(odd) {
  background-color: #eaeaea;
}

.cls-mrk-tbl-th-container {
  width: 196px;
}

.white-tabs md-tab-item.md-tab.md-active {
  color: #404040;
}

.white-tabs md-tab-item.md-tab {
  color: #a7a7a7;
}

.white-tabs md-tabs-wrapper {
  background-color: #ffffff;
  border: 1px solid #e1e1e1;
}

.white-tabs md-content {
  background-color: #f9f9f9;
}

span.subject-not-marked {
  color: #757575;
}

span.subject-low-marks {
  color: #f90303;
}

span.subject-top-marks {
  color: #038603;
}

.class-top-scores.ng-scope {
  width: 100%;
  height: 45px;
}

.class-top-scores img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
}

.class-top-scores h4 {
  float: left;
  font-size: 14px;
  margin-left: 4px;
}

.class-top-scores h5 {
  float: right;
  background-color: #2196f3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0;
  text-align: center;
  line-height: 2.8;
  color: #ffffff;
}

.student-ranks .widget-user-username,
.student-ranks .widget-user-desc {
  width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.student-ranks .widget-user-username a,
.student-ranks .widget-user-desc a {
  color: #ffffff;
}

h5.tbl-name-elipse {
  margin: 0;
  width: 136px;
  overflow: hidden;
  text-overflow: ellipsis;
}

h5.tbl-th-h5 {
  margin: 0;
  min-width: 110px;
  max-width: 115px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* App Progress */
.app-progress {
  padding-top: 66px;
  width: 100%;
  margin: auto;
  padding-left: 102px;
  padding-right: 17px;
  margin-bottom: 2px;
}

.app-progress .progress-bar {
  background-color: #0d74c1;
}

.progress {
  height: 20px;
}

p.percent {
  text-align: right;
}

.app-init.alert {
  width: 95%;
  margin: auto;
  text-align: center;
  margin-bottom: 12px;
}

.reload-services {
  padding-left: 100px;
  padding-right: 15px;
  margin-bottom: 15px;
}

/*---- MD Card Styles ----*/
md-card md-card-title md-card-title-text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

md-card md-card-title {
  padding: 24px 16px 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

md-card md-card-title md-card-title-media .md-media-lg {
  height: 152px;
  width: 152px;
}

md-card .md-actions,
md-card md-card-actions {
  margin: 8px;
}

md-card md-card-title md-card-title-media {
  margin-top: -8px;
}

md-card md-card-title md-card-title-media .md-media-lg {
  height: 152px;
  width: 152px;
}

md-card md-card-title md-card-title-text .md-subhead {
  padding-top: 0;
  font-size: 14px;
}

/*---- Timeline Styles ----*/
timeline-panel {
  padding: 0 !important;
}

.timeline-heading h4 {
  padding: 20px;
  font-size: 20px;
  color: #6b6b6b;
  font-weight: 400;
  margin-top: 0;
}

.timeline-text-body {
  padding: 0 20px;
  color: #565656;
  font-weight: 300;
  margin-bottom: 20px;
}

img.timline-image {
  width: 100%;
  margin-bottom: 20px;
}

.timeline-readmore-btn {
  margin-right: 20px;
  margin-bottom: 20px;
}

.timeline-heading h4 span {
  float: right;
  font-size: 14px;
  padding-top: 12px;
}

.timeline-full-post,
.archive-list-holder {
  background-color: #ffffff;
  -webkit-box-shadow: 1px 0 4px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0 4px 1px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
}

.post-attachements {
  padding: 0 20px;
}

.post-attachements h5 {
  font-size: 16px;
  font-weight: 400;
}

ul.post-attachments-download {
  list-style: none;
  padding: 0;
}

ul.post-attachments-download li {
  display: inline-block;
}

ul.post-attachments-download li a {
  padding: 0 16px 0 0;
}

.archive-list-holder {
  padding: 20px;
}

ul.archive-list {
  padding: 0;
  list-style: none;
}

.archive-list li {
  cursor: pointer;
}

.archive-list li h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #2196f3;
}

.archive-list li h3 small {
  font-size: 13px;
}

.archive-list li p {
  font-size: 13px;
  color: #757575;
}

/*----*/
ul.post-gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.post-gallery li {
  display: block;
  width: 30%;
  height: auto;
  overflow: hidden;
  float: left;
  margin-right: 8px;
}

ul.post-gallery li img {
  width: 100% !important;
  height: 100% !important;
  vertical-align: top;
}

ul.post-gallery li video {
  width: 100% !important;
}

/*---- Class Time-Line ----*/
.cs-timeline:before {
  left: 34px !important;
}

span.time.clickble-icon-btn {
  cursor: pointer;
  color: #dd4b39 !important;
}

.student-guardian .guardian {
  display: inline-block;
  margin: 0 2px;
}

.student-guardian .guardian img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.student-guardian {
  margin-top: 12px;
}

.attendance-student {
  width: 100%;
  border: 1px solid #a8a8a8;
  margin-bottom: 26px;
}

.attendance-student-img {
  width: 100%;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.attendance-student-name {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 4px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-weight: 500;
}

.attendance-student-actions {
  width: 100%;
}

.attendance-student-actions button {
  min-width: 50% !important;
  border-radius: 0;
}

.attendance-status {
  position: absolute;
  width: 100%;
  height: 100%;
}

.attendance-status.absent {
  background: rgba(244, 67, 54, 0.66);
}

.attendance-status.present {
  background: rgba(33, 150, 243, 0.6);
}

.attendance-status:before {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 20px;
  margin-top: -14px;
  margin-left: -25px;
  color: #ffffff;
}

.attendance-status.absent:before {
  content: "Absent";
}

.attendance-status.present:before {
  content: "Present";
}

.student-index-number {
  position: absolute;
  right: 4px;
  top: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  z-index: 1;
}

.attendance-student.attendace-submit {
  height: 157.8px;
  position: relative;
  background: rgba(33, 150, 243, 0.98);
  cursor: pointer;
  text-align: center;
}

.attendance-student.attendace-submit:before {
  content: "Submit";
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 18px;
  margin-left: -28px;
  color: #ffffff;
}

.attendance-student.attendace-submit i {
  line-height: 3;
  font-size: 46px;
  color: #ffffff;
}

span.teacher-current-class {
  font-size: 18px;
  line-height: 2.8;
  font-weight: 300;
}

.main-login-panel {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 530px;
  height: 406px;
  box-shadow: 0 2px 0px #aaa;
  background: white;
  border-radius: 3px;
  user-select: none;
}

.mlp-header {
  width: 100%;
  height: 130px;
  background-color: #2196f3;
  padding: 1.5rem;
  background-image: url(../../resources/images/cloudschool_logo.png);
  background-size: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  border-top-left-radius: 3px;
}

.mlp-body {
  padding: 40px 30px;
}

.mlp-body h4 {
  text-align: center;
  font-weight: 400;
}

.sponsers-logo {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0px;
  text-align: center;
  padding: 0 20px;
}

.sponsers-logo h4 {
  margin: 0;
}

.sponsers-logo img {
  height: 100%;
}

.school-login-logo {
  position: absolute;
  top: 6px;
  right: -30px;
  background-color: #2196f3;
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 767px) {
  .main-login-panel {
    width: 100%;
    position: inherit;
    height: auto;
    padding-bottom: 4px;
  }

  .mlp-header {
    background-size: contain;
    background-position: center 14px;
  }

  .school-login-logo {
    position: inherit;
    background-color: rgb(33, 150, 243);
    border-radius: 50%;
    padding: 10px;
    width: 100px;
    margin: auto auto -40px auto;
  }

  .school-login-logo img {
    width: 100%;
  }

  .sponsers-logo {
    position: static;
    margin-top: 20px;
  }

  .module-section-user-info-card {
    width: 100%;
  }

  .user-info-card-logo {
    background-size: 48%;
  }

  .login-seciton-body:before {
    z-index: -1;
  }
}

.btn-holder {
  position: relative;
  width: 196px;
  height: 60px;
  margin: 20px auto;
}

.mlp-footer h4 {
  margin: 0;
  text-align: center;
  font-weight: 400;
}

.mlp-footer p {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  color: #707070;
  margin-top: 4px;
}

.login-seciton-body:before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #2196f3;
  position: absolute;
}

/* Shared */
.loginBtn {
  box-sizing: border-box;
  position: relative;
  /* width: 13em;  - apply for fixed size */
  margin: 0.2em;
  padding: 16px 15px 15px 46px;
  border: none;
  text-align: left;
  line-height: 3.6;
  white-space: nowrap;
  border-radius: 0.2em;
  font-size: 16px;
  color: #fff;
}

a.loginBtn {
  text-decoration: none;
}

a.loginBtn:hover {
  color: #ffffff;
}

.loginBtn:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 49px;
}

.loginBtn:focus {
  outline: none;
}

.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1);
}

/* Google */
.loginBtn--google {
  /*font-family: "Roboto", Roboto, arial, sans-serif;*/
  background: #dd4b39;
}

.loginBtn--google:before {
  border-right: #bb3f30 1px solid;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/14082/icon_google.png")
    6px 16px no-repeat;
}

.loginBtn--google:hover,
.loginBtn--google:focus {
  background: #e74b37;
}

/*---- Calendar View New ----*/
#calendar-holder {
  width: 100%;
  height: calc(100vh - 51px);
  position: relative;
}

#calendar-left-sidebar {
  width: 224px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-right: 1px solid lightgray;
  background-color: #f5f5f5;
  padding: 10px;
  overflow: auto;
}

#calendar-middle-content {
  width: calc(100% - 225px);
  height: 100%;
  padding-left: 225px;
  background-color: #ffffff;
}

#calendar-right-sidebar {
  width: 224px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f5f5f5;
  border-left: 1px solid lightgray;
}

ul.calendar-types {
  margin: 0;
  padding: 0;
  list-style: none;
}

li.ct-head {
  padding: 5px 0;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
}

.mddrop-menu-btn {
  padding: 0px 8px;
  cursor: pointer;
  outline: none;
}

ul.ct-calenders {
  margin: 0;
  padding: 6px 0 0 10px;
  list-style: none;
  outline: none;
}

li.calender-items {
  padding: 2px 0;
  position: relative;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 25px;
}

.ct-small-btn {
  width: 18px;
  height: 17px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: #4e4e4e;
  outline: none;
}

li.calender-items i.fa {
  margin-right: 4px;
}

ul.calendar-types:not(:first-child) {
  padding-top: 6px;
  border-top: 1px solid #d3d3d3;
  margin-top: 6px;
}

ul.calendar-color-selector {
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-color-selector li {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 4px;
  cursor: pointer;
  padding: 3px 6px;
  float: left;
  outline: none;
}

.header-title {
  font-weight: 300;
  color: #e3f2fd;
  margin: 0;
  font-size: 25px;
  margin-top: 12px;
  margin-left: 12px;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 525px);
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .header-title {
    width: 80% !important;
  }

  .back-btn {
    z-index: 100 !important;
    top: 53px !important;
  }
}

.calendar-color-selector li i {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  #calendar-left-sidebar {
    width: 100% !important;
    height: auto !important;
    position: static !important;
  }

  #calendar-middle-content {
    width: 100% !important;
    height: 100% !important;
    padding-left: 0 !important;
  }

  #calendar-right-sidebar {
    display: none;
  }
}

ul.calendar-today-event-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-today-event-list li {
  border-bottom: 1px solid lightgray;
  padding: 12px 10px;
}

.calendar-today-event-list li h6 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.event-time,
.event-all-day {
  background-color: #f3e2e2;
  padding: 2px 4px;
  border-radius: 2px;
}

.calendar-today-event-list li p {
  font-size: 12px;
  margin-bottom: 0;
}

h5.no-events-on-calendar {
  font-weight: 400;
}

.calendar-widget {
  background-color: #ffffff;
  border-radius: 2px;
  height: 458px;
}

.calendar-widget-title,
.nw-title {
  padding: 16px 10px;
  background-color: #2196f3;
}

.calendar-widget-title h5,
.nw-title h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.calendar-events-list {
  width: 100%;
  height: 84px;
  overflow: auto;
}

ul.calendar-widget-events {
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-widget-events li {
  position: relative;
  padding-left: 90px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 10px;
}

.calendar-widget-events li:nth-of-type(odd) {
  background-color: #ededed;
}

.calendar-widget-events li:nth-of-type(even) {
  background-color: #ffffff;
}

md-menu-item.menu-title {
  min-height: 20px;
}

md-menu-item.menu-title button.md-button {
  padding: 0 17px;
  height: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.card-menu-icon {
  color: #ffffff;
  cursor: pointer;
}

.cwe-time {
  position: absolute;
  left: 10px;
  padding: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

.cwe-name {
  padding: 4px;
  font-size: 13px;
  font-weight: 500;
}

.has-events {
  position: relative;
}

.has-events:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #e91e63;
  border-radius: 50%;
  right: 11px;
  top: 11px;
}

.datepicker table tr td.today,
.datepicker table tr td.day:hover,
.datepicker table tr td.day.active,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #2196f3;

  color: #ffffff;
}

md-option[selected].multi-select:before {
  content: "\f00c";
  position: absolute;
  left: 14px;
  font-family: fontAwesome;
}

/*---- LESSON PLAN ----*/
.add-lesson-plan-holder {
  width: 100%;
  border: 1px solid #c6c6c6;
  position: relative;
  padding-left: 300px;
  height: calc(100vh - 162px);
  overflow-y: auto;
}

.add-lesson-plan-scroller {
  min-width: 705px;
  max-width: 705px;
}

@media screen and (min-width: 768px) {
  .add-lesson-plan-scroller {
    min-width: 750px;
    max-width: 750px;
  }
}

@media screen and (min-width: 1024px) {
  .add-lesson-plan-scroller {
    min-width: 100%;
    max-width: 100%;
  }
}

.alph-sidebar {
  width: 300px;
  height: 100%;
  position: absolute;
  border-right: 1px solid #c6c6c6;
  top: 0;
  left: 0;
  background-color: #f0eeee;
  overflow: auto;
}

.alph-lb-cb-heading .title {
  width: 180px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

ul.alph-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.alph-nav li {
  padding: 12px 20px;
  border-bottom: 1px solid #d6d6d6;
}

ul.alph-nav li.tab-active {
  background-color: #d6d6d6;
  border-left: 2px solid #2196f3;
  outline: none;
}

ul.alph-nav li:hover {
  background-color: #dad9d9;
}

ul.alph-nav li a {
  color: #080808;
  font-size: 15px;
  font-weight: 300;
}

.alph-lesson-body {
  width: 100%;
  height: 100%;
}

.alph-lb-heading {
  padding: 11px 16px;
  border-bottom: 1px solid #c6c6c6;
  height: 46px;
}

.alph-lb-heading h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #484848;
}

.alph-lb-content {
  width: 100%;
  height: calc(100% - 46px);
  padding: 14px 16px;
  overflow: auto;
}

.alph-lb-chapter-block {
  width: 100%;
  padding: 10px;
  border: 1px solid #b9b9b9;
  background-color: #f0eeee;
  margin-bottom: 16px;
  outline: none;
}

.alph-lb-cb-heading h4 {
  margin: 10px 0 18px 0;
  font-size: 16px;
  font-weight: 400;
}

.alph-lb-lesson-block {
  width: 100%;
  padding: 10px 8px;
  border: 1px solid #9e9e9e;
  background-color: #ffffff;
  margin-bottom: 16px;
}

.alph-lb-lesson-block.block-active .alph-lb-lb-content {
  display: block;
}

.alph-lb-lb-content {
  display: none;
}

.alph-lb-lesson-block.block-active .alph-lb-lb-h-toolbar .md-icon-button i.fa {
  transform: rotate(180deg);
}

.alph-lb-lb-h-toolbar .md-icon-button i.fa {
  ransition: All 0.4s ease;
  -webkit-transition: All 0.4s ease;
  -moz-transition: All 0.4s ease;
  -o-transition: All 0.4s ease;
}

.alph-lb-lb-headding h5 {
  margin: 16px 6px 0px 0;
  float: left;
}

.alph-lb-lb-headding h5 span {
  font-weight: 300;
}

.alph-lb-lb-hover-icon-btns {
  padding: 0 4px;
  cursor: pointer;
  color: #d04444;
  display: none;
}

.alph-lb-lb-headding:hover .alph-lb-lb-hover-icon-btns {
  display: block;
}

.as-sortable-item,
.as-sortable-placeholder {
  border-radius: 0 !important;
}

/*---- Card Element ----*/
.card-header {
  padding: 12px;
  border-bottom: 1px solid #e4e3e3;
}

md-card .card-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.card-body {
  padding: 12px;
  min-height: 200px;
  max-height: 470px;
  overflow: auto;
}

.card-sub-title {
  font-size: 14px;
  margin: 0 0 15px 0;
  border-bottom: 1px dashed #d6d6d6;
  padding-bottom: 4px;
  font-weight: 400;
}

.mdl-chip {
  height: 32px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  line-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 16px;
  background-color: #dedede;
  display: inline-block;
  color: rgba(0, 0, 0, 0.87);
  margin: 2px 0;
  font-size: 0;
  white-space: nowrap;
  outline: none;
}

.chip-vertical {
  display: table;
  margin-bottom: 10px;
}

.mdl-chip__contact {
  height: 32px;
  width: 32px;
  border-radius: 16px;
  margin-right: 8px;
  font-size: 18px;
  line-height: 32px;
}

.mdl-chip__action,
.mdl-chip__contact {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-align: center;
}

.mdl-chip__action {
  height: 24px;
  width: 24px;
  background: 0 0;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 4px;
  font-size: 13px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
  border: none;
  outline: none;
}

.mdl-chip__text {
  font-size: 13px;
  vertical-align: middle;
  display: inline-block;
}

.mdl-color--teal {
  background-color: #009688 !important;
}

.mdl-color-text--white {
  color: #fff !important;
}

.mdl-chip--contact {
  padding-left: 0;
}

/*---- Student Work ----*/
.student-work-status {
  padding: 8px;
  border-radius: 2px;
}

.student-work-status.marked {
  border: 1px solid #01d25e;
}

.student-work-status.unmarked {
  border: 1px solid #d09b07;
}

.student-work-status h5 {
  margin: 0;
}

.student-work-marks {
  margin-top: 8px !important;
}

.student-work-marks span {
  font-size: 20px;
  color: #049c04;
}

.student-work-files {
  padding: 8px;
  border-bottom: 1px solid #ededed;
}

.student-work-files h4 {
  margin: 0;
  font-size: 16px;
}

.student-work-files p {
  margin: 0;
}

.student-work-file-holder {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  padding: 0 8px;
}

.width-sm {
  width: 88px;
  position: relative;
}

i.loadingAnim {
  color: #2196f3;
  font-size: 16px;
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 3;
}

.tbl-input-error {
  color: red;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 300;
  margin-top: 31px;
}

md-ink-bar {
  background: rgb(255, 255, 255) !important;
}

.full-height {
  height: 100% !important;
}

.modal-content-title.ng-binding {
  font-size: 22px;
  font-weight: 400;
  border-bottom: 1px dashed #b7b7b7;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

ul.assessment-meta-data {
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}

.assessment-meta-data li {
  /* border-bottom: 1px solid #dedede; */
  padding: 6px 0;
}

h5.assesment-title {
  font-size: 16px;
}

.assmnt-done-count {
  font-size: 40px;
  color: green;
  border-left: 1px solid #c4c4c4;
  padding-left: 10px;
  line-height: 1;
  float: right;
  margin-right: 16px;
}

.assmnt-done-count small {
  font-size: 12px;
}

.comment-holder {
  display: none;
}

.asmnt-status-done {
  color: #008000;
}

.asmnt-status-done i {
  background-color: #008000;
}

.asmnt-status-late {
  color: red;
}

.asmnt-status-late i {
  background-color: red;
}

.asmnt-status-finalized {
  color: #f1cb00;
}

.asmnt-status-finalized i {
  background-color: #f1cb00;
}

.asmnt-status-pending {
  color: purple;
}

.asmnt-status-pending i {
  background-color: purple;
}

.asmnt-status-resubmit {
  color: #f65d04;
}

.asmnt-status-resubmit i {
  background-color: #f65d04;
}

.asmnt-status-draft {
  color: #2196f3;
}

.asmnt-status-draft i {
  background-color: #2196f3;
}

.asmnt-status-done i,
.asmnt-status-late i,
.asmnt-status-finalized i,
.asmnt-status-pending i,
.asmnt-status-resubmit i,
.asmnt-status-draft i {
  border-radius: 50%;
  color: #ffffff;
  padding: 8px;
  width: 28px;
  height: 28px;
  text-align: center;
}

.drafts-assmnts-holder {
  padding: 8px 12px;
  background-color: rgba(9, 146, 32, 0.12);
  margin-bottom: 14px;
}

.drafts-assmnts-holder h4 {
  margin: 0;
  padding: 12px 0 12px 0;
  color: #08a008;
}

ul.draft-assmnts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}

.draft-assmnts li {
  background-color: #ffffff;
  padding: 6px;
  border-top: 1px solid #e8e8e8;
}

.draft-assmnts li h5 {
  margin: 0;
  float: left;
  font-size: 15px;
  font-weight: 400;
}

.amd-item {
  display: inline-block;
  padding-right: 20px;
  font-size: 14px;
  color: #777777;
}

.amd-item div {
  font-size: 15px;
  font-weight: 500;
  color: #636262;
  display: inline-block;
  padding-right: 10px;
}

p.amd-description {
  font-size: 14px;
  font-weight: 300;
}

/*---- Notification Wall ----*/
.main-notification-user-pic {
  border-radius: 50%;
  margin-right: 10px;
}

.box.box-widget.more-shadow.reply-back,
.box.box-widget.more-shadow.my-reply {
  border-top: 2px solid #2196f3;
}

.box.box-widget.more-shadow.notification-sub-replies {
  margin: 0;
  border-radius: 0;
}

.box.box-widget.more-shadow.notification-main-item {
  margin: 0;
}

.notification-holder {
  margin-bottom: 20px;
}

/*---- Student Attendance ----*/
.student-attendance {
  width: 100%;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.4);
}

.student-attendance img {
  width: 100%;
}

.student-attendance h3 {
  margin: 10px auto;
  width: 100%;
  text-align: center;
  color: #000000;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre;
  padding: 0 36px;
}

.studentPresent {
  border: 2px solid #008eff;
}

.student-attendance .mark-source {
  position: absolute;
  bottom: 34px;
  right: 16px;
  width: 30px;
  height: 30px;
}

.studentPresent::before {
  content: "\f00c";
  width: 24px;
  height: 24px;
  background-color: #2196f3;
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  line-height: 1.8;
  color: #ffffff;
}

/*chart tooltip*/
.chart-tooltip {
  padding: 8px;
  width: 110px;
  text-align: center;
}

.chart-tooltip h4 {
  font-size: 16px;
  margin: 0;
}

/*---- Student Progress from Campus ----*/
.sps-card-header {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #e4e4e4;
}

.sps-card-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  padding-top: 8px;
}

.sps-card-header-status-icon {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  text-align: center;
  padding-top: 4px;
}

.sps-card-header-status-icon i {
  font-size: 36px;
}

.sps-card-header-status-icon.completed i {
  color: #18a300;
}

.sps-card-header-status-icon.no-progress i {
  color: #f75b58;
}

.sps-card-completed-msg {
  padding: 41px 10px;
  border-bottom: 1px solid #e4e4e4;
}

.sps-card-completed-msg i {
  font-size: 38px;
  float: left;
  margin-right: 8px;
  color: #18a300;
}

.sps-card-completed-msg h4 {
  margin: 0;
  padding-top: 3px;
  font-size: 14px;
  font-weight: 400;
}

.sps-card-completed-msg h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: #18a300;
}

.sps-card-no-progress-msg {
  padding: 88px 10px 0 10px;
}

.sps-card-no-progress-msg i {
  font-size: 38px;
  color: #f75b58;
  float: left;
  margin-right: 8px;
}

.sps-card-no-progress-msg h4 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding-top: 12px;
  color: #f75b58;
}

.sps-card-attendance-overview {
  padding: 15px 15px 30px 15px;
  border-bottom: 1px solid #e4e4e4;
}

.sps-card-attendance-overview h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 300;
}

.sps-card-line-progress {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.spscl-progress-item {
  height: 6px;
  display: inline-block;
  float: left;
}

.spscl-progress-map {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 3.2;
  display: inline-block;
  position: relative;
  margin: 0 13px;
}

.spscl-progress-map span {
  color: #808080;
  position: absolute;
  left: -32px;
  width: 98px;
  font-size: 11px;
  bottom: -26px;
}

.sps-card-footer {
  width: 100%;
  padding: 10px;
  position: absolute;
  bottom: 0;
}

.sps-panel {
  width: 100%;
  margin: 0 auto;
}

.sps-tab_panel {
  background-color: #ffffff;
  padding: 0 16px;
  margin-bottom: 16px;
  border-color: #ddd;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sps-panel_tab {
  background: #f9f9f9;
  border-color: #ddd;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.sps-tab_heading {
  border-bottom: 1px solid #eee;
  padding: 15px 0px;
  cursor: pointer;
}

.sps-tab_heading h3 {
  font-size: 18px;
  margin: 0;
  float: left;
  font-weight: 400;
}

.sps-tab_heading span {
  font-size: 1.1rem;
  font-weight: 800;
  color: #f56e73;
  float: right;
}

/*.sps-tab_content {
    padding: 0px 0 15px 40px;
}*/
.sps-scrolable-content {
  width: 100%;
  max-height: 500px;
  overflow: auto;
}

.tbl-option-fixd {
  width: 100%;
  padding: 8px 0 4px 0;
  margin-bottom: 4px;
  border-bottom: 1px solid #dfdfdf;
}

.sps-tab_content p {
  border-left: 1px solid #eee;
  padding-left: 5px;
}

.sps-remail-enrolls {
  float: right;
  margin-right: 10px;
  padding: 1px;
}

.sps-remail-enrolls span {
  float: left;
  padding: 4px 8px;
  background: #0f9d58;
  border-radius: 50%;
  margin-right: 7px;
  margin-left: 4px;
  color: #ffffff;
}

.select-student {
  position: relative;
}

.select-student h4 {
  margin: 10px 0;
  font-weight: 400;
}

.sp-student-switch-close {
  position: absolute;
  right: -20px;
  top: 0;
  font-size: 20px;
  color: #525151;
  cursor: pointer;
}

.class-status-inof-holder {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 10px;
  left: 0;
  padding: 0 17px;
}

.mdl-card__title span.subject-code {
  font-size: 14px;
  color: #636161;
}

.mdl-card__supporting-text {
  padding: 0px 16px 16px 16px;
}

.uem-term-holder {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.uem-term-holder table.table {
  margin-bottom: 0;
}

.uem-term-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  color: #3286c9;
  line-height: 1.6;
  cursor: pointer;
  display: inline-block;
  opacity: 0.4;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.uem-term-btn.del {
  color: #e65656;
}

.mdl-card:hover .uem-term-btn {
  opacity: 1;
}

.tab-title h3 {
  margin: 14px 8px;
  font-size: 20px;
  font-weight: 400;
  color: #626262;
}

/*---- Top Ten Cards ----*/
.top-ten-card {
  width: 100%;
  box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  padding: 10px;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.ttc-header {
  border-bottom: 1px solid lightgrey;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.ttc-user-img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  float: left;
}

.ttc-user-img img {
  border-radius: 50%;
  width: 100%;
}

h4.ttc-user-name {
  margin: 0 0 4px 0;
  font-weight: 400;
  color: #2d2d2d;
  padding: 7px 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ttc-user-meta {
  background-color: #2196f3;
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 2px;
}

.ttc-user-pro-meta {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px 10px;
  font-weight: 500;
  color: #585757;
  text-transform: uppercase;
}

.ttc-user-pro-meta span {
  font-size: 14px;
  font-weight: 300;
  color: #2f2f2f;
}

.ttc-stundent-sujbect-mark-holder {
  max-height: 272px;
  overflow: auto;
  min-height: 272px;
}

h4.ttc-body-heading {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0;
  color: #4e4e4e;
}

.ttc-student-subjet-mark-fake-holder {
  position: sticky;
  position: -webkit-sticky;
  width: 100%;
  height: 45px;
  top: 0;
  left: 0;
  overflow: hidden;
}

.gmr-nomarks {
  color: #fd7537;
  display: inline-block;
  margin: 9px 0 0 12px;
}

.gmr-tbl tbody > tr > th,
.gmr-tbl tbody > tr > td,
.gmr-tbl thead > tr > th,
.gmr-tbl thead > tr > td {
  border: 1px solid #c5c5c5;
}

.gmr-tbl span.mdl-chip__text.text-trucate {
  width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gmr-table-holder {
  width: 100%;
  overflow: auto;
  max-height: 750px;
}

h4.sr-data-msg {
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: #838383;
}

.gmf-marks-range {
  display: inline-block;
  background-color: #f2eeee;
  padding: 0 10px 10px 10px;
  margin-top: 1px;
  border-radius: 2px;
  border: 1px solid #e0dddd;
}

.gmf-marks-range md-input-container {
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 0;
}

.greater-than-val,
.less-than-val,
.range-val {
  display: inherit;
}

.gmf-critieria {
  border: 1px dashed #a2a2a2;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

h3.gmf-mrk-heading {
  font-size: 14px;
  font-weight: 300;
}

.mbts-tabl-holder {
  border: 1px solid #808080;
  margin-bottom: 10px;
}

.mbts-stundent-term-marks-holder {
  width: 100%;
  overflow: auto;
}

.mbts-stundent-term-marks-holder .table {
  margin-bottom: 0px;
}

.mbts-tabl-holder-parent {
  max-height: 510px;
  overflow: auto;
}

.md-open-menu-container {
  z-index: 10001;
}

md-backdrop.md-menu-backdrop {
  z-index: 10000;
}

.tag-color-pallete {
  padding: 0 10px;
  width: 205px;
}

.tcp-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #cbcbcb;
  position: relative;
}

.tcp-color:hover {
  border: 2px solid #cbcbcb;
}

.tcp-color.open-color {
  width: 26px;
  height: 26px;
}

.tcp-color.open-color:hover:before {
  content: "";
}

.tcp-color:hover:before,
.tcp-color.selected:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: #6b6969;
  position: absolute;
  left: 2px;
  top: 0px;
  font-size: 12px;
  line-height: 1.6;
}

.tsih-auto-complete-holder {
  width: 220px;
  display: inline-block;
}

.tsih-color-picker-holder {
  width: 54px;
  display: inline-block;
  line-height: 0;
  position: relative;
  height: 17px;
}

.tsih-color-picker-holder button {
  height: 34px !important;
  position: absolute;
  bottom: -11px;
}

.tsih-color-picker-holder button .md-ripple-container {
  height: 0px;
}

.tsih-button-holder {
  display: inline-block;
}

.tag-autocomplete md-progress-linear {
  display: none !important;
}

.mdl-chip--deletable {
  padding-right: 4px;
}

.mdl-chip__action i {
  font-size: 23px;
  color: #767676;
}

.chip-color-dot {
  background-color: #0000ff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  float: left;
  margin-top: 11px;
  margin-right: 6px;
}

.new-card-grid-holder {
  display: flex;
  flex-wrap: wrap;
}

.flex-justify-content {
  justify-content: space-around;
}

.ncgh-card-parent.ng-scope {
  width: 260px;
  margin-right: 30px;
}

.mbts-autocomplete img {
  height: 10px !important;
  margin-left: 10px;
}

.chip-menu-override .md-virtual-repeat-offsetter .md-contact-suggestion img {
  width: 10px;
  height: 10px;
  float: left;
  margin-top: 19px;
}

/*added by shanika*/
.box-closed {
  display: none;
}

.box-oppened {
  display: block;
}

.box-header.closed .box-closed {
  display: block;
}

.box-header.closed .box-oppened {
  display: none;
}

.header-title {
  font-weight: 300;
  color: #e3f2fd;
  margin: 0;
  font-size: 25px;
  margin-top: 12px;
  margin-left: 12px;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 580px);
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .header-title {
    width: 80% !important;
  }

  .back-btn {
    z-index: 100 !important;
    top: 53px !important;
  }
}

.post-img {
  width: 100%;
  overflow: hidden;
  height: 200px;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.post-title {
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

p.post-text-short {
  height: 120px;
}

p.post-text-short-notice {
  height: 40px;
}

/*----m Assesments Feed ----*/
.assesment-time {
  color: #999;
  float: right;
  padding: 10px;
  font-size: 12px;
  line-height: 3;
}

/*---- Payment Module ----*/
h4.itv-txt {
  display: inline-block;
  width: 120px;
  font-size: 16px;
  font-weight: 300;
  margin: 5px 0;
}

h4.itv-val {
  display: inline-block;
  width: 160px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

/*---- Export Model ----*/
.model-export-classes {
  padding: 4px;
  border: 1px dashed #d2d2d2;
}

.model-export-classes h4 {
  margin: 8px 0;
  font-weight: 300;
  font-size: 16px;
}

.mdl-chip--contact.truncate-text {
  width: 100px;
  overflow: hidden;
}

.mdl-chip--contact.truncate-text .mdl-chip__text {
  text-overflow: ellipsis;
  width: 50px;
  overflow: hidden;
}

.mdl-chip--contact.truncate-text .mdl-chip__contact {
  float: left;
}

.teacher-lst-holder {
  position: relative;
}

p.card-extra-user-count {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  right: 0px;
  top: 8px;
}

p.card-extra-user-count.align-middle {
  margin-left: 4px;
  margin-top: 9px;
  vertical-align: top !important;
}

/*---- Lessons View ----*/
.lesson-list {
  border-bottom: 1px solid #cbc7c7;
  padding: 30px 20px 30px 20px;
  background-color: #ffffff;
}

.ll-heading {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 12px;
}

.ll-lesson-name {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px 0;
}

.ll-lesson-desc {
  margin: 0 0 40px 0;
}

.ll-lesson-topics {
  margin: 0 100px;
}

h5.ll-chapter-progress {
  font-size: 12px;
  margin: 0 0 4px 0;
  font-weight: 400;
  color: #666666;
}

h5.ll-chapter-progress strong {
  font-weight: 500;
}

.lllt-item {
  display: block;
  margin: 0 0 18px 0;
}

.topic-actions {
  display: none;
  margin: 0 10px;
}

.lllt-item:hover .topic-actions {
  display: block;
}

.lesson-list:last-child {
  border: none;
}

.lesson-header {
  padding: 14px 10px;
  background-color: #2196f3;
}

.lh-back-btn {
  width: 240px;
  float: left;
}

.lh-title {
  float: left;
}

.lh-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 300;
}

.lh-back-btn a {
  color: #ffffff !important;
  font-size: 18px;
}

.lesson-container {
  width: 100%;
  height: calc(100vh - 115px);
  background-color: #ffffff;
}

.lc-navigation {
  width: 250px;
  height: 100%;
  border-right: 1px solid #d8d5d5;
  background-color: #f6f7f7;
  padding: 18px;
  overflow: auto;
  float: left;
}

.lc-content {
  float: left;
  width: calc(100% - 250px);
  position: relative;
  height: 100%;
}

ul.lc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.lc-list li {
  padding: 10px 0 10px 30px;
  position: relative;
}

ul.lc-list li a {
  font-size: 15px;
}

ul.lc-list li.done:before {
  content: "\f111";
  position: absolute;
  width: 24px;
  height: 30px;
  font-family: fontawesome;
  color: rgb(78, 198, 11);
  font-size: 18px;
  left: 3px;
  top: 8px;
}

ul.lc-list li.done:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  border-left: 2px solid #4ec60b;
  left: 10px;
  top: 20px;
  z-index: 1;
}

ul.lc-list li:before {
  content: "\f111";
  position: absolute;
  width: 24px;
  height: 30px;
  font-family: fontawesome;
  color: rgb(159, 159, 159);
  font-size: 18px;
  left: 3px;
  top: 8px;
  z-index: 2;
}

ul.lc-list li:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  border-left: 1px dotted #9f9f9f;
  left: 10px;
  top: 20px;
  z-index: 1;
}

ul.lc-list li:last-child:after {
  content: "";
  width: 0px;
  height: 100%;
  position: absolute;
  border-left: none;
  left: 10px;
  top: 20px;
  z-index: 1;
}

ul.lc-list li.active {
  background: none;
}

ul.lc-list li.active a {
  font-weight: 600;
}

.lcc-content {
  width: 100%;
  height: 100%;
  padding-right: 250px;
}

.lcc-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  height: 100%;
  background-color: #f6f7f7;
  border-left: 1px solid #d8d5d5;
  padding: 18px;
}

.lccc-rich-area {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 18px;
  position: relative;
}

h3.lccs-title {
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 10px 0;
}

ul.lccs-downloads {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.lccs-downloads li {
  padding: 4px 0 4px 20px;
  position: relative;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

ul.lccs-downloads li.attachment:after {
  content: "\f019";
  position: absolute;
  font-family: fontawesome;
  left: 0;
  top: 3px;
  color: #3c96d3;
}

ul.lccs-downloads li.url:after {
  content: "\f0c1";
  position: absolute;
  font-family: fontawesome;
  left: 0;
  top: 3px;
  color: #3c96d3;
}

.lccc-student-work-btn {
  display: inline-block;
  padding: 10px 10px;
  background-color: rgba(37, 37, 37, 0.87);
  color: #ffffff;
  position: absolute;
  bottom: -40px;
  right: 0;
  cursor: pointer;
}

.lccc-student-work-btn i {
  transition: All 0.8s ease;
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
}

.smart-board-header.text-left {
  padding-bottom: 10px;
  border-bottom: 1px dashed gray;
  margin-bottom: 10px;
}

.smart-boards {
  display: inline-block;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.51);
  border-radius: 2px;
  color: #ffffff;
}

.lcc-student-works {
  position: absolute;
  width: 100%;
  height: 0px;
  top: 0;
  left: 0;
  background: rgb(65, 65, 65);
  transition: All 0.8s ease;
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
  z-index: 10000;
}

.lcc-sw-content {
  height: 100%;
  overflow: auto;
  padding: 30px;
  display: none;
}

.panel-profile-pic {
  border-radius: 50%;
  width: 40px;
  float: left;
  margin-right: 10px;
}

.panel.panel-md {
  border-radius: 2px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}

.panel-md .panel-heading {
  border-bottom: 1px solid #e7e7e7;
  background-color: #f7f7f7;
  position: relative;
}

.panel-md .panel-heading md-menu {
  position: absolute;
  right: -16px;
  top: 0;
}

.teacher-d-noticeb {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #dbd4d4;
}

.teacher-d-noticeb:last-child {
  border-bottom: none;
}

.qq-upload-button,
.qq-upload-cancel {
  border: none !important;
  color: rgb(255, 255, 255) !important;
  background-color: rgb(33, 150, 243) !important;
  border-radius: 3px;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  outline: none;
  border: 0;
  display: inline-block;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 6px;

  min-height: 36px;
  background: transparent;
  white-space: nowrap;
  min-width: 88px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  font-style: inherit;
  font-variant: inherit;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.qq-upload-cancel {
  min-height: 30px;
  background-color: rgb(244, 67, 54) !important;
}

.qq-upload-button-selector {
  width: 120px !important;
}

.qq-uploader {
  min-height: 110px;
}

.qq-edit-filename-selector.qq-edit-filename {
  width: 300px;
}

.qq-edit-filename-selector.qq-edit-filename.qq-editing {
  width: 294px;
}

.qq-thumbnail-selector {
  width: 25px;
}

.qq-upload-list li {
  position: relative;
  height: 48px;
}

button.qq-btn.qq-edit-filename-icon-selector.qq-upload-cancel.md-xs.qq-editable {
  order: 1;
  position: absolute;
  right: 72px;
  top: 10px;
}

button.qq-btn.qq-upload-cancel-selector.qq-upload-cancel.md-xs,
qq-btn.qq-edit-filename-icon-selector.qq-upload-cancel {
  order: 2;
  position: absolute;
  right: 0;
  top: 10px;
}

button.qq-btn.qq-upload-retry-selector.qq-upload-retry {
  position: absolute;
  right: 120px;
  top: 10px;
}

/*---- Notice Board Admin New ----*/
.notice-comment h4 {
  font-size: 14px;
  margin: 0 0 4px 0;
  font-weight: 300;
  color: black;
}

.notice-comment p {
  padding-left: 51px;
  color: black;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}

.notice-classes {
  padding: 10px 0;
  border-top: 1px dashed #d0d0d0;
}

.notice-classes h5 {
  margin: 4px 0;
  font-weight: 400;
  display: inline-block;
}

.nc-item {
  display: inline-block;
  padding: 2px 10px;
  background-color: #dcdcdc;
  border-radius: 2px;
  margin: 0 4px;
}

.ta-resizer-handle-overlay {
  position: absolute;
}

.teacher-d-noticeb img {
  width: 100%;
  margin-bottom: 30px;
}

.selectdemoSelectHeader {
  /* Please note: All these selectors are only applied to children of elements with the 'selectdemoSelectHeader' class */
}

.selectdemoSelectHeader .demo-header-searchbox {
  border: none;
  outline: none;
  height: 100%;
  width: 100%;
  padding: 0;
}

.selectdemoSelectHeader .demo-select-header {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.14),
    0 0 0 0 rgba(0, 0, 0, 0.12);
  padding-left: 10.667px;
  height: 48px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  width: auto;
}

.selectdemoSelectHeader md-content._md {
  max-height: 240px;
}

.notice-item p {
  font-size: 13px !important;
  font-weight: 300 !important;
  color: black !important;
}

.notice-item {
  padding: 0 0 14px 0;
}

a.read-more,
a.read-less {
  cursor: pointer;
  color: blue;
}

span.more-text {
  display: none;
}

span.more-text.show {
  display: inline !important;
}

/*---- Guarding Card For Student Quick Profile ----*/
.guardian-card {
  padding: 8px 0;
}

.guardian-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
}

.guardian-card h5 {
  margin: 0;
}

.guardian-card h6 {
  margin: 4px 0 0 0;
  font-size: 13px;
  font-weight: 400;
}

/*---- Teacher Dashobard Reports Icons ----*/
.teacher-report-card {
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding: 20px 2px;
  border-radius: 2px;
  cursor: pointer;
}

.teacher-report-card img {
  width: 100px;
  height: 100px;
}

.teacher-report-card h4 {
  font-size: 14px;
  font-weight: 400;
  color: #3a3838;
  margin: 20px 0 0 0;
}

.asmnt-score {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #0b9d09;
  text-align: center;
  margin: 10px auto 20px auto;
  padding-top: 20px;
  color: #fff;
  position: relative;
}

.asmnt-score h4 {
  /*font-size: 37px;changed by shanika for CC-1623*/
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

/* ----Assessment Reoprt -----*/

.test-tbl {
  position: relative;
  margin: 0 auto;
  /* width: 700px; */
  max-width: calc(62vw);
  overflow: hidden;
  border-collapse: collapse;
}

/*thead*/

.test-tbl thead {
  position: relative;
  /* display: block; */
  /*seperates the header from the body allowing it to be positioned*/
  /* width: 700px; */
  overflow: visible;
}

.test-tbl thead th {
  /* min-width: 120px; */
  height: 32px;
  /* border: 1px solid #222; */
}

.test-tbl thead th:nth-child(1) {
  /*first cell in the header*/
  position: relative; /*
display: block; */
  /*seperates the first cell in the header from the header*/
  /* min-width: 222px; */
  background-color: #ffffff;
}

/*tbody*/

.test-tbl tbody {
  position: relative;
  /* display: block; */ /*
width: calc(98vw - 30px); */
  /* top: -2px; */ /*
max-height: calc(95vh - 330px); */
  overflow: auto;
}

.test-tbl tbody td {
  /* min-width: 120px; */
  /* border: 1px solid #222; */
}

.test-tbl tbody tr td:nth-child(1) {
  /*the first cell in each tr*/
  position: relative;
  /* display: block */
  /*seperates the first column from the tbody*/
  height: 56px;
  z-index: 50;
}

.test-tbl thead th:not(:nth-child(1)) {
  border-left: 0;
}

.test-tbl thead th:not(:nth-child(1)) {
  border-left: 0;
}

.test-tbl thead tr:nth-child(1) th {
  border-bottom: 0;
}

.test-tbl thead tr:nth-child(2) th:nth-child(1) {
  border-top: 1;
}

.test-tbl tbody tr:nth-child(1) td {
  border-top: 0;
}

.test-tbl tbody tr td:nth-child(3) {
  border-left: 0;
}

.test-tbl tbody tr td:nth-child(1) {
  border-bottom: 0;
}

.test-tbl tbody tr:nth-child(odd) {
  background-color: #eaeaea;
}

.test-tbl tbody tr:nth-child(odd) td:nth-child(1) {
  background-color: #eaeaea;
}

.test-tbl tbody tr:nth-child(even) td:nth-child(1) {
  background-color: #ffffff; /*
margin-bottom: -1px; */
  /* border-bottom: 1px solid #000; */
}

.test-tbl tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.assesment-mark-table-holder {
	padding: 10px 15px;
	width: auto;
	background-color: #fff;
}

.test-tbl tbody tr:last-child td:first-child {
	border-bottom: solid 1px;
	margin-bottom: -1px;
}

.subjectcell {
  vertical-align: baseline;
}

.subjectcell > p {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 16px;
}

.chipcell {
  padding-bottom: 0 !important;
}

.inlineblock {
  display: inline-block;
}

.accentbluebg {
  background-color: #2196f3;
  color: white;
  line-height: 24px;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 12px;
}

.p-xy-20-10 {
  padding: 10px 20px;
}

.pb-0 {
  padding-bottom: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.td16px > tbody {
  font-size: 16px;
  font-weight: 400;
}

.blk64 {
  color: rgba(0, 0, 0, 0.64);
}

.box-footer-content .md-primary {
  margin-bottom: 0px !important;
}

.box-footer-content > md-checkbox {
  line-height: 34px;
}

.cardcage {
  height: calc(100vh - 262px);
  overflow-y: auto;
  overflow-x: hidden;
}

.noticebox {
  overflow-x: auto;
}

.floatingboxes {
  width: 180px;
  margin-right: 6px;
  float: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.md-select--margin-adjust {
  margin: 10px 0 10px 0 !important;
}

@media screen and (min-width: 992px) {
  .floatingboxes {
    float: right;
    margin-top: 24px;
  }

  .md-select--margin-adjust {
    margin: 20px 0 26px 0 !important;
  }
}

/* Fab replacement buttons by dharatha */

.btn-icon-blue {
  color: #1473b3;
  font-size: 18px;
}

.btn-icon-green {
  color: #18a45d;
  font-size: 18px;
}

.fab-replacement-btns {
  padding-right: 15px;
  padding-top: 10px;
}

.fab-replacement-btns > button {
  margin: 5px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.13);
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
  border: none;
  outline: none !important;
  line-height: 34px;
}

.fab-replacement-btns > button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* notification panel */
.notice-icon {
  padding-top: 12px;
}

/* Web cam Error */
.cam-error {
  width: 520px;
  height: 520px;
  text-align: center;
}

/** notice*/
.nc-item-cls,
.nc-item-grd,
.nc-item-sec,
.nc-item-teacher {
  display: inline-block;
  padding: 1px 3px;
  border-radius: 2px;
  margin: 0 4px;
}

.nc-item-cls {
  background-color: #dcdcdc;
}

.nc-item-grd {
  background-color: #99b7ea;
}

.nc-item-sec {
  background-color: #53af77;
}

.nc-item-sh {
  background-color: #53af77;
}

.nc-item-teacher {
  background-color: #b98e85;
}

.shared-with {
  margin-left: 12px;
}

.mdl-card .jitsi-modal {
  position: absolute;
  right: 12px;
  top: 5px;
  font-size: 25px;
  cursor: pointer;
}

.md-mailbox-header .jitsi-modal {
  font-size: 35px;
  margin-top: 4px;
  margin-left: 13px;
  cursor: pointer;
}

.list-profile-container .list-profile-item .list-profile-content{
  text-overflow: ellipsis;
  padding-right: 4px;
  overflow: hidden;
  max-width: 48%;
}

.no-view-record .no-data {
    box-shadow: none;
}

.no-view-record .fa-exclamation:before {
    opacity: 0.6;
}

.no-view-record .no-data-icon {
    opacity: 0.6;
}

.videogular-container {
	width: 100%;
	height: 320px;
	margin: auto;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.videogular-container {
		width: 1070px;
		height: 480.125px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.videogular-container {
		width: 940px;
		height: 528.75px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.videogular-container {
		width: 728px;
		height: 409.5px;
	}
}



/* Emergancy contact icon */
.emergancy-contact-icon {
  position: relative;
  font-size: 20px;
  color: red;
  top: 3px;
}

.default-guardian-icon {
  position: relative;
  font-size: 20px;
  top: 3px;
}

.default-guardian-icon .active{
  color: red;
}
.msg-box-type-holder {
    border: 1px dashed #aaaaaa;
    padding: 10px;
    position: relative;
    margin: 20px 0;
}

.msg-box-type-holder h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    top: -10px;
    left: 6px;
    background: #ffffff;
    padding: 0 2px;
    color: #3d3d3d;
}

.custom-file-input {
  color: transparent;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Upload Files';
  color: black;
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active {
  outline: 0;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}

.md-dialog-overflow {
  overflow-y: auto;
  overflow-x: auto;
}


.hier-def {
  font-weight: bold;
}

.hierarchy table {
  padding-left: 12px; 
  padding-right: 10px;
}

.invalidField {
  font-size: 12px;
  text-align: left;
  color: rgb(221,44,0);
}

.validField {
  font-size: 12px;
  text-align: left;
  color: green;
}

.toggle-password {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 0;
}

.dialog-md-content-inner {
  overflow-y: auto;
}

.dialog-md-content-inner .dialog-md-scroller {
  max-width: 1000px;
  min-width: 1000px;
}


.txt-loader{
  display: inline;
  font-size: 6px;
  position: absolute;
  right: 10px;
  top: 11px;
}

.txt-loader-holder{
  position: relative;
}


.leave-rule-manager md-tabs-wrapper {
  /* border-width: 0 0 1px;
  border-style: solid; */
  -webkit-box-shadow: 0 1px 3px 0 rgb(0 0 0 / 40%);
  box-shadow :0 1px 3px 0 rgb(0 0 0 / 40%);
}

md-toolbar.md-warn > md-tabs.md-default-theme,
md-tabs > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) {
    color: rgb(255,205,210);
}

/* ----Assessment Reoprt -----*/

.test-tbl-subj {
    position: relative;
    width: 700px;
    overflow: hidden;
    border-collapse: collapse;
}

/*thead*/

.test-tbl-subj thead {
    position: relative;
    display: block;
    /*seperates the header from the body allowing it to be positioned*/
    width: 700px;
    overflow: visible;
}

.test-tbl-subj thead th {
    min-width: 196px;
    padding: 0 10px;
    height: 32px;
    border: 1px solid #222;
    white-space: normal;
    text-align: center;
}

.test-tbl-subj thead th md-checkbox {
    vertical-align: top;
    padding-top: 8px;
}

.test-tbl-subj thead th .subj-header{
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.test-tbl-subj thead th:nth-child(1) {
    position: relative;
    display: block;
    min-width: 222px;
    background-color: #ffffff;
    height: 72px;
    padding-top: 20px;
    border-top: 1px solid;
    border-right: 1px solid;
    border-image: initial;
    left: 0px;
    top: 0px;
}

/*tbody*/

.test-tbl-subj tbody {
    position: relative;
    display: block;
    width: calc(92vw - 30px);
    top: -3px;
    height: calc(95vh - 330px);
    overflow: auto;
}

.test-tbl-subj tbody td {
    min-width: 196px;
    border: 1px solid #222;
}

.test-tbl-subj tbody tr td:nth-child(1) {
    /*the first cell in each tr*/
    position: relative;
    display: block;
    /*seperates the first column from the tbody*/
    height: 56px;
    z-index: 50;
}

.test-tbl-subj thead th:not(:nth-child(1)) {
    border-left: none;
}

.test-tbl-subj thead th:not(:nth-child(1)) {
    border-left: none;
}

.test-tbl-subj thead tr:nth-child(1) th {
    /* border-bottom: 0; */
}

.test-tbl-subj thead tr:nth-child(2) th:nth-child(1) {
    border-top: 0;
}

.test-tbl-subj tbody tr:nth-child(1) td {
    /* border-top: 0; */
}

.test-tbl-subj tbody tr td:nth-child(3) {
    border-left: 0;
}

.test-tbl-subj tbody tr td:nth-child(1) {
    border-bottom: 0;
    width: 222px;
}

.test-tbl-subj tbody tr td:nth-child(1) .stu-name {
    font-size: 14px;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.test-tbl-subj tbody tr td:nth-child(2) {
   border-left-width: 0px;
}

.test-tbl-subj tbody tr:nth-child(odd) {
    background-color: #EAEAEA;
}

.test-tbl-subj tbody tr:nth-child(odd) td:nth-child(1) {
    background-color: #EAEAEA;
}

.test-tbl-subj tbody tr:nth-child(even) td:nth-child(1) {
    background-color: #ffffff;
    margin-bottom: -1px;
    border-bottom: 1px solid #000;
}

.test-tbl-subj tbody tr:nth-child(even) {
    background-color: #ffffff;
}


.svss-config-provvider-list{
  padding-top: 25px;
}

.mdl-card .svss-modal {
  position: absolute;
  right: 12px;
  top: 5px;
  font-size: 25px;
}

.md-mailbox-header .svss-modal {
  font-size: 35px;
  margin-top: 4px;
  margin-left: 13px;
  height: 60px;
  width: 330px;
  float: left;
}

.svss-modal .svss-icon {
  width: 45px;
  float: left;
  cursor: pointer;
}

.svss-modal .svss-action {
  float: left;
  font-size: 17px;
  margin-top: 6px;
}

.svss-modal .svss-action-mod {
  float: left;
  font-size: 17px;
  margin-top: 9px;
  text-align: center;
}

.svss-modal .svss-action .v-session-create-btn{
    cursor: pointer;
    width: 100%;
}

.v-session-create-btn .v-create{
  padding: 3px 8px;
  border-radius: 6px;
  background: #FFFFFF;
  display: block;
  color: #008eff;
  width: 100%;
}

.v-session-create-btn .v-session{
  padding: 5px 8px;
  border-radius: 6px;
  background: #008000;
  display: block;
  color: #FFF;
  width: 100%;
  font-size: 13px;
}


.svss-records {
  position: relative;
  width: 120px;
  float: left;
}

.svss-records .rec-but{
  margin-top: 12px;
  margin-left: 15px;
}

.svss-info{
  position: absolute;
  top: 27px;
  left: 0px;
  width: 50px;
  height: 25px;
}


.svss-info .svss-time{
  font-size: 8px;
  position: absolute;
}

.class-info{
  width: 264px;
    height: 27px;
    overflow: hidden;
}

.exam-mark-input input{
    border: 1px #7a7a7a solid !important;
    width: 90px !important;
    margin-bottom: 8px !important;
}

.exam-mark-input span {
    position: absolute;
    top: 35px;
    left: 0px;
    font-size: 11px;
    color: red;
}

.dashboard-user-count-card h3{
   font-size: 34px !important;
   margin: 0 0 2px 0 !important;
}

.dashboard-user-count-card .icon{
    font-size: 72px !important;
}

.header-title {
    font-weight: 300;
    /* color: #e3f2fd; */
    color: #ffffff;
    margin: 0;
    font-size: 25px;
    margin-top: 12px;
    margin-left: 12px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: calc(100% - 525px);
    white-space: nowrap;
}

.md-mailbox-header {
    position: relative;
}

.md-mailbox-header>button.md-fab {
    position: absolute;
    bottom: -25px;
    right: 25px;
}

.md-mailbox-header>md-fab-speed-dial {
    position: absolute;
    bottom: -25px;
    right: 25px;
}

.custom-th {
  background-color: #f7f7f7 !important;
  color: #000 !important;
  font-weight: 600 !important;
}

.sidebar-main-menu-txt {
  position: absolute !important;
  left: 48px !important;
}


/*---- Module Selection New ----*/
.cs-module-selction {
  max-width: 570px;
  margin: auto;
  -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2), 0px -1px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2), 0px -1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2), 0px -1px 5px rgba(0, 0, 0, 0.2);
  padding: 14px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
  border-radius: 4px;
}

.cs-ms-module {
  width: 94px;
  margin: 14px 20px;
  cursor: pointer;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}

.cs-ms-module a {
  color: #4c4c4c;
  text-decoration: none;
}

.cs-ms-module:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.cs-ms-module p {
  font-size: 13px;
  font-weight: 300;
  margin: 6px 0 0 0;
}

.module-switch-modules-holder {
  padding: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.msmh-modules {
  width: 64px;
  text-align: center;
  margin: 11px 11px;
}

.msmh-modules a {
  text-decoration: none;
  color: #636363;
  font-size: 13px;
}

.msmh-modules img {
  width: 64px;
}

.msmh-modules p {
  margin: 6px 0;
}

.notification-menu-dropdown {
  padding: 8px;
  position: absolute;
  right: 0;
  left: auto;
  min-width: 210px;
  background-color: #ffffff;
  float: none;
}

.staff-position-label {
  border-radius: 48px;
  font-size: 12px;
  padding: 4px 8px;
  color: #ffffff;
  margin: 4px 4px 0 0;
  border: 1px solid #fff;
  display: inline-block;
  white-space: normal;
}

.staff-position-label.sec-head {
  background: #0c581d;
}

.staff-position-label.grd-head {
  background: #0e608b;
}

.staff-position-label.cls-tch {
  background: #4d1576;
}

.staff-position-label.subj-tch {
  background: #5e605e;
}

.staff-position-label.subj-head {
  background: #8f5039;
}


.md-datepicker-calendar-pane {
  z-index: 10001 !important;
}

.attendance-day-status {
  border-radius: 4px;
  margin: 12px 0;
  padding: 8px 16px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  width: 172px;
  cursor: pointer;
}

.attendance-day-status.green {
  background-color: #00A65A;
}

.attendance-day-status.yellow {
  background-color: #f19b12;
}

.attendance-widget-timer {
  padding: 12px;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  width: 196px;
  display: flex;
  self: center;
  flex-direction: column;
  margin-bottom: 12px;

  .timer-title {
    font-size: 15px;
    font-weight: 500;
  }

  .timer-time {
    color: #2196f3;
    font-weight: 500;
    font-size: 18px;
  }
}

.marking-disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.square-btn {
  border-radius: 4px;
  width: fit-content;
  background-color: white;
  padding: 8px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  margin-right: 4px;
}

md-hours-minutes input {
  color: inherit !important;
}

.md-button.md-fab {
  line-height: 24px !important;
}

.list-content {
  min-height: 100px !important;
  height: auto !important;
}

.doc-download-icon {
  font-size: 18px;
  margin-right: 12px;
}

.doc-download-icon {
  font-size: 18px;
  margin-right: 12px;
}

.doc-delete-icon {
  color: #f54336;
  font-size: 18px;
  margin-right: 12px;
  cursor: pointer;
}

/* For screens 768px and below */
@media (max-width: 768px) {
  .dialog-resizer-full-width {
    max-width: 100vw !important;
    min-width: 100vw !important;
  }
}

.class-list-cont {
  min-width: 425px;
}

@media (max-width: 768px) {
  .class-list-cont {
    min-width: 100vw;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
  }
}

@media only screen and (max-width: 650px) {
  .mobile-title-style {
    height: 124px;

    .csbox__tools {
      margin-top: 24px;
    }
  }
}

.stu-status-label {
  padding: 4px 8px;
  width: fit-content;
  border-radius: 16px;
  color: #fff;
  font-size: 11px;
  margin-right: 2px;
}

.stu-status-label.green {
  background-color: #0f9d58;
}

.stu-status-label.yellow {
  background-color: #939393;
}

.stu-status-label.red {
  background-color: #c23f32;
}





