/** @format */

@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap");

html,
body {
    font-family: "Montserrat", sans-serif;
}

a,
.btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type="checkbox"]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red !important;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*.main{
    overflow: hidden;
}*/


/* Login Page: Start */

.btn,
button.grid-button-add {
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border: 1px solid transparent;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.btn {
    display: inline-flex;
    align-items: center;
}

    .btn span {
        padding-left: 5px;
    }

    .btn .fas,
    .btn .fal {
        font-size: 22px;
    }

    .btn:focus {
        box-shadow: none;
    }

    .btn:active {
        color: #fff;
        background-color: none !important;
        border-color: none !important;
    }

.btn-dark {
    background: #01334c;
    border-color: #01334c;
    padding: 8px 20px;
}

    .btn-dark:hover,
    .savedraft:hover,
    .btn-dark:hover .savedraft,
    .btn-dark:hover .fas,
    button.grid-button-add:hover {
        background: transparent;
        color: #01334c;
    }

.btn-danger {
    background: #ce3636;
    padding: 8px 20px;
}

    .btn-dark span,
    .btn-danger span,
    .btn-delete span {
        margin-left: 10px;
    }

    .btn-danger:hover {
        background: transparent;
        color: #ce3636;
    }

button.btn:first-child {
    margin-left: 0;
}

.login-banner {
    background: #063851;
    height: 100vh;
}

    .login-banner .banner-bg {
        background: #01334c;
        width: 100%;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-banner .card {
        max-width: 500px;
        margin: 0 auto 20px;
        text-align: center;
        padding: 40px;
        border-radius: 5px;
    }

    .login-banner .card-img {
        margin-bottom: 50px;
    }

    .login-banner .card-title {
        color: #434343;
        font-size: 20px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .login-banner .card-text {
        color: #555555;
        font-size: 18px;
        font-weight: 600;
        line-height: 23px;
        margin-bottom: 30px;
    }

    .login-banner .banner-footer {
        text-align: center;
    }

        .login-banner .banner-footer p {
            color: #6da3bd;
            font-size: 13px;
        }

/* Login Page: End */

/* Header: Start */
.top-row a,
.top-row .btn-link,
.user-title {
    text-decoration: none;
    white-space: nowrap;
    color: #00334c;
    font-size: 16px;
    font-weight: 700;
}

.user-title {
    margin-bottom: 0px;
}

.top-row {
    background-color: #fff !important;
    border-bottom: 1px solid #d7e0e9;
}

    .top-row[b-8ahen79ohv] {
        z-index: 1000 !important;
    }

/* Header: End */

/*Sidebar: Start */
.navbar,
.sidebar {
    background: #00334c !important;
    position: relative;
    border: none;
}

.nav-item:first-of-type {
    padding-top: 0px !important;
    margin-top: 1rem;
}

.nav-item {
    padding-left: 30px;
    position: relative;
}

.sidebar .nav-link {
    display: block;
    padding: .5rem 0rem;
}

.nav-item .nav-link {
    color: #9ccee7 !important;
    font-size: 16px;
    font-weight: 500;
}

.nav-item a.active,
.nav-item a:hover {
    background-color: transparent !important;
    color: #fff !important;
}

.nav-item .nav-link.active span::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    max-width: 5px;
    height: 45px;
    background-color: #fff;
}

.nav-item .nav-link span {
    margin-left: 10px;
}

.footer-text {
    padding: 10px;
    position: absolute;
    bottom: 10px;
}

    .footer-text p {
        color: #6da3bd;
        font-size: 13px;
    }

        .footer-text p:last-child {
            margin-bottom: 0;
        }

.nav-item a {
    height: auto !important;
    line-height: 1.4 !important;
}

/* Sidebar: End */

/* Edit/Delete Icon: Start */

button.grid-button-edit {
    width: 30px;
    height: 30px;
    margin-right: 0;
    background-repeat: no-repeat,no-repeat;
    background-position-x: 0px,0;
    background-position-y: 4px,0;
    background-image: url("/images/edit-icon.png");
}

button.grid-button-delete {
    width: 30px;
    height: 30px;
    margin-left: -5px;
    background-repeat: no-repeat,no-repeat;
    background-position-x: 0px,0;
    background-position-y: 3px,0;
    background-image: url("/images/delete-icon.png");
}

.grid-button-edit,
.grid-button-delete {
    border: none !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    background-color: transparent;
    border-color: none;
}

    .btn-primary:not(:disabled):not(.disabled).active:focus,
    .btn-primary:not(:disabled):not(.disabled):active:focus,
    .show > .btn-primary.dropdown-toggle:focus {
        box-shadow: none;
    }

/* Edit/Delete Icon: End */


/* Add Button: Start*/

button.grid-button-add {
    background: #01334c;
    border-color: #01334c !important;
    padding: 20px 45px;
}

.grid-button-add:after {
    content: "Add";
    top: -3px;
    position: absolute;
    left: 55px;
    font-size: 16px;
}

.grid-button-add::before {
    content: "\271A";
    position: absolute;
    top: -3px;
    left: 30px;
    font-size: 16px;
}

.grid-crud {
    margin-top: -10px;
}

/* Add Button: End */

/* Grid Layout: Start */
.content {
    background: #f7f7f7;
    min-height: calc(100vh - 56px);
    position: relative
}

/*
.grid-crud {
    position: absolute;
    right: -100%;
    bottom: 111px;}
    */

.add-user-btn {
    margin-top: -50px;
    display: flex;
    align-items: flex-end;
    flex-direction: column-reverse;
}

.main-title,
.crud-page-title {
    color: #104057;
    font-size: 30px;
    font-weight: 500;
    margin-top: 10px;
}

table.grid-table
.grid-header > .grid-header-group > .grid-header-title > button,
.grid-header-title span {
    font-size: 16px;
    font-weight: 700;
    color: #444444;
    background-color: #fff;
    border: none;
    text-transform: uppercase;
}

td.grid-cell {
    padding-left: 17px;
}

table.grid-table
.grid-header > .grid-header-group > .grid-header-title > button:hover {
    color: #444444;
    text-decoration: none;
}

.grid-mvc {
    background: #fff;
    border: 1px solid #dfdfdf;
    padding: 20px;
    margin-top: 10px;
    border-radius: 6px;
}

thead {
    border-top: 2px solid #dfdfdf;
}

tbody {
    border-bottom: 1px solid #dfdfdf;
}

.grid-cell {
    font-size: 17px;
    font-weight: 400;
}

.grid-pager {
    margin-left: auto;
    margin-top: 20px;
}

.pagination,
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
    margin-bottom: 0;
}

.page-item {
    margin: 0 5px;
    color: #000;
}

.page-link:hover {
    z-index: 2;
    color: #000;
    text-decoration: none;
    background-color: transparent;
    border-color: #171f46;
}

.page-link {
    color: #000;
    border: 2px solid #dee2e6;
}

.page-item.active .page-link {
    z-index: 1;
    color: #000;
    background-color: transparent;
    border: 2px solid #171f46;
}

.page-link:focus {
    box-shadow: none;
}

/* button.grid-button {
    border: none;
    border-radius: 0px;
} */

.grid-button-view,
/*.grid-button-add,*/
.grid-search-apply,
.grid-search-clear {
    display: none;
}

.grid-button-add {
    margin-top: -20px;
}

.input-group {
    margin: -18px 0 20px;
}

.grid-search-input {
    flex: none !important;
    margin-left: auto;
    width: 30% !important;
    border-radius: 5px;
}

.assign-search-input {
    flex: none !important;
    width: 32.5% !important;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.form-control:focus {
    color: none;
    background-color: none;
    border-color: #e0e5ed;
    outline: 0;
    box-shadow: none;
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


.grid-change-page-size {
    margin: -10px 0 20px;
}

.grid-change-page-size-input {
    width: 50px;
}

.control-label {
    font-weight: 300;
}



/* Grid Layout: End */

/* Add Role Page: Start */
.grid-box {
    background: #fff;
    border: 1px solid #dfdfdf;
    padding: 20px;
    margin-top: 20px;
    border-radius: 6px;
}

    .grid-box .control-label {
        color: #5c5c5c;
        font-size: 16px;
        font-weight: 500;
        min-width: 270px;
    }

    .grid-box .control-label-assign {
        color: #5c5c5c;
        font-size: 16px;
        font-weight: 500;
        max-width: 130px;
    }

    .grid-box .control-label span {
        color: #ff0000;
        padding-left: 3px;
    }

    .grid-box .form-control {
        width: inherit;
    }

.gridbox-footer {
    border-top: 1px solid #dfdfdf;
    padding-top: 20px;
    margin-top: 30px;
}

.radio-conent {
    display: flex;
}

.radio-group {
    display: flex;
    align-items: center;
    padding-left: 40px;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #00334c;
    background-color: #00334c !important;
}


/* Add Role Page: End */

/* Edit Role Page: Start */
/*
.check-btn{
    display: flex;
    align-items:center;
}*/
#IsActive {
    width: 20px;
}

/*  Toggle Switch: Start */

.toggleSwitch span span {
    display: none;
}

.toggleSwitch {
    display: inline-block;
    height: 18px;
    position: relative;
    overflow: visible;
    padding: 0;
    /*    margin-left: 50px;*/
    cursor: pointer;
    width: 110px;
}

    .toggleSwitch * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .toggleSwitch label,
    .toggleSwitch > span {
        line-height: 20px;
        height: 25px;
        vertical-align: middle;
    }

    .toggleSwitch input:focus ~ a,
    .toggleSwitch input:focus + label {
        outline: none;
    }

    .toggleSwitch label {
        position: relative;
        z-index: 3;
        display: block;
        width: 100%;
    }

    .toggleSwitch input {
        position: absolute;
        opacity: 0;
        z-index: 5;
    }

    .toggleSwitch > span {
        position: absolute;
        left: -50px;
        width: 100%;
        margin: 0;
        padding-right: 50px;
        text-align: left;
        white-space: nowrap;
    }

        .toggleSwitch > span span {
            position: absolute;
            top: 0;
            left: 0px;
            z-index: 5;
            display: block;
            width: 50%;
            margin-left: 50px;
            text-align: left;
            font-size: 0.9em;
            width: 100%;
            left: 15%;
            top: 0px;
            opacity: 0;
        }

    .toggleSwitch a {
        position: absolute;
        right: 50%;
        z-index: 4;
        display: block;
        height: 100%;
        padding: 0;
        top: 1px;
        left: 6px;
        width: 18px;
        background-color: #fff;
        border-radius: 100%;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

    .toggleSwitch > span span:first-of-type {
        color: #fff;
        opacity: 1;
        left: 25%;
        font-weight: 500;
        text-transform: uppercase;
    }

    .toggleSwitch > span:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 51px;
        top: -2px;
        background-color: #ff0000;
        border-radius: 30px;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

    .toggleSwitch input:checked ~ a {
        top: 1px;
        left: 87%;
        margin-left: -8px;
    }

    .toggleSwitch input:checked ~ span:before {
        box-shadow: inset 0 0 0 30px #2dca73;
    }

    .toggleSwitch input:checked ~ span span:first-of-type {
        opacity: 0;
    }

    .toggleSwitch input:checked ~ span span:last-of-type {
        opacity: 1;
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
    }

    .toggleSwitch input:checked ~ a:before {
        content: "\f00c";
        color: #2dca73;
    }

a:not([href]):not([tabindex]) {
    color: #ff0000;
    text-decoration: none;
    padding-left: 3px;
    padding-top: 1px;
}

/* Switch Sizes */

.toggleSwitch.large {
    width: 60px;
    height: 27px;
}

    .toggleSwitch.large a {
        width: 27px;
    }

    .toggleSwitch.large > span {
        height: 29px;
        line-height: 28px;
    }

    .toggleSwitch.large input:checked ~ a {
        left: 41px;
    }

    .toggleSwitch.large > span span {
        font-size: 1.1em;
    }

        .toggleSwitch.large > span span:first-of-type {
            left: 50%;
        }

.toggleSwitch.xlarge {
    width: 80px;
    height: 36px;
}

    .toggleSwitch.xlarge a {
        width: 36px;
    }

    .toggleSwitch.xlarge > span {
        height: 38px;
        line-height: 37px;
    }

    .toggleSwitch.xlarge input:checked ~ a {
        left: 52px;
    }

    .toggleSwitch.xlarge > span span {
        font-size: 1.4em;
    }

        .toggleSwitch.xlarge > span span:first-of-type {
            left: 50%;
        }

.check-icon .fa-check {
    color: #2dca73;
}

/*  Toggle Switch: End */

/* Edit Role Page: End */

/* Delete Role Page: Start */

.btn-delete {
    background-color: #8B0000;
    border-color: #8B0000;
    padding: 8px 20px;
}

    .btn-delete:hover {
        background-color: transparent;
        color: #8B0000;
    }

/* Delete Role Page: End */

/* Grid Active/Inactive Switch Customization START */

td.grid-cell.badge {
    width: 120px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 10px;
    margin-top: 8px;
}

.grid-row {
    border-top: 1px solid #dee2e6;
}

/* Grid Active/Inactive Switch Customization END */

/* CheckBox Customization Start */

.checkbox-scroll {
    padding: 0 14px;
}

#checkBoxes {
    height: 100px;
    overflow-y: scroll;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 5px 10px;
}

    #checkBoxes label span,
    #assignReviewerCheckBoxes label span {
        margin-left: 5px;
    }

#assignReviewerCheckBoxes {
    min-height: 200px;
    max-height: 331px;
    overflow-y: scroll;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 5px 10px 4px;
}

