﻿
/* #region Root Layout */

/* Search Box */
.nav-wrapper .root-search-box {
    overflow: hidden;
}

    .nav-wrapper .root-search-box input {
        width: 0;
        transition: width linear 200ms;
        transition-delay: 100ms;
    }

.nav-wrapper.search-active .root-search-box input {
    width: 350px;
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
    .nav-wrapper .root-search-box {
        max-width: 205px;
    }

    .nav-wrapper h1 {
        display: inline-block;
        width: auto;
        overflow: hidden;
        transition: all linear 200ms;
    }

    .nav-wrapper.search-active h1 {
        max-width: 0;
    }
}

/* Sweet Alert Styling Override */
.swal-footer {
    text-align: center !important;
}

.swal-button--confirm {
    background-color: #65bc45 !important;
}

    .swal-button--confirm:hover {
        background-color: #8ae268 !important;
    }

/* Files Dialog */
#dialogFiles {
    max-width: 800px;
}

    #dialogFiles .collection-item {
        min-height: 64px !important;
        padding-left: 65px;
        padding-right: 40px;
        position: relative;
        display: flex;
        align-items: center;
        cursor: default;
    }

        #dialogFiles .collection-item > i {
            left: 15px;
            font-size: 36px;
        }

        #dialogFiles .collection-item .title {
            font-weight: 600;
        }

        #dialogFiles .collection-item .download {
            height: 40px;
            width: 40px;
            overflow: hidden;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            cursor: pointer;
        }

            #dialogFiles .collection-item .download:hover {
                background: #fff;
            }

/* #endregion */

/* #region Partial: _NominateSearch */

#nominatesearch_list_outer .collection-item {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-flex-align: start;
    align-items: center;
    justify-content: space-between;
}

    #nominatesearch_list_outer .collection-item > div:not(.avatar-container) {
        width: 30%
    }

    #nominatesearch_list_outer .collection-item > div.actions {
        color: #999;
    }

/* Mobile adjustments */
@media only screen and (max-width: 600px) {
    #nominatesearch_list_outer .collection-item {
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        #nominatesearch_list_outer .collection-item img {
            align-self: flex-start;
        }

        #nominatesearch_list_outer .collection-item > div {
            width: 100%;
            margin-bottom: 10px;
        }
}

/* #endregion */

/* #region Partial: _NominationVotes */

