.messengerMessage{
    position: absolute;
    background: aliceblue;
    margin: 5px;
    width: 100%;
    height: 50px;
    z-index: 9;
    scroll-behavior: auto;
    display: grid;
}

.admin-page {
    background-color: #F0F0F0;
    width: 100%;
    min-height: 100vh;
    text-align: center;
    padding-top: 60px;
}

.admin-page .admin-panel {
    left: 15px;
    top: 75px;
    width: calc(100% - 30px);
    height: calc(100% - 90px);
    position: absolute;
}

.admin-page .no-students-text {
    padding: 10px;
    text-align: left;
    font-weight: 600;
}

.admin-page .admin-panel .top {
    height: 30px;
    line-height: 30px;
    display: table-cell;
    text-align: center;
    padding: 5px 10px 0px 0px;
    margin: 0 10px;
    min-width: 150px;
}

.admin-page .admin-panel .top button {
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #F0F0F0;
    background-color: #FFF;
}

.admin-page .admin-panel .top button:focus {
    outline: 0 !important;
}

.admin-page .admin-panel .top button.selected {
    background-color: #4a469c;
    color: #FFF;
    border-bottom: 0;
}

.admin-page .admin-panel .top button.inactive {
    background-color: #FFF;
    color: #F0F0F0;
}

.admin-page .admin-panel .main {
    display: block;
    height: calc(100% - 40px);
    background-color: #FFF;
    overflow-y: auto;
    overflow-x: auto;
    max-width: calc(100vw - 40px);
}

@media (max-device-width: 1200px) {
    .admin-page .admin-students-view {
        transform: scale(.70);
        transform-origin: 0 0;
    }
}

.admin-page .admin-panel .main .student-row {
    width: 100%;
}

.admin-page .admin-panel .main .student-row.new-student {
    height: 40px;
}

.admin-page .student-row.odd {
    background-color: #FAFAFA;
}

.admin-page .student-row.inactive {
    opacity: 0.5;
}

.admin-page .admin-panel .main .student-row .student-desc {
    position: relative;
    display: inline-block;
    width: 70%;
    max-width: 500px;
}

.admin-page .admin-panel .main .student-row .student-mastery {
    position: relative;
    display: inline-block;
    max-width: 30%;
    padding-left: 3px;
    text-align: center;
    padding-right: 3px;
}

.admin-page .admin-panel .main .student-row .student-mastery:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
}

.admin-page .admin-panel .main .student-row .cell {
    display: table-cell;
    line-height: 30px;
    height: 30px;
}

.admin-page .admin-panel .main .student-row .cell.relative-position {
    position: relative;
}

.admin-page .admin-panel .main .student-row .cell .error-popup {
    position: absolute;
    right: 10px;
    background-color: #4a469c;
    transform: translateY(-65px);
    border-radius: 8px;
    color: #FFF;
}

.admin-page .admin-panel .main .student-row .cell .error-popup.bottom {
    transform: translateY(5px);
}

.admin-page .admin-panel .main .student-row .cell .error-popup:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -4px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #4a469c;
    border: 1px solid #4a469c;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.admin-page .admin-panel .main .student-row .cell .error-popup.bottom:before {
    bottom: inherit;
    top: -4px;
}

.admin-page .admin-panel .main .student-row .cell.name {
    width: 200px;
}

.admin-page .admin-panel .main .student-row .cell.name.bold {
    font-weight: 600;
}

.admin-page .admin-panel .main .student-row .cell.gender {
    width: 100px;
}

.admin-page .admin-panel .main .student-row .cell.grade {
    width: 70px;
}

.admin-page .admin-hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.admin-page .admin-panel .main .student-row .cell.separator {
    display: table-cell;
    line-height: 30px;
    height: 30px;
    width: 100%;
}

.admin-page .admin-panel .main .student-row .cell > * {
    margin: 0 5px;
    padding: 0 5px;
    min-width: 100px;
    white-space: nowrap;
}

.admin-page .admin-panel .main .student-row .cell .capsule {
    position: relative;
    min-width: 120px;
}

.admin-page .admin-panel .main .student-row .cell .capsule:before {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    right: 5px;
    bottom: 3px;
    left: 5px;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
}

.admin-page .admin-panel .main .student-row .cell .capsule.warn:before {
    background-color: rgba(207, 255, 0, 0.16);
}

.admin-page .admin-panel .main .student-row .cell input {
    width: 100px;
    height: 28px;
    line-height: 100%;
    padding: 0px 5px;
    text-align: center;
}

.admin-page .admin-panel .main .student-row .cell .dropdown button {
    padding: 2px 15px;
}