.control-readonly {
    background: #e9ecef;
}

/* CheckBox Customization END */


/* Code Submit Page Start */


.btn-eye,
.btn-pen {
    color: #696969;
}

    .btn-eye:hover,
    .btn-pen:hover {
        color: #696969;
        text-decoration: none;
    }


/* Code Submit Page END */

/* My Code List Page Start */

.top-content {
    display: flex;
    align-items: center;
}

.submitpage-btn {
    margin-left: auto;
    text-align: right;
}

.bg-draft {
    background-color: #ba55d3;
}

.bg-submit {
    background-color: #2dca73;
}

.bg-review {
    background-color: #4169e1;
}

/* My Code List Page END */


/* Tab Pages Start */

.tab-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
}

    .tab-card label {
        font-weight: 500;
    }

        .tab-card label span {
            color: #ff0000;
        }

.custom-file-label::after {
    color: #fff;
    background-color: #01334c;
}

.custom-file-input {
    z-index: 0;
}

.card {
    background-color: #f7f7f7;
    border-top: none !important;
    border: 2px solid #dee2e6;
    padding: 15px;
}

a, .btn-link {
    color: #000;
}

.tab-card .nav-item {
    background-color: #f1f1f1;
}

.tab-card a:hover {
    color: #000;
}

.tab-card .nav-item {
    margin: 0 3px;
}

