@charset "utf-8";
/* CSS Document */
/* -- remove once icon key is modal -- */
.iconKey{
    float: left;
    width: 100%;
    height: auto;
}
.keyContainer{
    float: left;
    width: 100%;
    height: auto;
	display: flex;
	flex-wrap: wrap;
}
.key{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2%;
    padding-bottom: 2%;
    border-bottom: 2px solid #999999;
}
.key:last-child{
    border-bottom: none;
}
.key img{
    float: left;
    width: 25%;
    height: auto;
    max-height: 25px;
}
.key p{
    float: left;
    display: block;
    width: 75%;
}
/* remove once icon key is modal */

.inputContainer.noMargin{
    width: 32%;
}
#accordianHeader{
    visibility: hidden;
}
.progressTableContainer{
    position: relative;
}
.tableHeadingContainer{
    position: sticky;
    top: 80px;
    z-index: 300;
}
.contentDetailsContainer{
    visibility: hidden;
    float: left;
    width: 100%;
    height: auto;
    margin-top: 1%;
}
.contentDetailsContainer p{
    float: left;
    width: 100%;
    height: auto;
    margin-bottom: 1%;
    margin-left: 0;
    padding: 0;
    padding-left: 2%;
}
.contentHeader{
    width: 30%;
}
.gradeHeader{
    width: 10%;
}
.lessonPartHeader{
    width: 60%;
}
.firstChildContainer{
    float: left;
    width: 100%;
    padding-left: 13px;
    border-left: 2px solid #999999;
}
.firstChildContainer:hover{
    border-left: 2px solid #333333;
}
.secondChildContainer{
    float: left;
    width: 100%;
    padding-left: 13px;
    border-left: 2px solid #999999;
}
.secondChildContainer:hover{
    border-left: 2px solid #333333;
}
.progressRow{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 2px solid #999999;
}
.courseRow{
    background-color: #b3b3b3;
}
.unitRow{
    background-color: #c0c0c0;
}
.testRow:nth-last-of-type(odd){
    background-color: #cccccc;
}
.testRow:nth-last-of-type(even){
    background-color: #d9d9d9;
}
.lessonRow:nth-last-of-type(odd){
    background-color: #e5e5e5;
}
.lessonRow:nth-last-of-type(even){
    background-color: #f2f2f2;
}
.progressRow:hover{
    background-color: #72b775;
}
.contentCell{
    float: left;
    width: 30%;
    height: auto;
    min-height: 40px;
    font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
    font-weight: normal;
    display: flex;
    align-items: center;
}
.contentCell img{
    display: block;
    float: left;
    width: 25px;
    height: 25px;
    margin-left: 13px;
    -webkit-filter: brightness(0) saturate(100%);
    filter: brightness(0) saturate(100%);
}
.contentCell p{
    float: left;
    width: 80%;
    height: auto;
    margin-left: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.courseRow .contentCell p{
    font-size: 2rem;
}
.unitRow .contentCell p{
    font-size: 1.8rem;
}
.gradeCell{
    float: left;
    width: 10%;
    height: auto;
    min-height: 40px;
    text-align: right;
    padding-right: 1%;
    font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
    font-weight: normal;
    display: flex;
    justify-content: right;
    align-items: center;
}
.lessonPartCell{
    float: left;
    width: 60%;
    height: auto;
    min-height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0.5%;
    padding-left: 13px;
}
.lessonPartCell img{
    display: block;
    float: left;
    width: 10%;
    height: auto;
    max-width: 25px;
    min-width: 25px;
    margin-right: 1%;
    margin-bottom: 1%;
}
.lessonPartCell img:hover,
.lessonPartCell img:focus{
    cursor: pointer;
    padding: 2px;
    outline: 3px solid #0a090c;
}
.selectedPart{
    padding: 2px;
    outline: 3px solid #0a090c;
}
.parentLessonPartCell{
    float: left;
    width: 30%;
    height: auto;
    min-height: 40px;
    text-align: right;
    padding-right: 1%;
    font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
    font-weight: normal;
    display: flex;
    justify-content: right;
    align-items: center;
}
.contentButtonCell{
    float: left;
    width: 30%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 13px;
}
.contentButtonCell button{
    float: left;
    width: auto;
    height: 30px;
    background-color: #fdfdfd;
    border: 2px solid transparent;
    border-radius: 5px;
    padding-left: 5.6px;
    padding-right: 5.6px;
    box-shadow: none;
    transition-duration: 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contentButtonCell button:hover, .contentButtonCell button:focus{
    cursor: pointer;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
    border-color: #305a30;
}
.contentButtonCell button.noClickButton{
    border-color: #4f4c4d;
    background-color: #4f4c4d;
    box-shadow: none;
    color: #F0F0F0;
}
.contentButtonCell button.noClickButton:hover{
    cursor: not-allowed;
}
.firstChildContainer .contentCell{
    width: 28.5%;
}
.firstChildContainer .gradeCell{
    width: 10%;
}
.firstChildContainer .lessonPartCell{
    width: 61.5%;
}
.firstChildContainer .parentLessonPartCell{
    width: 20.5%;
}
.firstChildContainer .contentButtonCell{
    width: 41%;
}
.secondChildContainer .contentCell{
    width: 27%;
}
.secondChildContainer .gradeCell{
    width: 10%;
}
.secondChildContainer .lessonPartCell{
    width: 63%;
}
.noContentMessageContainer{
    display: none;
    float: left;
    width: 100%;
    height: auto;
    background-color: #b9baa3;
}
.noContentMessageContainer p{
    padding: 2%;
    color: #0a090c;
    text-align: center;
}

/* responsive screen code */
@media only screen and (min-width: 1500px) {
/* Extra large devices (large laptops and desktops, 1500px and up) */
}
@media only screen and (max-width: 1499px) {
/* Extra large devices (large laptops and desktops, 1200px and up) */
}
@media only screen and (max-width: 1199px) {
/* Large devices (laptops/desktops, 992px and up) */
}
@media only screen and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
}
@media only screen and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */
    .key{
        width: 33.33%;
    }
    .key:last-child{
        border-bottom: 2px solid #999999;
    }
    .containerWidth100.flexContainerSpaceBetweenCenterNoWrap{
        flex-wrap: wrap;
    }
    .containerWidth100.flexContainerSpaceBetweenCenterNoWrap .inputContainer{
        width: 48%;
    }
    .progressTableContainer{
        padding-left: 0;
        padding-right: 0;
    }
    .tableHeadingContainer{
        top: 0;
    }
    .gradeHeader, .gradeCell{
        width: 20%;
    }
    .lessonPartHeader, .lessonPartCell{
        width: 50%;
    }
    .parentLessonPartCell, .contentButtonCell{
        width: 25%;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
	.key{
		width: 50%;
	}
	.key:last-child{
		border-bottom: none;
	}
    .tableHeadingContainer{
        flex-wrap: wrap;
        height: auto;
        padding-top: 6.5px;
        padding-bottom: 6.5px;
    }
    .contentHeader{
        width: 75%;
        justify-content: flex-start;
        padding-left: 13px;
    }
    .gradeHeader{
        width: 25%;
        border-right: none;
    }
    .lessonPartHeader{
        width: 100%;
        justify-content: flex-start;
        padding-left: 13px;
        margin-top: 6.5px;
    }
    .progressRow{
        flex-wrap: wrap;
    }
    .contentCell,
    .firstChildContainer .contentCell{
        width: 75%;
    }
    .gradeCell,
    .firstChildContainer .gradeCell{
        width: 25%;
        padding-right: 13px;
    }
    .lessonPartCell{
        width: 100%;
    }
    .contentButtonCell,
    .firstChildContainer .contentButtonCell{
        width: 50%;
    }
    .parentLessonPartCell,
    .firstChildContainer .parentLessonPartCell{
        width: 50%;
    }
    .firstChildContainer .lessonPartCell,
    .secondChildContainer .lessonPartCell{
        width: 100%;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
    .containerWidth100.flexContainerSpaceBetweenCenterNoWrap .inputContainer.noMargin{
        width: 100%;
    }
    .accordianCurrentGradeContainer{
        width: 100%;
    }
}