.admin-page .admin-panel .main .student-row .cell ul {
    display: block;
}


/* TEAM VIEW */

.admin-page .teams {
    width: 100%;
    height: 100%;
}

.admin-page .teams .panel-top-bar {
    width: 100%;
    padding: 5px 10px;
    border-bottom: 3px solid #DCDCDC;
    height: 50px;
}

.admin-page .teams .panel-top-bar .create-panel {
    background-color: #FFF;
    width: 700px;
    height: 80px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #F1F1F1;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08);
    z-index: 1;
    position: absolute;
    right: 15px;
    top: 45px;
}

.admin-page .teams .panel-top-bar .create-panel > span {
    width: 100%;
}

.admin-page .teams .panel-top-bar .create-panel > * {
    display: inline-block;
}

.admin-page .teams .student-row {
    text-align: left;
    line-height: 20px;
    width: 100%;
    padding: 0px 15px;
}

.admin-page .teams .student-row input {
    margin: 0px 10px;
}

.admin-page .teams .student-row label {
    width: 100%;
}

.admin-page .teams .student-row label input[type="checkbox"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    -ms-appearance: radio;
}

.admin-page .teams .student-row.odd {
    background-color: #FAFAFA;
}

.admin-page .teams .panel-top-bar .panel-text {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    min-width: 200px;
    line-height: 40px;
}

.admin-page .teams .panel-top-bar > * {
    display: table-cell;
    height: 30px;
    line-height: 30px;
    padding: 0px 3px;
}

.admin-page .teams .panel-top-bar .separator {
    display: table-cell;
    line-height: 30px;
    height: 30px;
    width: 100%;
}

.admin-page .teams .team-row {
    text-align: left;
    line-height: 20px;
    width: 100%;
    padding: 0px 15px;
    margin: 5px 0px;
    background-color: #4a469c;
}

.admin-page .admin-panel .main .team-row .cell {
    display: table-cell;
    line-height: 30px;
    height: 30px;
}

.admin-page .admin-panel .main .team-row .cell > * {
    margin: 0 10px;
    padding: 0 10px;
    min-width: 120px;
}

.admin-page .admin-panel .main .team-row .cell.separator {
    display: table-cell;
    line-height: 30px;
    height: 30px;
    width: 100%;
}

.admin-page .admin-panel .main .team-row .cell .text {
    color: #FFF;
    white-space: nowrap;
}

.admin-page .admin-panel .main .team-row ul.dropdown-menu {
    display: inherit;
}


/* Scheduler */

.admin-page .admin-panel .main .sheduler {}

.admin-page .admin-panel .main .sheduler .bottom {
    width: 100%;
    position: absolute;
    height: 50px;
    line-height: 50px;
    bottom: 0;
    text-align: right;
    padding: 0px 20px;
}

.admin-page .admin-panel .main .sheduler .bottom button.red-hot {
    min-width: 140px;
}

.admin-page .admin-panel .main .sheduler .bottom button.red-hot:hover {
    background-color: #EC797F;
    color: #FFF;
    font-weight: 600;
    border-color: #FFF;
}

.admin-page .admin-panel .main .sheduler ul.dropdown-menu {
    display: inherit;
}

.admin-page .admin-panel .main .sheduler table {
    margin: 15px;
}

.admin-page .admin-panel .main .sheduler td {
    border: 1px solid #D4D4D4;
    min-width: 100px;
    height: 30px;
    line-height: 30px;
    padding: 5px;
    text-align: center;
}

.admin-page .admin-panel .main .sheduler .timeslot {
    font-family: monospace;
    position: relative;
    padding: 5px 25px;
    line-height: 20px;
    text-align: center;
}

.admin-page .admin-panel .main .sheduler .timeslot span {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    vertical-align: middle;
    padding: calc(50% - 16px) 0px 0px 0px;
    margin: 0 auto;
    width: 45px;
    height: 100%;
}

.admin-page .admin-panel .main .sheduler .timeslot:hover span {
    display: inherit;
}

.admin-page .admin-panel .main .sheduler .add-cell {
    border: 0;
    width: 125px;
    min-width: 125px;
    cursor: pointer;
}

.admin-page .admin-panel .main .sheduler .add-cell > * {
    display: table-cell;
    height: 100%;
    font-size: 12px;
    vertical-align: middle;
}

.admin-page .admin-panel .main .sheduler .add-cell > .left {
    min-width: 30px;
    background-color: #C7C7C7;
}

.admin-page .admin-panel .main .sheduler .add-cell > .right {
    width: 100%;
    background-color: #f5f5f5;
}

.admin-page .admin-panel .main .sheduler .delete-slot {
    border: 0;
    cursor: pointer;
}

