/*
* Classes used to customise Grade Centre
*
*/

.gcFull .navigationPane {
    display: none;
}

.gcFull .contentPane {
    margin: 0 12px 0 12px;
}

.gcFull .pageTitle {
    display: flex;
    padding-right: .6rem;
    justify-content: flex-end;
}

.gcFull .message-container {
    flex-grow: 4;
}

.gcFull .button-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.gcFull .button-scu {
    color: #2f2f2f;
    background-color: #888888;
    box-shadow: none;
    border-radius: .25rem;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: row;
    justify-content: center;
    align-self: center;
    padding: 0 1.25rem;
    line-height: 2.125rem;
    text-align: center;
    margin: .125rem;
    border: 1px solid #666666;
    text-decoration: none;
    transition: color .125s ease;
    overflow: hidden;
    vertical-align: middle;
    outline: none;
}

.gcFull .button-scu.button-primary {
    background-color: #ffce00;
    border-color: #f5c600;
}

.gcFull .button-scu.button-secondary {
    background-color: #dadada;
    border-color: #d7d7d7;
}

.gcFull .button-scu.button-primary:hover {
    background-color: #f0c200;
    border-color: #e6b900;
}

.gcFull .button-scu.button-secondary:hover {
    background-color: #c5c5c5;
    border-color: #c0c0c0;
}

/* academicMisconduct */


.academic-misconduct::before {
    content: "\26A0 ";
    color: maroon;
    margin-right: 5px;
}


/* 
* gradeSubmission
*/


.button-unavailable, .button-unavailable-col {
    color: #f2f2f2 !important;
    height: 2.125rem;
    overflow: hidden;
}


.gradeButton-loading div {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: gradeLoading;
}

@keyframes gradeLoading {

    from {
        margin-left: 100%;
        width: 100%;
    }

    25% {
        margin-left: 70%;
        /* width: 225%; */
    }

    50% {
        margin-left: 50%;
        /*  width: 175%;  */

    }

    75% {
        margin-left: 25%;
        /* width: 130%; */

    }

    to {
        margin-left: -25%;
        /* width: 100%; */
    }
}

.gs-message-container {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    margin-left: 30%;
    margin-top: 3px;
    overflow: auto;
    max-height: 8rem;
}

.msg-general {
    color: #026379;
}

.msg-warning {
    padding: 2px;

}

.msg-warning::before {
    content: "\26D4 ";
    margin-right: 5px;
}

.msg-important {
    margin: 2px 1px;
    font-weight: bold;

}

/*
.msg-important::before {
content: "\2757 ";
  margin-right: 5px;
}
*/