.tab-card .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-bottom: none !important;
    border: 2px solid #dee2e6;
}

.tab-card .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    border-radius: 4px;
}

.nav-item:first-of-type {
    padding-top: 8px !important;
    margin-top: 0;
    margin-left: 0;
}

.tab-card .btn-danger:hover {
    color: #c82333;
}

.savedraft {
    background-color: transparent;
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 0;
}

.note {
    color: #01334c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 3px;
}

.general-headline {
    color: #434343;
    font-weight: 700;
}

.guideline-info {
    margin: 10px 0 10px;
}

.info-para {
    color: #434343;
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}

.guideline-info-listing .info-list,
.rating-point li span,
.parameter li span {
    color: #434343;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
}

    .guideline-info-listing .info-list .num-bg {
        color: #fff;
        background-color: #01334c;
        border-radius: 50%;
        font-size: 15px;
        font-weight: 700;
        line-height: 27px;
        text-align: center;
        margin-right: 10px;
        min-width: 28px;
        height: 28px;
    }

.rating-point .listing-hedline,
.parameter-point .listing-hedline {
    font-size: 16px;
    white-space: nowrap;
    color: #434343;
    font-weight: 700;
}

.rating-point,
.parameter-point {
    list-style-type: none;
}

    .rating-point li,
    .parameter-point li {
        display: flex;
    }

        .rating-point li span:first-child,
        .parameter-point li span:first-child {
            width: 200px;
        }


        .rating-point li span {
            margin-bottom: 20px;
        }

        .parameter-point li span {
            margin-bottom: 5px;
        }