.admin-page .admin-panel .main .sheduler .delete-slot > * {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: x-large;
    color: #FFC8C8;
}

.admin-page .admin-panel .main .sheduler .delete-slot > *:hover {
    color: #FF6262;
}

.admin-page .admin-panel .main .sheduler tr.header {
    font-size: 120%;
    font-weight: 600;
}

.admin-page .admin-panel .main .sheduler td:first-child {
    font-weight: 600;
    width: 125px;
}

.admin-page .admin-panel .main .sheduler .blank {
    border: 0;
}

.admin-page .admin-panel .forgot-panel {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.admin-page .admin-panel .forgot-panel .forgot-header {
    font-size: 250%;
    font-weight: 600;
    color: #7D7D7D;
    text-align: left;
    padding-left: 20px;
}

.admin-page .admin-panel .forgot-panel .forgot-header.error {
    color: #dc5b5b;
    text-align: center;
}

.admin-page .admin-panel .forgot-panel .forgot-header.success {
    text-align: center;
}

.admin-page .admin-panel .forgot-panel .left {
    position: absolute;
    left: 0;
    width: 100px;
    padding-top: 10px;
}

.admin-page .admin-panel .forgot-panel .right {
    position: absolute;
    left: 0;
    margin-left: 100px;
    width: calc(100% - 100px);
    text-align: left;
    font-size: 120%;
    padding: 5px 0;
    line-height: 30px;
}

.admin-page .admin-panel .forgot-panel .right input {
    width: calc(100% - 100px);
}

.admin-page .admin-panel .forgot-panel .right button {
    width: 95px;
}

.admin-page .admin-panel .forgot-panel .right .info {
    font-size: 80%;
    color: #6F6F6F;
}

.admin-page .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.33);
}

.admin-page .overlay .admin-popover {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    margin: 0 auto;
}

.admin-page .overlay .admin-popover .timeslot-container {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 3px solid #EFEFEF;
    background-color: #FFF;
    height: 190px;
}

.admin-page .overlay .admin-popover .timeslot-container button {
    margin: 0 10px;
}

.admin-page .overlay .admin-popover .timeslot-container .title {
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
}

.admin-page .overlay .admin-popover .timeslot-container .slots {
    height: 50px;
    background-color: #F9F9F9;
    line-height: 50px;
    margin-bottom: 15px;
}

.admin-page .overlay .admin-popover .timeslot-container .slots.title {
    margin-bottom: 0px;
    padding: 5px 0;
    line-height: 20px;
    height: 20px;
}

.admin-page .overlay .admin-popover .timeslot-container .slots > * {
    display: table-cell;
    width: 100%;
    padding: 0px 20px;
    height: 50px;
    vertical-align: middle;
}

.admin-page .overlay .admin-popover .timeslot-container .slots.title > * {
    height: 20px;
}

.admin-page .overlay .admin-popover .timeslot-container .slots .bootstrap-timepicker {
    width: 160px;
}

.admin-page .overlay .admin-popover .timeslot-container .slots .text > div {
    width: 160px;
}

.ui-timepicker-wrapper {
    width: 160px;
}


/* PRINTING RULES */

.admin-page .admin-panel .main .sheduler .printing {
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(.7);
    transform-origin: 0 0;
}

.admin-page .admin-panel .main .sheduler .printing .clear .print-title {
    text-align: center;
    padding: 15px;
    border: 3px solid #EFEFEF;
}

.admin-page .admin-panel .main .sheduler .printing td {
    border: 1px solid #000;
}

.admin-page .admin-panel .main .sheduler .printing .clear {
    text-align: left;
    padding: 10px;
    line-height: 15px;
}

.admin-page .admin-panel .main .sheduler .printing .clear td {
    border: 0;
    width: inherit;
    min-width: inherit;
}


/* REPORTS */

.admin-page .reports {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 5px 0 0 15px;
}

.admin-page .reports h4 {
    border-bottom: 2px solid #000000;
    color: #626262;
    padding-bottom: 5px;
}

.admin-page .reports .vertical-selector {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    text-align: center;
}

.admin-page .reports ul.type {
    list-style-type: none;
    margin: 0;
    padding: 0 5px;
    width: 250px;
    text-align: center;
}
.admin-wide-ul {
    width: 450px !important;
}
    .admin-page .reports ul.filter {
        margin: 0;
        text-align: left;
        font-size: .9em;
    }

.admin-page .reports li {
    font-size: 130%;
    color: #787878;
}

