﻿:root {
    --orange: #f95602;
    --off-orange: #F97702;
    --light-orange: #FFE1C8;
    --off-white: #F3F3F3;
    --white: #fff;
    --off-black: #242424;
    --black: #000;
    --mid-grey: #4D4D4D;
    --light-grey: #E2E2E2;
    --font-montserrat: 'Montserrat', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-roboto-condendsed: 'Roboto Condensed', sans-serif;
}

.control-radio label{display:block !important;}

/*Progress Bar Styling*/

.progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
    min-height: 95px;
}

    .progressbar li {
        list-style-type: none;
        width: 16.66%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        color: #7d7d7d;
        padding: 0 5px;
    }

    .progressbar.ref-app li {
        width: 33% !important;
    }

@media (max-width: 768px) {
    .progressbar li {
        visibility: hidden;
        width: 0;
        padding: 0px !important;
    }

    .progressbar.ref-app li {
        visibility: visible;
        width: 33% !important;
    }

    .progressbar li.active, .progressbar li:first-child, .progressbar li:last-child {
        visibility: visible;
        width: 33%;
    }
}

.progressbar li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 27px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}

.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: var(--mid-grey);
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active, .progressbar li.completed, .progressbar li.completed a {
    color: var(--orange);
}

    .progressbar li.active:before, .progressbar li.completed:before {
        border-color: var(--orange);
        background-color: var(--orange);
        color: white;
    }

    .progressbar li.active + li:after, .progressbar li.completed + li:after {
        background-color: var(--orange);
    }

    .progressbar li.completed:before {
        background-color: var(--white);
        color: var(--orange);
        border-color: var(--orange);
    }


div.featured-box div.box-content {
    border-top: 3px solid var(--orange) !important;
}

.btn-primary, .btn-primary:hover {
    color: #fff;
    background-color: var(--orange);
    border-color: var(--orange);
}
/* Input slider styling */

input[type=range] {
    -webkit-appearance: none;
    margin: 18px 0;
    width: 100%;
}

    input[type=range]:focus {
        outline: none;
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        animate: 0.2s;
        background: #ccc;
        border: 0.2px solid #e9e9e9;
    }

    input[type=range]::-webkit-slider-thumb {
        border: 0.2px solid #555;
        height: 36px;
        width: 36px;
        border-radius: 50%;
        background: var(--orange);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -14px;
    }

    input[type=range]:focus::-webkit-slider-runnable-track {
        background: #367ebd;
    }

    input[type=range]::-moz-range-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        animate: 0.2s;
        background: #ccc;
        border: 0.2px solid #e9e9e9;
    }

    input[type=range]::-moz-range-thumb {
        border: 0.2px solid #555;
        height: 36px;
        width: 36px;
        border-radius: 50%;
        background: var(--orange);
        cursor: pointer;
    }

    input[type=range]::-ms-track {
        width: 100%;
        height: 8.4px;
        cursor: pointer;
        animate: 0.2s;
        background: transparent;
        border-color: transparent;
        border-width: 16px 0;
        color: transparent;
    }

    input[type=range]::-ms-fill-lower {
        background: #2a6495;
        border: 0.2px solid #e9e9e9;
        border-radius: 2.6px;
    }

    input[type=range]::-ms-fill-upper {
        background: #ccc;
        border: 0.2px solid #010101;
        border-radius: 2.6px;
    }

    input[type=range]::-ms-thumb {
        border: 0.2px solid #e9e9e9;
        height: 36px;
        width: 36px;
        border-radius: 50%;
        background: #ffffff;
        cursor: pointer;
    }

    input[type=range]:focus::-ms-fill-lower {
        background: #ccc;
    }

    input[type=range]:focus::-ms-fill-upper {
        background: #ccc;
    }

.alternative-font {
    color: var(--orange) !important;
}

.progress-bars .progress.thin-bar{
    height:6px;
}