.second-list {
    margin-left: 13px;
}

.btn-accept {
    background-color: #2dca73;
    margin-bottom: 8px;
    padding: 0px 14px !important;
    color: #fff !important;
}

.btn.disabled, .btn:disabled {
    opacity: .35;
    filter: grayscale(50%);
}

.btn-accept .fas {
    font-size: 12px;
}

.btn-accepted {
    padding: 0px 12px !important;
}

.btn-reject {
    background-color: #0056b3;
    padding: 0px 10px !important;
    color: #fff !important;
}

    .btn-reject .fas {
        font-size: 12px;
    }

.btn-rejected {
    background-color: #0056b3;
    margin-bottom: 8px;
    padding: 0px 14px !important;
    color: #fff !important;
}

.btn-reason {
    padding: 0px;
    color: #ce3636 !important;
    border-bottom: 2px solid #ce3636;
    border-radius: 0;
    white-space: nowrap;
    line-height: 1;
    padding-left: 0 !important;
}

    .btn-reason:hover {
        color: #ce3636 !important;
    }

.btn-accept:hover,
.btn-reject:hover,
.btn-rejected:hover {
    color: #fff !important;
    text-decoration: none;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-acceptall {
    color: #fff !important;
    padding: 4px 10px !important;
    margin-left: auto;
    margin-right: 40px;
    /*    margin-bottom:15px;
*/
}

    .btn-acceptall .fas {
        font-size: 18px;
    }

    .btn-acceptall span {
        margin-left: 0px;
    }

    .btn-acceptall:hover {
        color: #01334c !important;
    }

/* Tab Pages END */

/* Pop-Up section Start */

.modal-content {
    border: 2px solid rgba(0,0,0,.2);
}

.modal-title {
    color: #01334c;
}

.close {
    color: #ce3636;
    opacity: 1;
    font-size: 35px;
}

    .close:hover {
        color: #ce3636;
        opacity: 1;
        text-decoration: none;
    }

button:focus {
    outline: none !important;
    outline: none !important;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.modal-header .close {
    padding: 0.25rem 1rem;
}

.modal-body p {
    font-weight: 600;
}

/* Pop-Up section END */

/* Download Button Start */

.btn-download {
    background: transparent;
    color: #01334c !important;
    border-color: #01334c;
    padding: 6px 20px !important;
    margin-left: 10px;
}

    .btn-download:hover {
        background: #01334c;
        color: #fff !important;
    }

.tablebody {
    width: 550px;
    text-align: justify;
}

.tablebodyWithReviewerFeedback {
    width: 300px;
    text-align: justify;
}

.rating-area {
    width: 50px;
}

.rating {
    border: 1px solid #ced4da;
    min-width: 70px;
    min-height: 35px;
    text-align-last: center;
    border-radius: 4px;
}

@-moz-document url-prefix() {
    select {
        padding-top: 7px;
    }
}

.weight {
    width: 30px;
    text-align: center;
}

.area {
    width: 30px;
    text-align: center;
}

.remark {
    min-width: 200px;
}

/* Download Button END */

/* Code Review - My Assigned Codes Page Start */
.bg-pending {
    background-color: #ffa500;
}

.bg-reviewed {
    background-color: #2dca73;
}

.sort-link {
    color: #212529 !important;
    text-decoration: none !important;
}


.category {
    display: flex;
    align-items: center
}

.weightage {
    display: flex;
    align-items: center
}

.fa.t-head {
    display: flex;
    margin-left: 5px;
}

span.fa.t-head.fa-sort-down {
    margin-top: -7px;
}

.table thead th {
    vertical-align: top;
    border-bottom: 2px solid #dee2e6;
}

/* Code Review - My Assigned Codes Page END */

/* Custome label Start */

.file {
    color: #01334c;
}

.dawnload-label {
    color: #01334c;
    font-weight: bolder !important;
}

.file-upload,
.file-dawnload {
    color: #01334c;
}

.validation-message {
    padding-top: 3px;
}

.btn-assign_review {
    color: #696969;
}

    .btn-assign_review:hover {
        color: #696969;
    }

.assignee-page table.grid-table
.grid-row > .grid-cell:nth-child(1) {
    max-width: 50px;
}

.action-title {
    text-align: center;
    border-bottom: 1px solid #dee2e6 !important;
}

.program-page table.grid-table
.grid-header > .grid-header-group > .grid-header-title {
    min-width: 116px;
    white-space: normal;
}

/* Custome label END */

/* Responsive */

@media screen and (min-width: 1200px) and (max-width: 1500px) {
    .main-title, .crud-page-title {
        font-size: 25px;
    }

    table.grid-table
    .grid-header > .grid-header-group > .grid-header-title > button,
    .grid-header-title span {
        font-size: 14px;
    }

    .user-page td.grid-cell {
        padding-left: 11px;
    }

    .email-id {
        max-width: 200px;
        word-wrap: break-word;
    }

    table.grid-table
    .grid-header > .grid-header-group > .grid-header-title {
        white-space: normal;
    }

    .submit-page table.grid-table
    .grid-header > .grid-header-group > .grid-header-title,
    .code-review-page table.grid-table
    .grid-header > .grid-header-group > .grid-header-title,
    .program-page table.grid-table
    .grid-header > .grid-header-group > .grid-header-title,
    .code-assignee-page table.grid-table
    .grid-header > .grid-header-group > .grid-header-title {
        min-width: 103px;
    }

    .submit-page table.grid-table
    th.grid-header:first-child,
    .code-review-page table.grid-table
    th.grid-header:first-child,
    .code-assignee-page table.grid-table
    th.grid-header:first-child {
        max-width: 50px;
    }

    .table thead th {
        font-size: 14px;
    }

    .assignee-page table.grid-table
    .grid-row > .grid-cell:nth-child(1) {
        max-width: 70px;
    }

    .btn-acceptall {
        margin-right: 30px;
    }

    .rating-point li .first_rating_item {
        width: 350px !important;
    }

    .program-page .grid-mvc {
        max-width: 1040px;
    }

    .assign-search-input {
        width: 37% !important;
    }

    #assignReviewerCheckBoxes {
        min-width: 300px;
    }
}