.admin-page .reports .school-dropdown-menu {
    position: absolute;
    top: 52px;
    right: 20px;
    z-index: 1000;
    padding: 5px 10px;
    margin: 2px 0 0;
    min-width: 300px;
    font-size: 11px;
    text-align: center;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.admin-page .reports div.school-report-container {
    position: relative;
    float: right;
}

.admin-page .reports li:hover {
    color: #000;
    background-color: #f8f8f8;
}

.admin-page .reports li.selected {
    color: #000;
    background-color: #efefef;
}

.admin-page .reports li.invalid {
    color: #ff7a7a;
}

.admin-page .reports li.invalid.selected {
    color: #f00;
}

.admin-page .reports .vertical-selector.generate-button {
    /*
    margin: 20px 0;
    position: fixed;
    top: 100px;
    text-align: left;
    */
}

.admin-page .reports .vertical-selector.generate-button button {
    font-family: monospace;
    margin: 20px;
    font-weight: 600;
}
.admin-page .reports .optionalDateSelect{
    border: solid;
    border-width: 1px;
    margin-top: 2px;
    min-width: 275px;
}
.sfa-datepicker-layout{
    max-height: 400px;
    overflow: hidden;
}

.sfa-datepicker  {
  text-align: left; !important;
}
.sfa-datepicker_input{
    margin-left: 10px;
    margin-bottom: 5px;
}

.sfa-datepicker .input-group-btn{
    background-color: #ff0000;
}
/*input[type="date"]::-webkit-clear-button {
    -webkit-appearance: none;
    display: none;
}*/
.rateKey{
    padding: 1px;
    margin-right: 20px;
}
.printing-tutor {
    width: 100% !important;
    margin: 20mm !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 !important;
    background: transparent !important;
    min-height: initial !important;
    position: relative !important;
    page-break-before: always !important;
    page-break-after: avoid !important;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif !important;
}

.printing-tutor.IE11 {
    position: absolute !important;
    top: -20mm;
    left: -20mm;
}

.printing-tutor .title {
    width: 100%;
    display: block;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
}

.printing-tutor .subtitle {
    width: 100%;
    display: block;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    padding-left: 30px;
}


.printing-tutor table {
    border: 1px solid #d9d9d9;
    width: calc(100% - 40mm);
    text-align: center;
    font-size: 80%;
    margin: 0 20mm;
}

.printing-tutor table.padded {
    border: 1px solid #d9d9d9;
    width: calc(100% - 40mm);
    text-align: center;
    font-size: 80%;
    margin: 10mm 20mm 0 20mm;
}
.sd-table {
    border: 1px solid #d9d9d9;
    width: calc(100% - 40mm);
    text-align: center;
    font-size: 80%;
    margin: 10mm 20mm 0 20mm;
}

.printing-tutor tr {
    height: 50px;
}

.printing-tutor td {
    padding: 5px;
    border: 1px solid #d9d9d9;
}

.printing-tutor td.title-td {
    text-align: left !important;
    padding-left: 10px;
    font-size: 14px;
    background-color: #a8e7ff !important;
}

.printing-tutor td.bold-td {
    font-weight: 600;
}

.printing-tutor td.shaded {
    background-color: #efefef !important;
}

.printing-tutor .table-header td:nth-child(odd) {
    background-color: #c1eeff !important;
}

.printing-tutor td:nth-child(odd) {
    background-color: #e5f6fd !important;
}
.printing-tutor .table-header td:nth-child(odd).shaded {
    background-color: #efefef !important;
}

.printing-tutor .table-title  {
    background-color: white !important;
    border: none;
}
.printing-tutor td:nth-child(odd).shaded {
    background-color: #efefef !important;
}

.printing-tutor p.paging {
    font-family: monospace;
    font-size: 80%;
    padding: 0 0 0 20mm;
}

.printing-student .paging {
    font-family: monospace !important;
    font-size: 80% !important;
    padding: 5mm 10mm !important;
}

.btn.btn-default.btn-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.printing-student {
    width: 100% !important;
    min-height: initial !important;
    page-break-before: avoid !important;
    page-break-after: avoid !important;
    position: absolute;
    display: inherit;

    width: 210mm !important;
    visibility: hidden !important;
    /*
    height: 291mm !important;
    background: white;
    border: 2px solid;
    z-index: 2;
    */
}

.printing-student.ng-hide {
}

.printing-student .img-header {
    position: absolute;
    top: 0;
    margin: 0 auto;
    height: 43mm;
    left: 50%;
    transform: translateX(-50%);
}


    .printing-student .text-header {
        position: absolute;
        top: 18mm;
        height: 25mm;
        width: 100%;
        text-align: center;
        font-size: 14mm;
        line-height: 80%;
        font-weight: 800;
        color: #0090aa !important;
    }



.printing-student .section-title {
    font-size: 4mm;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    color: #0091ab !important;
}
.chart-Footer{
    color: #000 !important;
    font-size: 4mm;
    text-align: center;
}

.printing-student .section-title.large {
    font-style: normal;
    font-size: 5mm;
}

.printing-student .stories-section .text {
    font-weight: 600;
    padding: 2mm 0mm;
    font-size: 3.5mm;
    line-height: 6mm;
}

.printing-student .stories-section .text .left {
    display: inline-block;
    width: 35%;
}

.printing-student .stories-section .text .right {
    display: inline-block;
    width: 64%;
}

.printing-student .listen-section {
    margin-top: 5mm;
    margin-left: 6mm;
    padding: 3mm 10mm;
    width: calc(100% - 12mm);
}

.printing-student .spelling-section {
    margin-top: 5mm;
    margin-left: 6mm;
    width: calc(100% - 12mm);
    padding: 3mm 10mm;
    border-radius: 3mm;
    background-color: #d3fbff !important;
}

.printing-student .section-word {
    display: inline-block;
    width: 32%;
    font-size: 4mm;
    text-align: center;
    font-weight: 600;
}

.printing-student .progress-section {
    margin-top: 5mm;
    height: 73mm;
    width: 100%;
}
.admin-resources{
    text-align: left;
    font-size: 1.5em;
    margin: 25px;
}
.admin-studentTransfer{
    text-align: left;
    font-size: 1.5em;
    margin: 25px;
}
.dropdown-menu{
    max-height: 290px;
    overflow-y: scroll;
}
.text-muted {
    color: #d3d1d1 !important;
}




.printing-student-content {
    width: 100% !important;
    min-height: initial !important;
    page-break-before: avoid !important;
    page-break-after: avoid !important;
    display: inherit;
    -webkit-print-color-adjust:exact;
}
.printing-tutor-content {
    width: 100% !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 !important;
    background: transparent !important;
    min-height: initial !important;
    position: relative !important;
    page-break-before: always !important;
    page-break-after: avoid !important;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif !important;
    -webkit-print-color-adjust:exact;
}



.printing-tutor-content.IE11 {
    position: absolute !important;
    top: -20mm;
    left: -20mm;
}

.printing-tutor-content .title {
    width: calc(100);
    display: block;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
}

.printing-tutor-content .subtitle {
    width: 100%;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
}


.printing-tutor-content table {
    border: 1px solid #d9d9d9;
    width: 100%;
    text-align: center;
    font-size: 80%;

}

.printing-tutor-content table.padded {
    border: 1px solid #d9d9d9;
    width: calc(100);
    text-align: center;
    font-size: 80%;
}

.printing-tutor-content tr {
    height: 50px;
}

.printing-tutor-content td {
    padding: 5px;
    border: 1px solid #d9d9d9;
}

.printing-tutor-content td.title-td {
    text-align: left !important;
    padding-left: 10px;
    font-size: 14px;
    background-color: aliceblue !important;
   
}
.sd-title {
    text-align: left !important;
    padding-left: 10px;
    font-size: 14px;
    background-color: aliceblue !important;
}

.printing-tutor-content td.bold-td {
    font-weight: 600;
}
    .printing-tutor-content td.summary {
        font-weight: bolder;
        background-color: lightgray !important;
    }

.printing-tutor-content td.shaded {
    background-color: #efefef !important;
}

    .printing-tutor-content .table-header {
        background-color: cadetblue !important;
        font-weight: bolder;
    }

.printing-tutor-content td:nth-child(odd) {
    /*background-color: #e5f6fd !important;*/
}
.printing-tutor-content .table-header td:nth-child(odd).shaded {
    background-color: #efefef !important;
}

.printing-tutor-content .table-title  {
    background-color: white !important;
    border: none;
}
.printing-tutor-content td:nth-child(odd).shaded {
    background-color: #efefef !important;
}

.printing-tutor-content p.paging {
    font-family: monospace;
    font-size: 80%;
}

.star-img-left {
    width: 12%;
    margin-right: 4%;
    padding-left: 2%;
}

.star-img-right {
    width: 12%;
    margin-left: 4%;
    float: right;
    margin-top: -9%;
    padding-right: 2%;
}

.printing-student-content .paging {
    font-family: monospace !important;
    font-size: 80% !important;
    padding: 5mm 10mm !important;
}

.btn.btn-default.btn-disabled {
    opacity: .5;
    cursor: not-allowed;
}





.printing-student-content .img-header {
    position: absolute;
    top: 0;
    margin: 0 auto;
    height: 43mm;
    left: 50%;
    transform: translateX(-50%);
}

.printing-student-content .text-header {
    position: absolute;
    top: 18mm;
    height: 25mm;
    width: 100%;
    text-align: center;
    font-size: 14mm;
    line-height: 80%;
    font-weight: 800;
    color: #0090aa !important;
}

.printing-student-content .stories-section {
    padding: 5px;
    width: calc(98%);
    border-radius: 12px;
}

.printing-student-content .section-title {
    font-size: 4mm;
    font-weight: 600;
    text-align: center;
    font-style: italic;
    color: #0091ab !important;
}
.chart-Footer{
    color: #000 !important;
    font-size: 4mm;
    text-align: center;
}

.printing-student-content .section-title.large {
    font-style: normal;
    font-size: 5mm;
}

.printing-student-content .stories-section .text {
    font-weight: 600;
    padding: 2mm 0mm;
    font-size: 3.5mm;
    line-height: 6mm;
}

.printing-student-content .stories-section .text .left {
    display: inline-block;
    width: 35%;
}

.printing-student-content .stories-section .text .right {
    display: inline-block;
    width: 64%;
}

.printing-student-content .listen-section {
    margin-top: 5mm;
    margin-left: 6mm;
    padding: 3mm 10mm;

}

.printing-student-content .spelling-section {
    margin-top: 5mm;

    padding: 3mm 10mm;
    border-radius: 3mm;
    background-color: #d3fbff !important;
}

.printing-student-content .section-word {
    display: inline-block;
    width: 21%;
    font-size: 4mm;
    text-align: center;
    font-weight: 600;
}

.printing-student-content .progress-section {
    margin-top: 5mm;
    height: 73mm;
    width: 100%;
}
.printing-student-content .student-progress-header {
    text-align: center;
    font-size: 2em;
    line-height: 1em;
    font-weight: 600;
}
.printing-student-content .student-progress-studentName {

}
.printing-student-content .student-progress-headerDetails {
    text-align: left;
    padding-left: 2%;
    font-weight: 600;
    font-size: 1.2em;
    line-height: 1em;
}
.printing-student-content .star-img-left {
    width: 12%;
    left: 4%;
    float: left;
    position: absolute;
}
.star-img-left-or {
    width: 12%;
    left: 4%;
    float: left;
    position: absolute;
}
.star-img-right-or {
    width: 12%;
    right: 4%;
    float: right;
    position: absolute;
    top: 4%;
}
.star-img-left-ts {
    width: 12%;
    left: 4%;
    float: left;
    margin-left: 1%;
}

.star-img-right-ts {
    width: 12%;
    right: 4%;
    float: right;
    margin-right: 1%;
    top: 0%;
}
    .printing-student-content .star-img-right {
        width: 12%;
        right: 4%;
        float: right;
        position: absolute;
    }
.printing-student-content .student-progress-largeText {
    font-size: 4em;
}
.printing-student-content .student-progress-mediumText {
    font-size: 2em;
}
.printing-student-content .student-progress-smallText {
    font-size: 1em;
}
.printing-student-content .student-progress-center {
    text-align: center;
}
.printing-student-content .student-progress-complete {
    margin-top: -2%;
}
.printing-student-content .student-progress-red {
    background-color: red !important;
    color: white !important;
}
.printing-student-content .student-progress-yellow {
    background-color: yellow !important;
    color: black !important;
}
.printing-student-content .student-progress-green {
    background-color: green !important;
    color: white !important;
}

.printing-student-content .student-progress-floater {
        position: absolute;
    width: 180px;
    transform: rotateZ(-36deg);
    margin-left: -1%;
    margin-top: -8%;
    padding: 3px;
    line-height: 1em;
}
.printing-student-content .student-progress-poly {
    position: absolute;
    width: 190px;
    transform: rotateZ(-36deg);
    margin-left: -1%;
    margin-top: -13%;
    padding: 3px;
}
.printing-student-content .student-progress-poly-text {
    position: absolute;
    margin-top: 19%;
    margin-left: -8%;
    z-index: 1;
}
.printing-student-content .poly {
    position: absolute;
    margin-left: -29%;
    margin-top: -10%;
}
.printing-student-content .student-progress-table {
    margin-top: 10%;
}
.printing-student-content .student-progress-leftColumn {
    width: 10% !important;
    font-size: 0.8em;
    font-weight: 600;
}
.printing-student-content .down-arrow {
    width: 20px;
}
.printing-student-content .student-progress-keyNote {
    font-size: 0.8em;
}

.user-admin-main {
    width: 100%;
    height: 100%;
}
.user-admin-main .userContainer {

}
.switchdemoBasicUsage .inset {
    padding-left: 25px;
    padding-top: 25px;
}
#roleSelectId {
    height: 30px;
}
#roleChangeId {
    height: 30px;
}