.nominationvotes_list_outer li {
    position: relative;
    padding: 3px 5px;
}

    .nominationvotes_list_outer li:nth-child(even) {
        background-color: #f3f3f3;
    }

    .nominationvotes_list_outer li span {
        display: inline-block;
        transform: translateY(-3px);
    }

    .nominationvotes_list_outer li i.vote {
        font-size: 28px;
        display: inline-block;
        height: 25px;
        line-height: 25px;
        overflow: hidden;
        transform: translateY(3px);
    }

    .nominationvotes_list_outer li i.delete {
        font-size: 28px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .nominationvotes_list_outer li a {
        font-size: 14px;
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
    }

.nominationvotes_dialog_comments {
    width: 600px !important;
}

.nominationvotes_comments_readonly {
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 100px;
}

.nominationvotes_submit_outer {
    background-color: #eee;
    padding: 10px 20px;
    margin-top: 20px;
}

    .nominationvotes_submit_outer span {
        display: inline-block;
        transform: translateY(-6px);
    }

    .nominationvotes_submit_outer i {
        font-size: 32px;
        display: inline-block;
        width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        margin-left: 20px;
        cursor: pointer;
    }

/* Tablet Adjustments */
@media only screen and (max-width: 992px) {
    .nominationvotes_dialog_comments {
        width: 100% !important;
    }
}

/* #endregion */

/* #region Upload Dialog - Used on NominationDetail and CandidateDetail views */

#dialogUpload {
    max-width: 600px;
}

    #dialogUpload .dz-upload {
        position: relative;
        background-color: #e9e9ff;
        color: #999;
        width: 100%;
        height: 80px;
        padding: 10px;
    }

        #dialogUpload .dz-upload.invalid {
            border: 1px solid #A6192E;
            background-color: #ffe9ff;
        }

        #dialogUpload .dz-upload .uploadinstructions {
            display: block;
            width: 100%;
            text-align: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        #dialogUpload .dz-upload .uploadfile {
            pointer-events: none;
            color: #333;
        }

            #dialogUpload .dz-upload .uploadfile > div {
                color: #999;
            }

    #dialogUpload .filetype .buttons { /*width: 300px;*/
        margin-left: 50%;
        margin-top: 10px;
        transform: translateX(-50%);
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-flex-align: start;
        align-items: center;
        justify-content: space-around;
    }

        #dialogUpload .filetype .buttons button {
            width: 80px;
            height: 100px;
            border: 1px solid #bbb;
            border-radius: 2px;
            margin-bottom: 15px;
            display: -webkit-flex;
            display: flex;
            -webkit-flex-flow: column nowrap;
            flex-flow: column nowrap;
            -webkit-flex-align: start;
            align-items: center;
            justify-content: center;
        }

            #dialogUpload .filetype .buttons button i {
                font-size: 45px;
                transform: translateY(-5px);
                pointer-events: none;
            }

            #dialogUpload .filetype .buttons button span {
                font-size: 14px;
                line-height: 14px;
                transform: translateY(-5px);
                pointer-events: none;
                width: 100%;
            }

            #dialogUpload .filetype .buttons button:hover i {
                color: #65bc45;
            }

            #dialogUpload .filetype .buttons button:active {
                color: #fff;
                background-color: #333;
            }

            #dialogUpload .filetype .buttons button.selected {
                background-color: #65bc45;
            }

                #dialogUpload .filetype .buttons button.selected i {
                    color: #fff;
                }

        #dialogUpload .filetype .buttons.invalid button {
            border: 1px solid #a6192E;
            background-color: #ffe9ff;
        }

/* #endregion */

/* #region View: Dashboard */

#dashboard_subnav_outer > div:nth-child(2) {
    text-align: right;
}

#dashboard_participants_list .collection, #dashboard_nominees_list .collection {
}

.input-field.nameLookup {
    position: relative;
    margin-top: 1.48rem;
    margin-bottom: .5rem;
}

.nameLookup label {
    font-size: 15.2px !important;
    font-weight: normal;
    top: 0rem;
    cursor: default;
}

/* Mobile adjustments */
@media only screen and (max-width: 600px) {
    #dashboard_subnav_outer > div > a {
        width: 100%;
        margin-bottom: 10px;
    }

    #dashboard_subnav_outer > div:nth-child(1) {
        text-align: left;
    }
}

/* #endregion */
/* #region View: Nominate */
#dialogNominate {
    max-width: 1000px !important;
    width: 100% !important;
}

/* #endregion */

/* #region View: Nomination details */

#nomination_profile_outer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-align: start;
    align-items: flex-start;
    margin-top: 5px;
}

    /*#nomination_profile_outer .thumbnail {
        position: relative;
        width: 100%;
        height: 125px;
        overflow: hidden;
        margin-right: 15px;
    }*/

    #nomination_profile_outer .thumbnail img {
        width: 100%;
        max-height: 170px;
    }

    #nomination_profile_outer .profile {
        width: 70%;
    }

        #nomination_profile_outer .profile h2 {
            font-size: 20px;
        }

    #nomination_profile_outer .nomination {
        margin-top: 10px;
        margin-bottom: 10px;
        width: 100%;
    }

    #nomination_profile_outer .nominationactions {
        width: 100%;
    }

        #nomination_profile_outer .nominationactions button {
            margin-bottom: 10px;
        }

.nomination_position_info {
    margin-bottom: 10px;
}

