/*small phone phone up to 600px*/
@media only screen and (max-width: 600px) {
    .navbar-button {
        padding: 0 !important;
        border: 0 !important;
    }

    .width_40 {
        width: 100% !important;

    }

}

/*large screen 768px and up */
@media only screen and (min-width: 768px) {
    .width_40 {
        width: 40% !important;

    }

}

html,
body {
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

a {
    color: #22252a;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    cursor: pointer;
}

/* updated */
a {
    text-decoration: none;
    cursor: pointer;
}

a,
a:visited,
a:hover,
a:active {
    color: inherit;
}

/* updated */

button {}

hr {
    padding: 0;
    margin: 0;
}

.big_radio {
    width: 1.2rem;
    height: 1.2rem;
}

.table td,
.table th {
    border-spacing: 0 !important;
    padding: 0 !important;

}


.font_condense {
    font-stretch: ultra-condensed;
}

.notice {
    background-color: #af4448;
    color: #f2f2f2;
}

.display_none {
    display: none
}

.display_block {
    display: block;
}

.hover_pointer {
    cursor: pointer;
}

.text_a_center {
    text-align: center;
}

.text_a_right {
    text-align: right;
}

.input_box_1 {
    width: 3rem;
    height: 1.5rem;
}

.white_space {
    white-space: pre-line;
}

/*global CSS*/
.nav_contrast {
    background-color: #160801;
    color: #ffffff;
}

.col-centered {
    float: none !important;
    margin: 0 auto !important;
}

.margin_top_10 {
    margin-top: 10rem !important;
}

.allow-dropdown {
    display: block !important;
    width: 100% !important;
}

.invalid input:required:invalid,
invalid textarea:required:invalid {
    background: #BE4C54;
}

.card {
    border-radius: 0 !important;
}

.input_disabled {
    border: 0 !important;
    color: #141414;
}

.input_no_edit {
    pointer-events: none;
}

.line-height_1 {
    line-height: 1.2;
}

.pre-line {
    white-space: pre-line;
}

.initial,
.locked {
    color: #f2f2f2;
    background-color: #545b62;
}

.exploration {
    color: #505050;
    background-color: #f8f2dc;
}

.evaluation-start {
    color: #f2f2f2;
    background-color: #3577e0;

}

.evaluation-list {
    color: #f2f2f2;
    background-color: #3577e0;

}

.evaluation-matrix {
    color: #f2f2f2;
    background-color: #3577e0;

}

.planning {
    color: #f2f2f2;
    background-color: #3577e0;

}

.final {
    color: #f2f2f2;
    background-color: #3577e0;

}

.quality-check {
    color: #f2f2f2;
    background-color: #3577e0;

}

.reviewed {
    color: #f2f2f2;
    background-color: #3577e0;

}

.discussed {
    color: #f2f2f2;
    background-color: #af4448;
}

.closed {
    color: #f2f2f2;
    background-color: #af4448;
}

.closed-meet {
    color: #f2f2f2;
    background-color: #af4448;

}

.closed-meet {
    color: #f2f2f2;
    background-color: #af4448;

}

.closed-discuss {
    color: #f2f2f2;
    background-color: #af4448;
}

.strip_yellow {
    background-color: #ffab00
}

.grey_stage {
    color: #f2f2f2;
    background-color: #545b62;

}

.black_strip {
    color: #f2f2f2;
    background-color: #262626;

}

.white_stage {
    color: #505050;
    background-color: #efebe9;

}

.red_stage {
    color: #f2f2f2;
    background-color: #af4448;

}

.blue_stage {
    color: #f2f2f2;
    background-color: #3577e0;

}

.custom-list:hover {
    background-color: #ffab00;
}

.icon-size {
    padding: 0.5rem;
    font-size: 1rem;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #af4448;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.rotate {
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}

.rotate.down {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/*loader CSS*/
.ring {
    position: fixed;
    display: none;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: transparent;
    /*border: 3px solid #3c3c3c;*/

    text-align: center;
    line-height: 100px;
    font-family: sans-serif;
    font-size: 20px;
    color: #e46d07;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #e46d07;
    /*box-shadow: 0 0 20px rgba(0,0,0,.5);*/
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #262626;
    opacity: 0.15;
    z-index: 999;
}





@keyframes animateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}