.userRoleChange:hover + .hideRoleChange {
    display: block;
    color: red;
}
.hideRoleChange {
    display: none;
}
.dropdown-menu-role {
    display: block;
    max-height: 290px;
    overflow-y: scroll;
    position: absolute;
    z-index: 1;
    background: white;
    border-style: solid;
    border-width: 1px;
    text-align: left;
    width: 175px;
    margin-left: 29%;
    border-color: lightgray;
    border-radius: 4px;
}
    .dropdown-menu-role .fixulli {
        list-style-type: none;
        margin-left: -31px;

    }
.dropdown-menu-role ul, li, a {
    color: black;
    cursor: default;
}
    .dropdown-menu-role li:hover {
        color: #000;
        background-color: #f8f8f8;
        color: #000000;
        text-underline: none;
    }
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

.admin-Student-CertificateView {
}


.admin-dashboard-view .green {
    background-color: green !important;
}

.admin-dashboard-view .yellow {
    background-color: yellow !important;
}

.admin-dashboard-view .red {
    background-color: red !important;
}

.admin-dashboard-view .flex-container {
    text-align: center;
}

.admin-dashboard-view .flex-item {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    width: 335px;
    padding: 1em;
    margin: 1em;
    font-size: 0.8em;
    display: inline-block;
}