#nomination_profile_nominationsupport {
    padding-bottom: 10px;
}

    #nomination_profile_nominationsupport .col {
        padding-right: 0 !important;
    }

    #nomination_profile_nominationsupport .narrative, #nomination_profile_nominationsupport .comments {
        min-height: 100px;
        border: 1px solid #999;
        padding: 5px 10px;
        margin-top: 5px;
    }

#nomination_profile_devplan .devplan {
    min-height: 200px;
    border: 1px solid #999;
    padding: 5px 10px;
    margin-top: 5px;
}

#nomination_profile_devplan #textDevelopmentPlan {
    min-height: 200px;
}

#nomination_profile_documents .collection-item {
    min-height: 64px !important;
    padding-left: 65px;
    padding-right: 40px;
    position: relative;
    cursor: default;
}

    #nomination_profile_documents .collection-item > i {
        left: 15px;
        font-size: 36px;
    }

    #nomination_profile_documents .collection-item .title {
        font-weight: 600;
    }

    #nomination_profile_documents .collection-item .download {
        height: 40px;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #nomination_profile_documents .collection-item .download:hover {
            background: #fff;
        }

    #nomination_profile_documents .collection-item .trash {
        height: 40px;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #nomination_profile_documents .collection-item .trash:hover {
            background: #fff;
        }

#nomination_assessments_outer .collection-item {
    padding-left: 75px !important;
    min-height: 80px;
    cursor: default;
    position: relative;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-align: start;
    align-items: center;
}

    #nomination_assessments_outer .collection-item:hover {
        background-color: #fff;
    }

    #nomination_assessments_outer .collection-item .icon {
        font-size: 38px;
        margin-left: 5px;
        margin-right: 20px;
    }

    #nomination_assessments_outer .collection-item .trash {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #nomination_assessments_outer .collection-item .trash:hover {
            background: #fff;
        }

    #nomination_assessments_outer .collection-item .edit {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #nomination_assessments_outer .collection-item .edit:hover {
            background: #fff;
        }

    #nomination_assessments_outer .collection-item p {
        width: 30%;
    }

#nomination_assessmentcharts_outer .key {
    border: 1px solid #bbb;
    font-size: 14px;
    border-spacing: 5px;
    margin-top: 10px;
    float: right;
    margin-right: 10px;
    width: auto;
    min-width: 60%;
    max-width: 100%;
    margin-bottom: 40px;
}

    #nomination_assessmentcharts_outer .key caption {
        text-align: left;
        font-weight: 700;
        padding: 5px 0;
    }

    #nomination_assessmentcharts_outer .key td {
        padding: 3px 5px;
        background-color: #eee;
        vertical-align: top;
    }

    #nomination_assessmentcharts_outer .key tr:nth-of-type(even) td {
        background-color: #ccc;
    }

    #nomination_assessmentcharts_outer .key td:first-child {
        font-weight: 700;
        width: 40px;
    }

/* Tablet adjustments */
@media only screen and (max-width: 992px) {
    #nomination_profile_outer .profile {
        width: 60%;
    }

    #nomination_assessments_outer .collapsible-header p {
        margin-right: 3%;
        font-size: 14px;
    }
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
    #nomination_profile_outer .nominationactions button {
        width: 100%;
    }

    #nomination_assessmentcharts_outer .key {
        float: none;
        font-size: 13px;
        margin-left: 0;
        width: 100%;
    }
}

/* #endregion */

/* #region View: Edit Assessment (applies to both Employee and Candidate assessment pages) */

/* Range Fields*/
.assessment_form .range-field {
    margin-bottom: 10px;
    margin-top: 20px;
    min-height: 40px;
    padding-right: 0;
}

/* Composite Scores */
.assessment_compositescore {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-flex-align: start;
    align-items: stretch;
    margin: 30px 0;
}

    .assessment_compositescore label {
        border: 1px solid #bbb;
        background-color: #eee;
        font-weight: 700;
        padding: 3px 10px;
        width: 100%;
    }

    .assessment_compositescore div {
        border: 1px solid #bbb;
        padding: 3px 5px;
        width: 150px;
        text-align: center;
    }

