@charset "utf-8";
/* CSS Document */

#contentDocumentContainer, #contentAttachmentsButtonDiv{
    display: none;
}
.organizationContentContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
    background-color: #fdfdfd;
    border-radius: 3px;
    padding: 13px;
    padding-top: 25px;
}

/* responsive screen code */
@media only screen and (min-width: 1500px) {
/* Extra large devices (large laptops and desktops, 1500px and up) */
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
/* Extra large devices (large laptops and desktops, 1200px and up) */
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/* Large devices (laptops/desktops, 992px and up) */
    #contentCompletionContainerDiv{
        flex-wrap: wrap;
    }
    .accordianCurrentGradeContainer{
        width: 50%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
    #contentCompletionContainerDiv{
        flex-wrap: wrap;
    }
    .accordianCurrentGradeContainer{
        width: 50%;
    }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */
    .goBackContainer{
        width: 49%;
        margin-right: 10%;
    }
    #contentCompletionContainerDiv{
        flex-wrap: wrap;
    }
    .accordianCurrentGradeContainer{
        width: 50%;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
    #contentCompletionContainerDiv{
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
}