.admin-dashboard-view .colorKey {
    width: 35%;
    margin-left: 3%;
}

.admin-dashboard-view .header {
    text-align: left;
    margin-left: 3%;
}

.admin-dashboard-view .dashPrintBtn {
    position: absolute;
    left: 3%;
}

.admin-dashboard-view .dashLogo {
    height: 70px;
}

.admin-dashboard-view .simpleContainer {
    text-align: center;
}

.admin-dashboard-view .simpleContainerItem {
    display: inline-block;
}

.admin-dashboard-view .simpleContainerGridItem {
    display: inline-grid;
}
.ts-top-title {

}
/*Open Response*/
.openResponse_header {
    text-align: center;
    font-size: 2em;
    font-weight: 600;
}
.openResponse_subHeader {

}
    .openResponse_heavy {
        font-weight: 600;
    }

.openResponse_ideaQuest {
    margin-left: 30px;
    break-inside: avoid;
}
.openResponse_readerMeter {
    margin-left: 30px;
    break-inside: avoid;
}
.openResponse_connectingIdeas {
    margin-left: 30px;
    break-inside: avoid;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
}

.openResponse_table .td_or {
    font-size: .79em;

}

.openResponse_table {
    border-style: solid;
    border-width: 1px;
}

    .openResponse_table {
        border-style: solid !important;
        border-width: 1px !important;
        padding: 3px !important;
        border-color: black !important;
    }