/* Other Considerations Switches */
.assessment_form .switch {
    height: 15px;
    position: relative;
}

    .assessment_form .switch .lever {
        background-color: #A6192E;
    }

    .assessment_form .switch label {
        font-size: 14px;
        font-weight: 400;
    }

        .assessment_form .switch label input[type=checkbox]:checked + .lever {
            background-color: #65bc45;
        }

            .assessment_form .switch label input[type=checkbox]:checked + .lever:after {
                background-color: #fff;
            }

        .assessment_form .switch label input[type=checkbox]:disabled + .lever {
            background-color: #ccc;
        }

    .assessment_form .switch:last-of-type {
        margin-bottom: 30px;
    }

    .assessment_form .switch > div.right {
        position: relative;
        background-color: #fff;
        z-index: 1;
        padding-left: 5px;
    }

/* Ratings Keys */
.assessment_form .key {
    border: 1px solid #bbb;
    font-size: 14px;
    border-spacing: 5px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
}

    .assessment_form .key caption {
        text-align: left;
        font-weight: 700;
        padding: 5px 0;
    }

    .assessment_form .key td {
        padding: 3px 5px;
        background-color: #eee;
        vertical-align: top;
    }

    .assessment_form .key tr:nth-of-type(even) td {
        background-color: #ccc;
    }

    .assessment_form .key td:first-child {
        font-weight: 700;
        width: 40px;
    }

/* #endregion */

/* #region View: Divisions */

#divisions_list_outer li {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-flex-align: start;
    align-items: stretch;
    justify-content: space-between;
}

    #divisions_list_outer li div.title {
        flex-grow: 0;
        width: 220px;
    }

    #divisions_list_outer li div.lastupdated {
        flex-grow: 1;
        width: 200px;
    }

    #divisions_list_outer li a.edit {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
    }

/* Mobile adjustments */
@media only screen and (max-width: 600px) {
    #divisions_list_outer li {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: column nowrap;
        flex-flow: column nowrap;
        -webkit-flex-align: start;
        align-items: stretch;
        justify-content: space-between;
    }

        #divisions_list_outer li div.title {
            flex-grow: 1;
            width: 100%;
        }

        #divisions_list_outer li div.lastupdated {
            width: 100%;
        }
}
/* #endregion */

/* #region View: Position Detail */

#positiondetail_info_outer .positionname {
    line-height: 50px;
}


#positiondetail_profile_documents .collection-item {
    min-height: 64px !important;
    padding-left: 65px;
    padding-right: 40px;
    position: relative;
    cursor: default;
}

    #positiondetail_profile_documents .collection-item > i {
        left: 15px;
        font-size: 36px;
    }

    #positiondetail_profile_documents .collection-item .title {
        font-weight: 600;
    }

    #positiondetail_profile_documents .collection-item .download {
        height: 40px;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #positiondetail_profile_documents .collection-item .download:hover {
            background: #fff;
        }

    #positiondetail_profile_documents .collection-item .trash {
        height: 40px;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #positiondetail_profile_documents .collection-item .trash:hover {
            background: #fff;
        }


#positiondetail_divisionassessments_outer .key {
    width: auto;
    min-width: 60%;
    float: right;
    margin-right: 10px;
}

#positiondetail_candidates_outer .collection-item .avatar-container {
    top: 50%;
    transform: translateY(-50%);
}

#positiondetail_candidates_outer .collection-item .email {
    transform: translateY(-6px);
}

    #positiondetail_candidates_outer .collection-item .email i {
        display: inline-block;
        transform: translateY(4px);
        margin-right: 5px;
    }

#positiondetail_candidates_outer .collection-item .assessments {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 600px;
}

    #positiondetail_candidates_outer .collection-item .assessments span {
        margin-right: 30px;
    }

