@CHARSET "UTF-8";

#facultyresume a.repeat,
#facultyresume a.delete,
#facultyresume a.clear,
#facultyresume a.example{
    cursor: pointer;
    float: right;
}

#facultyresume a.profile-delete {
    float: none;
    margin-left: 6px;
}

#facultyresume .form-nav {
    display: flex;
    justify-content: end;
    margin-bottom: 1em;
}

#facultyresume legend {
    display: none;
}

label[for^="container-title_id"]:after,
label[for^="container-apl_title_id"]:after,
label[for^="container-job_title"]:after,
label[for^="container-date_end"]:after {
    content: ' *';
    color: #AA0000;
}

#facultyresume input:-ms-input-placeholder {
    opacity: .5;
}

#facultyresume input::-ms-input-placeholder {
    opacity: .5;
}


#facultyresume input::placeholder {
    opacity: .5;
}


#pagecount, #helplink {
    clear:both;
    text-align:right;
}

#facultyresume table tr th {
    margin: 0;
    padding: 0;
}

#facultyresume table tr td {
    margin: 0;
    padding: 0 0 1em 0;
}

#facultyresume div.form_error {
    display: inline-block;
}

#facultyresume .errors td,
#facultyresume .errors li,
#facultyresume div.form_error,
.form_error {
    font-size: 13px;
    color: #AA0000;
    font-style: italic;
}

#facultyresume .errors ul {
    padding: 0;
}

#facultyresume .errors li {
    width: 453px;
    overflow: auto;
}

#facultyresume ul.errors li {
    list-style-type: none;
}

#facultyresume .required:after {
    content: ' *';
    color: #AA0000;
}

#phone-numbers .hint,
#email-addresses .hint,
#email-addresses .preferred {
    margin-bottom: 0;
    padding-bottom: 0;
}

#phone-numbers .hint:after,
#email-addresses .hint:after{
    content: ' *';
    color: #AA0000;
}

#facultyresume tr.button input {
    width: auto;
}

#facultyresume table.a2t {
    border-collapse: collapse;
}

#facultyresume table.a2t tr:nth-child(1) td {
    margin: 0 10px;
    min-width: 150px;
    font-weight: bold;
}

#facultyresume table.a2t tr:nth-child(even) {
    background-color: #CCC;
}

#facultyresume .section-end {
    margin-bottom: 30px;
}

#preview-pane {
    border: 1px solid #333;
    padding: 10px;
    margin-bottom: 15px;
}

#facultyresume input[disabled],
#facultyresume textarea[disabled]{
    background-color: #EEE;
}

#example_list {
    display: none;
    visibility: hidden;
}

.hint {
    font-weight: bold;
}

.preferred {
    font-weight: bold;
}

#repeat-phone,
#repeat-email {
    cursor: pointer;
}

.fa-plus-square {
    margin-left: 5px;
}

#review {
    margin-top: 50px;
}

#phone-privacy-info,
#email-privacy-info,
#email-preferred-info {
    color: #0067AC;
    padding-left: 5px;
    font-size: 16px;
    cursor: pointer;
}

#facultyresume table {
    width: 100%;
}

.mce-btn button,
.mce-btn button:hover {
    background-color: transparent;
    border: transparent;
}

td>div[id^='mce_'] {
    margin-bottom: 10px;
}

.description {
    font-style: italic;
}

.faculty-profile-missing {
    color: #a94442;
    font-weight: bold;
    font-style: italic;
    margin-left: 25px;
}

.faculty-profile-missing-field {
    color: #a94442;
    font-weight: bold;
    font-style: italic;
}

.profile-image-container {
    position: relative;
    width: 300px;
}

.profile-image-container .profile-image-overlay-container {
    position: absolute;
    padding: 10px;
    bottom: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}

.profile-image-container .profile-image-overlay-container .profile-image-overlay-icon {
    font-size: 4rem;
    color: #fff;
    text-shadow: 1px 1px 1px #3a3a3a;
    opacity: .5;

    order: 0;
    flex: 0 1 auto;
    align-self: center;

    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */

}

.profile-image-container .profile-image-overlay-container .profile-image-overlay-text {
    display: inline-block;
    visibility: hidden;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;

    order: 0;
    flex: 0 1 100%;
    align-self: center;

    transition: all 255ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}

.profile-image-container:hover {
    cursor: pointer;
}

.profile-image-container:hover .profile-image-overlay-container {
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */

}

.profile-image-container:hover .profile-image-overlay-container .profile-image-overlay-icon {
    font-size: 4rem;
    color: #fff;
    text-shadow: 1px 1px 1px #3a3a3a;
    opacity: 1;

    transition: all 500ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}

.profile-image-container:hover .profile-image-overlay-container .profile-image-overlay-text {
    visibility: visible;

    transition: all 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750); /* linear */
}

/**
Flex the footer so that delete is far away from cancel and done
Took idea from http://jsfiddle.net/mz1ft6jx/8/
**/
#profile_image_modal_window .modal-footer .modal-footer-button-container {
    display: flex;
    width: 100%;
    justify-content: end;
}

#profile_image_modal_window .modal-footer .modal-footer-button-container button {
    display: block
}

#profile_image_modal_window .modal-footer .modal-footer-button-container .delete-profile-image-button {
    margin-right: auto;
}

.dropzone {
    border: 0;
}

.dropzone.dz-drag-hover {

}

input[type=range]::-ms-track {
    width: 100%;
}

#back {
    margin-right: auto;
}