.openResponse_passageTitle {
    text-align: center;
    font-weight: 600;
    font-size: .85em !important;
    background: #b3d4fc !important;
    background-color: #b3d4fc !important;
    padding: 3px !important;
}

.new-cert {
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(-10deg);
    color: green;
    font-weight: bolder;
    display: inline-block;
}
.user-admin-schoolList {
    border-radius: 10px;
    padding: 5px;
}

.user-admin-assignedSchool {
    background: #71dbef;
    margin-bottom: 5px;
}

.user-admin-assignSchool-instruction {
    float: left;
    color: #aca3a3;
    margin-top: 1.5%;
}
.attendance-filter {
    display: flex;
    gap: 4px;
    align-items: baseline;
}

.attendance-filters {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.attendance-legend {
    display: flex;
    align-items: baseline;
}
.attendance-legend span {
    margin: 8px;
}

.table-bordered td {
    text-align: center;
    padding: 4px;
}

#totals {
    text-align: center !important;
}
.weekend {
    background: #f9f9f9;
}
.report-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sa-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sar-legend {
    margin: 0 4px;
}

.sd-table {
    border: 1px solid #d9d9d9;
    width: calc(100% - 40mm);
    text-align: center;
    font-size: 80%;
    margin: 10mm 20mm 0 20mm;
}
.sd-title {
    text-align: left !important;
    padding-left: 10px;
    font-size: 14px;
    background-color: aliceblue;
}

.table-bordered td {
    text-align: center;
    padding: 4px;
}

#totals {
    text-align: center !important;
}
.weekend {
    background: #f9f9f9;
}
.report-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sa-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sar-legend {
    margin: 0 4px;
}
.centered {
    text-align: center !important;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    width: 100%;
}
.report-table {
    width: 100%;
}
@media print {

    .print-totals {
        width: 8px;
    }
}