#positiondetail_candidates_outer .collection-item .interview_feedbacks {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 1180px;
}

/* Tablet Adjustments */
@media only screen and (max-width: 992px) {
    #positiondetail_divisionassessments_outer .key {
        min-width: 40%;
        float: left;
        margin-left: 123px;
    }
}

/* Mobile Adjustments */
@media only screen and (max-width: 992px) {
    #positiondetail_divisionassessments_outer .key {
        width: 100%;
        margin-left: 0;
    }
}

/* #endregion */

/* #region View: Candidate Detail */

/* GEneral INfo */
#candidate_general_outer .comments > div {
    padding: 10px;
    border: 1px solid #ccc;
    min-height: 100px;
}

/* Uploads */
#candidate_profile_documents .collection-item {
    min-height: 64px !important;
    padding-left: 65px;
    padding-right: 40px;
    position: relative;
    cursor: default;
}

    #candidate_profile_documents .collection-item > i {
        left: 15px;
        font-size: 36px;
    }

    #candidate_profile_documents .collection-item .title {
        font-weight: 600;
    }

    #candidate_profile_documents .collection-item .download {
        height: 40px;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_profile_documents .collection-item .download:hover {
            background: #fff;
        }

    #candidate_profile_documents .collection-item .trash {
        height: 40px;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_profile_documents .collection-item .trash:hover {
            background: #fff;
        }

/* Individual Assessments */
#candidate_assessments_outer .collection-item {
    padding-left: 75px !important;
    min-height: 80px;
    cursor: default;
    position: relative;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-align: start;
    align-items: center;
}

    #candidate_assessments_outer .collection-item:hover {
        background-color: #fff;
    }

    #candidate_assessments_outer .collection-item .icon {
        font-size: 38px;
        margin-left: 5px;
        margin-right: 20px;
    }

    #candidate_assessments_outer .collection-item .trash {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_assessments_outer .collection-item .trash:hover {
            background: #fff;
        }

    #candidate_assessments_outer .collection-item .edit {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_assessments_outer .collection-item .edit:hover {
            background: #fff;
        }

    #candidate_assessments_outer .collection-item p {
        width: 30%;
    }


#candidate_assessmentcharts_outer .key {
    border: 1px solid #bbb;
    font-size: 14px;
    border-spacing: 5px;
    margin-top: 10px;
    float: right;
    margin-right: 10px;
    width: auto;
    min-width: 60%;
    max-width: 100%;
    margin-bottom: 40px;
}

    #candidate_assessmentcharts_outer .key caption {
        text-align: left;
        font-weight: 700;
        padding: 5px 0;
    }

    #candidate_assessmentcharts_outer .key td {
        padding: 3px 5px;
        background-color: #eee;
        vertical-align: top;
    }

    #candidate_assessmentcharts_outer .key tr:nth-of-type(even) td {
        background-color: #ccc;
    }

    #candidate_assessmentcharts_outer .key td:first-child {
        font-weight: 700;
        width: 40px;
    }


/* Tablet adjustments */
@media only screen and (max-width: 992px) {
    #candidatedetail_internal_profile .profile {
        width: 60%;
    }

        #candidatedetail_internal_profile .profile .green-text {
            display: block;
            font-size: 18px;
            margin-top: 10px;
        }

    #candidate_assessments_outer .collapsible-header p {
        margin-right: 3%;
        font-size: 14px;
    }
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
    #candidate_assessmentcharts_outer .key {
        float: none;
        font-size: 13px;
        margin-left: 0;
        width: 100%;
    }
}

/* #endregion */

/* #region View: Add Candidate */

#addcandidate_forms_outer .collapsible-header i {
    font-size: 32px;
}

#addcandidate_forms_outer .collapsible-body {
    padding: 10px;
    background-color: #f3f3f3;
}

