
/* STEPS */

.step_icon {
    background-color: transparent;
    font-size: 30px;
    color: rgb(24, 188, 156);
    text-align: center;
    border: 2px solid transparent;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    cursor: pointer;
    line-height: 1.3;
}

    .step_icon img:hover {
        filter: brightness(100%);
    }

    .step_icon.beyond_selected {
        color: rgb(211, 211, 211);
    }

    .step_icon.beyond_selected img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%) brightness(150%);
    }

.step_icon_label {
    background-color: transparent;
    color: rgb(24, 188, 156);
    font-size: 16px;
    padding: 0px;
    margin: 0px;
    margin-top: 5px;
}

    .step_icon_label.beyond_selected {
        color: rgb(211, 211, 211);
    }

    .step_icon_label.counter {
        width:50%;
        color: rgb(24, 188, 156);
        text-align: center;
        border: 0px;
        outline: 0px;
        cursor: pointer;
        /*padding-left: 70px;*/
        margin: 0px;
    }
        .step_icon_label.beyond_selected.counter {
            color: rgb(211, 211, 211);
        }

/* TABS */

.header_title {
    font-size: 18px;
}

.header_start_date {
    font-size: 18px;
/*    color: lightgray; */
}

.selected_tab_header {
    display: inline-flex;
    cursor: default;
    font-size: 20px;
    text-align: left;
    color: white;
    width: 100%;
    background-color: rgb(24, 188, 156);
    margin-left: 0px;
    padding: 0px;
    border-radius: 5px;
}

    .selected_tab_header img {
        border: 1px solid white;
        border-radius: 100%;
        margin-right: 10px;
        margin-top: 0px;
    }

    .selected_tab_header.label {
        padding: 5px;
        padding-left: 20px;
        padding-right: 0px;
    }

    .selected_tab_header.documents {
        cursor: pointer;
        font-weight: normal;
        padding-top: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .selected_tab_header.documents:hover {
        color: orange;
    }

.uploaded_file_icon {
    margin-top: 1px;
}

.uploaded_file_counter {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 18px;
    font-family: Arial;
    margin-top: 2px;
    margin-left: 5px;
}

/* PROGRESS BAR */

.selected_tab_header.slider {
    height: 22px;
    text-align: left;
    border-radius: 5px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-right: 20px;
}

.progress {
    height: 22px;
    width: 100%;
    background-color: white;
    border: 0px solid white;
    border-radius: 5px;
    margin-left: 0px;
    margin-right: 0px;
}

.progress-bar.progress-bar-success {
    float: none;
    font-size: 14px;
    background-color: rgb(17,130,107);
    color: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

    .progress-bar.progress-bar-success.work-done {
        line-height: 22px;
        background-color: transparent;
        padding: 0;
        margin: 0;
    }

.progress.progress-bar-followup {
    background-color: lightgray;
}

.progress-bar.progress-bar-followup {
    background-color: rgb(24, 188, 156);
}

    .progress-bar.progress-bar-followup.closed {
        background-color: rgb(196,196,196);
    }

/* STEP ICONS */
.fa-stack {
    font-size: 20px;
}

.fa_horizontal_line_left {
    transform: scale(10,0.1) translateX(-60%);
    color: rgb(24, 188, 156);
    background-color: rgb(24, 188, 156);
}

    .fa_horizontal_line_left.beyond_selected {
        color: rgb(211, 211, 211);
        background-color: rgb(211, 211, 211);
    }

.fa_horizontal_line_right {
    transform: scale(10,0.1) translateX(60%);
    color: rgb(24, 188, 156);
    background-color: rgb(24, 188, 156);
}

    .fa_horizontal_line_right.beyond_selected {
        color: rgb(211, 211, 211);
        background-color: rgb(211, 211, 211);
    }

/* DOSSIER BOTTOM NAVIGATION */

.dossier_bottom_navigation {
    background-color: rgb(24, 188, 156);
    color: white;
    border-radius: 15px;
    padding: 10px;
    border: 0;
    outline: 0;
    cursor: pointer;
    max-width: 190px;
    min-width: 190px;
    margin: auto; /* To center div */
}

    .dossier_bottom_navigation:hover {
        background-color: rgb(19, 151, 124);
    }

    .dossier_bottom_navigation.not_possible,
    .dossier_bottom_navigation.not_possible:hover {
        background-color: lightgray;
        color: gray;
        cursor: not-allowed;
    }

    .dossier_bottom_navigation.grayed {
        background-color: lightgray;
        color: gray;
    }

        .dossier_bottom_navigation.grayed:hover {
            background-color: gray;
            color: lightgray;
        }

    .dossier_bottom_navigation.close_dossier {
        background-color: orange;
    }
    .dossier_bottom_navigation.close_dossier:hover {
        background-color: darkorange;
    }

.global_error_message {
    background-color: white;
    color: red;
    border: 1px solid lightcoral;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}

.field_error_message { /* note: is defined in "Form.chtml" view */
    color: red;
    margin-left: 0px;
    text-align:center;
}


/* TIMELINE */
.timeline:before {
    width: 3px;
    background-color: rgb(24, 188, 156);
}

/* MEDIA DEPENDENT CHANGES*/

@media all and (min-width: 100px) and (max-width: 1000px) {

    .fa_horizontal_line {
        /*display: none;*/
    }

    .fa_horizontal_line_right {
        /*display: none;*/
    }

    .fa_horizontal_line_left {
        /*display: none;*/
    }

    .step_icon, .step_icon.beyond_selected {
        /* border: 1px solid lightgray; */
        padding:10px;
        margin-bottom: 10px;
    }

    .selected_tab_header.slider {
        margin-left: 20px;
        margin-right: 20px;
    }

}