.table-bordered {
    border-bottom-width: 2px;
}

    .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
        border: 1px solid #ddd;
    }

/**
    Student Deactivation Report
*/

.printing-tutor-sda .table-title {
    background-color: white !important;
    border: none;
}

.header-wrapper-sda {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
}

.printing-tutor-sda {
    width: 100% !important;
    margin: 20mm !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    min-height: initial !important;
    position: relative !important;
    page-break-before: always !important;
    page-break-after: avoid !important;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif !important;
}

    .printing-tutor-sda .sd-title {
        text-align: left !important;
        padding-left: 10px;
        font-size: 14px;
        background-color: aliceblue !important;
    }

    .printing-tutor-sda.IE11 {
        position: absolute !important;
        top: -20mm;
        left: -20mm;
    }

    .printing-tutor-sda .title {
        width: 100%;
        display: block;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        font-weight: 600;
    }

    .printing-tutor-sda .subtitle {
        width: 100%;
        display: block;
        height: 30px;
        font-size: 16px;
        line-height: 30px;
        text-align: left;
        padding-left: 30px;
    }

    .printing-tutor-sda table {
        border: 1px solid #d9d9d9;
        width: calc(100% - 40mm);
        text-align: center;
        font-size: 80%;
        margin: 0 20mm;
    }

    .printing-tutor-sda p.paging {
        font-family: monospace;
        font-size: 80%;
        padding: 0 0 0 20mm;
    }

/**
    Student Attendnce Report
*/
@page {
    size: auto;
    margin: 15px;
}
.printing-tutor-sar {
    width: 100% !important;
    margin: 20mm !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    min-height: initial !important;
    position: relative !important;
    page-break-before: always !important;
    page-break-after: avoid !important;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif !important;
}

    .printing-tutor-sar.IE11 {
        position: absolute !important;
        top: -20mm;
        left: -20mm;
    }

    .printing-tutor-sar .title {
        width: 100%;
        display: block;
        height: 30px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        font-weight: 600;
    }

    .printing-tutor-sar .subtitle {
        width: 100%;
        display: block;
        height: 30px;
        font-size: 16px;
        line-height: 30px;
        text-align: left;
        padding-left: 30px;
    }


    .printing-tutor-sar table {
        border: 1px solid #d9d9d9;
        width: calc(100% - 40mm);
        text-align: center;
        font-size: 80%;
        margin: 0 20mm;
    }

        .printing-tutor-sar table.padded {
            border: 1px solid #d9d9d9;
            width: calc(100% - 40mm);
            text-align: center;
            font-size: 80%;
            margin: 10mm 20mm 0 20mm;
        }

    .printing-tutor-sar tr {
        height: 50px;
    }

    .printing-tutor-sar td {
        padding: 5px;
        border: 1px solid #d9d9d9;
    }

        .printing-tutor-sar td.title-td {
            text-align: left !important;
            padding-left: 10px;
            font-size: 14px;
            background-color: #a8e7ff !important;
        }

        .printing-tutor-sar td.bold-td {
            font-weight: 600;
        }

        .printing-tutor-sar td.shaded {
            background-color: #efefef !important;
        }

    /*  .printing-tutor-sar .table-header td:nth-child(odd) {
        background-color: #c1eeff !important;
    }*/

    /*  .printing-tutor-sar td:nth-child(odd) {
        background-color: #e5f6fd !important;
    }*/

    /* .printing-tutor-sar .table-header td:nth-child(odd).shaded {
        background-color: #efefef !important;
    }*/

    .printing-tutor-sar .table-title {
        background-color: white !important;
        border: none;
    }

    /*   .printing-tutor-sar td:nth-child(odd).shaded {
        background-color: #efefef !important;
    }*/

    .printing-tutor-sar p.paging {
        font-family: monospace;
        font-size: 80%;
        padding: 0 0 0 20mm;
    }

    .reportModalDisplay .modal-dialog .modal-content {
        display: table !important;
    }
.trendMarker {
    -webkit-print-color-adjust: exact;
    height: 10px;
    width: 10px;
}

.lmlContainer {
    display: flex;
}
.passwordPrompt{
    width: 325px;
    height: 150px;
    text-align: center;
    background-color: white;
    top: 23%;
    position: absolute;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid #F3F3F3;
    overflow: hidden;
    left: 42%;
    font-size: large;
}
#password-input{
    margin-top: 10px;
}
#password-submit{
    margin-top: 10px;
}
.sfa-container-password{
    vertical-align: middle;
   

}