#addcandidate_forms_outer .save button {
    margin-left: 48px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#addcandidate_forms_outer .division_match {
    position: absolute;
    left: 50%;
    top: 10px;
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
    #addcandidate_forms_outer .collection-item .secondary-content {
        position: static;
        margin-top: 5px;
        transform: none;
    }

    #addcandidate_forms_outer .city > i {
        display: none;
    }

    #addcandidate_forms_outer .lastname > i, #addcandidate_forms_outer .secondaryphone > i {
        display: inline-block;
    }

    #addcandidate_forms_outer .collection-item > p {
        padding-bottom: 30px;
    }

    #addcandidate_forms_outer .division_match {
        position: absolute;
        top: auto;
        bottom: 55px;
        left: 91px;
    }
}

/* #endregion */

/* #region View: Edit Candidate */

.editcandidate_form_outer .state > .select-wrapper ~ label {
    margin-left: 0 !important;
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
    .editcandidate_form_outer .state > .select-wrapper {
        margin-left: 3rem;
    }

        .editcandidate_form_outer .state > .select-wrapper ~ label {
            margin-left: 3rem !important;
        }
}

/* #region View: Edit Candidate */

.editcandidate_form_outer .state > .select-wrapper ~ label {
    margin-left: 0 !important;
}

/* Mobile Adjustments */
@media only screen and (max-width: 600px) {
    .editcandidate_form_outer .state > .select-wrapper {
        margin-left: 3rem;
    }

        .editcandidate_form_outer .state > .select-wrapper ~ label {
            margin-left: 3rem !important;
        }
}

/* #endregion */

/* #region View: List Interview */

#candidate_interviews_outer .collection-item {
    padding-left: 75px !important;
    min-height: 80px;
    cursor: default;
    position: relative;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-align: start;
    align-items: center;
}

    #candidate_interviews_outer .collection-item:hover {
        background-color: #fff;
    }

    #candidate_interviews_outer .collection-item .icon {
        font-size: 38px;
        margin-left: 5px;
        margin-right: 20px;
    }

    #candidate_interviews_outer .collection-item .trash {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_interviews_outer .collection-item .trash:hover {
            background: #fff;
        }

    #candidate_interviews_outer .collection-item .edit {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_interviews_outer .collection-item .edit:hover {
            background: #fff;
        }

    #candidate_interviews_outer .collection-item p {
        width: 30%;
    }

/* #endregion */

/* #region View: List Interviewers Feedback*/
#interviewers_feedback_outer .collection-item {
    padding-left: 75px !important;
    min-height: 80px;
    cursor: default;
    position: relative;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-align: start;
    align-items: center;
}

    #interviewers_feedback_outer .collection-item:hover {
        background-color: #fff;
    }

    #interviewers_feedback_outer .collection-item .icon {
        font-size: 38px;
        margin-left: 5px;
        margin-right: 20px;
    }

	/* buttons */
	#interviewers_feedback_outer .collection-item button.bzh-action {
		height: 40px;
		line-height: 40px;
		text-align: center;
		width: 40px;
		overflow: hidden;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		font-size: 28px;
		cursor: pointer;
	}

		#interviewers_feedback_outer .collection-item button.bzh-action:hover {
			background: #fff;
		}

		#interviewers_feedback_outer .collection-item button.bzh-action.trash {
			right: 10px;
		}

		#interviewers_feedback_outer .collection-item button.bzh-action.edit {
			right: 60px;
		}

		#interviewers_feedback_outer .collection-item button.bzh-action.print {
			right: 110px;
		}

    #interviewers_feedback_outer .collection-item .interviewer_full_name {
        width: 25%;
    }
/* #endregion*/

/* #region View: Edit Interview */

.editinterview_form_outer .dd > .select-wrapper {
    margin-left: 3rem !important;
}

    .editinterview_form_outer .dd > .select-wrapper ~ label {
        margin-left: 3rem !important;
    }

/* #endregion */

.assessment_inputs {
    border: 1px solid #bbb !important;
    text-align: center;
    padding-right: 0;
    margin-top: 4px !important;
}

    .assessment_inputs.disable {
        background: #e3e3e3 !important;
    }

.assessment_icons {
    font-weight: bolder;
    font-size: large;
    color: #a6192e;
    cursor: pointer !important;
    padding-right: 0 !important;
    text-align: center;
    user-select: none;
    font-size: 28px;
}

    .assessment_icons.disable {
        cursor: not-allowed !important;
    }


/* Hide HTML5 Up and Down arrows. */
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.no_padding {
    padding: 0 !important;
}

/*.interview-medium {
    width: 12% !important;
}*/

.interviewers-icon {
    height: 35px;
    width: 80px !important;
}

/*.interview-type {
    width: 40% !important;
}*/

/*.interview-start {
    width: 20% !important;
}*/

.feedback-icon {
    font-size: 28px !important;
    margin-right: 5px !important;
}

/*Region: Section headers*/
section {
    margin-top: 5px;
}

    section .section-header {
        background-color: #373A36;
        height: 38px;
        max-height: 38px;
        min-height: 38px;
        padding: 0;
        margin-bottom: 10px;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-flex-align: start;
        align-items: center;
        justify-content: space-between;
        color: #ffffff;
    }

        section .section-header .section-toolbar {
            text-align: right;
        }

            section .section-header .section-toolbar i,
            section .section-header .section-toolbar button {
                font-size: 23px;
                text-align: center;
                height: 32px;
                line-height: 32px;
                width: 32px;
            }

                section .section-header .section-toolbar i.mdi-plus-circle {
                    font-size: 26px;
                }

                section .section-header .section-toolbar i:hover {
                    background-color: rgba(255,255,255,0.5);
                }
/*Endregion*/

h1 {
    letter-spacing: 0.2px;
}

.highcharts-title {
    font-family: OpenSans, Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.2px;
}

.highcharts-label .highcharts-data-label > text > tspan {
    font-family: OpenSans, Arial, Helvetica, sans-serif !important;
}

.feedback-counter {
    top: -5px;
    color: #65bc45;
    font-weight: bold;
    position: absolute;
}


/*Region follow up notes*/
#candidate_follow_up_notes_outer .collection-item {
    padding-left: 75px !important;
    min-height: 80px;
    cursor: default;
    position: relative;
    padding: 10px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-flex-align: start;
    align-items: center;
}

    #candidate_follow_up_notes_outer .collection-item:hover {
        background-color: #fff;
    }

    #candidate_follow_up_notes_outer .collection-item .icon {
        font-size: 38px;
        margin-left: 5px;
        margin-right: 20px;
    }

    #candidate_follow_up_notes_outer .collection-item .trash {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_follow_up_notes_outer .collection-item .trash:hover {
            background: #fff;
        }

    #candidate_follow_up_notes_outer .collection-item .edit {
        height: 40px;
        line-height: 40px;
        text-align: center;
        width: 40px;
        overflow: hidden;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        cursor: pointer;
    }

        #candidate_follow_up_notes_outer .collection-item .edit:hover {
            background: #fff;
        }

    #candidate_follow_up_notes_outer .collection-item p {
        width: 30%;
    }


/*End region*/

ul.dropdown-content {
    max-height: 200px;
    overflow-y: auto !important;
    backface-visibility: hidden !important;
}

.breadcrumb {
    position: fixed;
    top: 53px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    width: 100%;
}

main {
    padding: 40px 15px;
}

.material-tooltip {
    white-space: pre;
}

.position-interviews {
    display: block !important;
    padding: 30px 10px 10px 10px !important;
}

.position-active-candidates {
    display: block !important;
    min-height: 132px !important;
}

@media only screen and (max-width: 684px) {
    .hide-feedback-icons-on-phones {
        display: none !important;
    }
}

@media only screen and (max-width: 500px) {
    .inactive-candidates {
        min-height: 132px !important;
    }
}

@media print {
	.breadcrumb {
		position: absolute;
		top: 50px;
	}
}