body {
    font-family: 'Roboto', sans-serif !important;
    background: #fafafa;
}


a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 8px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 -1px 14px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #979797;
    padding: .375rem .375rem !important;
}

    .form-control:focus {
        border-color: #4A90E2;
        box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    }

    .form-control.error {
        border: 1px solid #D0021B !important;
        box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
    }

    .form-control.disabled {
        border: 1px solid #BBBBBB;
        box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

::-webkit-input-placeholder {
    /* Edge */
    color: #BBBBBB;
    font-size: 14px;
}

:-ms-input-placeholder {
    /* Internet Explorer */
    color: #BBBBBB;
    font-size: 14px;
}

::placeholder {
    color: #BBBBBB;
    font-size: 14px;
}

i,
span {
    display: inline-block;
}

.mrg-rt-50 {
    margin-right: 50px;
}

.mrg-lt-50 {
    margin-left: 50px;
}

.mrg-tp-50 {
    margin-top: 50px;
}
.mrg-tp-15 {
    margin-top: 15px;
}
.mrg-tp-25 {
    margin-top: 25px;
}
.display-flex {
    display: flex;
}
/* ---------------------------------------------------
    HEADER   STYLE
----------------------------------------------------- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left-header {
    display: flex;
    align-items: center;
}

    .left-header img {
        margin-right: 27px;
    }

    .left-header .hamburger-menu {
        width: 28px;
        cursor: pointer;
    }

    .left-header h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 0;
    }

    .left-header .logo {
        width: 117px !important;
    }

    .left-header h3 {
        font-size: 20px;
        line-height: 30px;
        margin: 0;
    }

.right-header {
    display: flex;
    align-items: center;
}

    .right-header .bitmap {
        width: 42px;
        height: 42px;
        margin-right: 30px;
    }

    .right-header .power-icon {
        width: 23px;
        cursor: pointer;
    }

/* ---------------------------------------------------
    LOGIN   STYLE
----------------------------------------------------- */
.main-wrapper {
    position: relative;
    height: 100vh;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .main-wrapper::before,
    .main-wrapper::after {
        content: "";
        position: absolute;
        background-image: url('../images/background.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .main-wrapper::before {
        background-image: url('../images/bg-pattern.png');
        z-index: -1;
    }

.login-wrapper {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.1);
    width: 60%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
    max-height: 400px;
    position: relative;
}

    .login-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        background: #E2E2E2;
    }

    .login-wrapper .login-intro,
    .login-wrapper .login-form {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

.login-intro {
    text-align: center;
}

    .login-intro h3 {
        font-size: 30px;
        color: #88833D;
        margin-bottom: 50px;
        position: relative;
    }

        .login-intro h3::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -5px;
            transform: translate(-50%, -50%);
            height: 2px;
            width: 32px;
            background: #BEBB92;
        }

    .login-intro h4 {
        font-size: 20px;
        color: #000000;
        margin-bottom: 35px;
        line-height: 30px;
    }

.login-form a {
    display: block;
    color: #4A90E2;
    font-size: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.login-form .btn-primary {
    color: #fff;
    background-color: #0D1A2B;
    border-color: #0D1A2B;
    border-radius: 3px;
    padding: 7px 40px;
    text-align: center;
    margin-bottom: 0;
    font-size: 14px;
    width: 120px;
    display: inline-block;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 220px;
    max-width: 220px;
    background: #0D1A2B;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 3px 0 14px rgba(0, 0, 0, 0.1);
}

    #sidebar.active {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
    }

        #sidebar.active .sidebar-header img {
            width: 50px;
        }

    #sidebar ul li a {
        text-align: left;
    }

    #sidebar.active ul li a {
        padding: 10px;
        text-align: center;
        font-size: 0.85em;
    }

        #sidebar.active ul li a p {
            display: none;
        }

    #sidebar.active ul ul a {
        padding: 10px !important;
    }

    #sidebar.active .dropdown-toggle::after {
        top: 45%;
        bottom: 10px;
        right: 20%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }

    #sidebar.active .sidebar-header {
        padding: 20px 0;
    }

        #sidebar.active .sidebar-header h3 {
            display: none;
        }

        #sidebar.active .sidebar-header h4 {
            display: none;
        }

    #sidebar .sidebar-header {
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.sidebar-header img {
    margin-bottom: 15px;
}

.sidebar-header h3 {
    color: #BEBB92;
    font-size: 20px;
    margin-bottom: 5px;
}

.sidebar-header h4 {
    color: #86835E;
    font-size: 15px;
    margin-bottom: 0;
}

#sidebar .sidebar-header strong {
    display: none;
    font-size: 1.8em;
}

#sidebar ul.components {
    border-top: 1px solid #979797;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 16px;
    display: block;
    line-height: 30px;
    border-bottom: 1px solid #979797;
}

    #sidebar ul li a img {
        width: 15px;
        margin-right: 5px;
    }

    #sidebar ul li a p {
        display: inline-block;
        margin: 0;
    }

    #sidebar ul li a i {
        margin-right: 10px;
    }

#sidebar ul li.active > a,
a[aria-expanded="true"] {
    color: #fff;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    background: #2D3744;
}

a.download {
    background: #fff;
    color: #7386D5;
}

/* ---------------------------------------------------
    DASHBOARD   STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

.dashboard-main {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 -1px 14px rgba(0, 0, 0, 0.1);
    width: 100%;
}

    .dashboard-main .dashboard-chart {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .dashboard-main .chartjs-render-monitor {
        width: 100% !important;
    }

.dashboard-chart .dashboard-head h3 {
    font-size: x-large;
    line-height: 30px;
    margin: 0;
    color: #0D1A2B;
}

.dashboard-team {
    display: flex;
    align-items: center;
}

    .dashboard-team span {
        width: 30px;
        height: 12px;
        margin-right: 12px;
    }

    .dashboard-team h5 {
        margin: 0;
        font-size: 16px;
    }

    .dashboard-team .dashboard-teamA-details,
    .dashboard-teamB-details, .dashboard-teamC-details {
        display: flex;
        align-items: center;
        padding: 10px 0;
    }

    .dashboard-team .dashboard-teamA-details {
        margin-right: 50px;
    }

        .dashboard-team .dashboard-teamA-details .btn, .dashboard-team .dashboard-teamC-details .btn {
            margin-left: 12px;
            width: 220px;
            text-align: left;
            background-color: #fff;
            border: 1px solid #979797;
            color: #000000;
            font-size: 14px;
        }

    .dashboard-team .dashboard-teamB-details .form-group, .total-section .dashboard-teamB-details .form-group {
        margin: 0;
        margin-left: 12px;
    }

        .dashboard-team .dashboard-teamB-details .form-group input, .total-section .dashboard-teamB-details .form-group input {
            border: 1px solid #979797;
            font-size: 14px;
        }

    .dashboard-team .dashboard-teamA-details span, .dashboard-team .dashboard-teamC-details span {
        background: #BEBB92;
    }

    .dashboard-team .dashboard-teamB-details span {
        background: #0D1A2B;
    }

/* ---------------------------------------------------
    PRESORT   STYLE
----------------------------------------------------- */
.table-wrapper {
    border-top: 1px solid #E2E2E2;
}

.table th {
    font-size: 14px;
    line-height: 18px;
    color: #0D1A2B;
    font-weight: normal;
}

.table tr {
    border-bottom: 1px solid #E2E2E2;
}

.table td {
    border-top: none;
}

    .table td img {
        width: 13px;
        cursor: pointer;
    }

    .table td .edit {
        margin-right: 5px;
    }

.table .btn {
    width: 100%;
    text-align: left;
    background-color: #fff;
    border: 1px solid #979797;
    color: #000000;
    font-size: 14px;
}

.add-table-row {
    display: flex;
    align-items: center;
}

    .add-table-row img {
        width: 20px;
        margin-right: 10px;
        cursor: pointer;
    }

    .add-table-row h3 {
        margin: 0;
        color: #7ED321;
        font-size: 17px;
        cursor: pointer;
    }
.add-table-row-innovation {
    display: flex;
    align-items: center;
}

    .add-table-row-innovation img {
        width: 20px;
        margin-right: 10px;
        cursor: pointer;
    }

    .add-table-row-innovation h3 {
        margin: 0;
        color: #7ED321;
        font-size: 17px;
        cursor: pointer;
    }
.table-tags {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    margin-right: 70px;
}

    .table-tags .table-tag-plan,
    .table-tag-actual {
        border-top-left-radius: 38px;
        border-top-right-radius: 38px;
        width: 40%;
        padding: 7px 0;
        text-align: center;
    }

    .table-tags .table-tag-plan {
        margin-right: 10px;
        background-color: #E7EBED;
    }

    .table-tags .table-tag-actual {
        background-color: #F0EFEB;
    }

.total-section {
    float: right;
    margin: 20px;
}

    .total-section .dashboard-teamB-details .form-group, .total-section .dashboard-teamB-details h5 {
        width: 50%;
    }

.project-state .dashboard-team h5, .quality .dashboard-team h5, .team .dashboard-team h5 {
    width: 120px;
}

.project-state .dashboard-team .form-group, .quality .dashboard-team .form-group, .team .dashboard-team .form-group {
    width: 170px;
}

.features-risks .table td img {
    margin-top: 11px;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }

    .dropdown-toggle::after {
        top: auto;
        bottom: 10px;
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }

    #sidebar.active {
        margin-left: 0 !important;
    }


    #sidebar ul li a {
        padding: 20px 10px;
    }

        #sidebar ul li a span {
            font-size: 0.85em;
        }

        #sidebar ul li a i {
            margin-right: 0;
            display: block;
        }

    #sidebar ul ul a {
        padding: 10px !important;
    }

    #sidebar ul li a i {
        font-size: 1.3em;
    }

    #sidebar {
        margin-left: 0;
    }

    #sidebarCollapse span {
        display: none;
    }
}

.validation-color {
    color: red;
    margin-left: -43px;
}

.col-md-3 {
    float: left;
}
.pd-bottom{
    padding-bottom:15px;
}
.float-right{
    float:right;
}
.margin-right{
    margin-right:10px !important;
}
.validation-summery-color{
    color:red;
}

tbody .form-group {
    margin-bottom: 0rem !important;
}
.width-8-perc {
    width: 8% !important;
}
.width-10-perc{
    width:10% !important;
}
.width-12-perc {
    width: 12% !important;
}
.width-15-perc {
    width: 15% !important;
}
.width-17-perc {
    width: 17% !important;
}
.width-5-perc {
    width: 5% !important;
}
.width-30-perc {
    width: 30% !important;
}
.innovation-delete {
    margin-top: 11px;
}
.innovation-delete {
    margin-top: 11px;
}
input::placeholder {
    font-size: 14px;
    color: darkgrey !important;
    opacity: 1 !important;
}
select {
    font-size: 14px !important;
}
    
    select option[value=""] {
        color: darkgrey !important;
    }
    
input {
    font-size: 14px !important;
}
input[type="radio"] {
    margin-top: 30px;
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2043;
    background-color: #ffffff;
    opacity: 0.7;
    display: none;
}

.loadingIcon {
    display: block;
    margin: auto;
    margin-top: 200px !important;
    border-radius: 6px;
}

.margin-bottom {
    margin-bottom: 5px;
}
.margin-bottom-10 {
    margin-bottom: 10px;
}
.total-section h5{
    font-size: inherit;
}
.hideContent{
    display:none;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-50 {
    margin-bottom: 50px;
}
.escalations {
    position: absolute;
}
.link-clickable {
    color: #256ff5;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
.dashboard-head {
    margin-bottom: 25px;
}
tfoot > tr > th.dt-right {
    padding-right: 6px !important;
}
.view-details {
    cursor: pointer;
}
.buttons-html5 {
    background-image: linear-gradient(to bottom, #fc6626 0%, #f16a30 100%) !important;
    color: white !important;
}

.expand-buttons-span {
    font-size: 18px;
    cursor: pointer;
}
.detail-collapse {
    color: #ff5810;
}
.detail-expand {
    color: #1091ff;
}
.child-row {
    background-color: #fd68288f !important;
}
.input-group-text {
    background-color: #ff5810;
    border: 1px solid grey;
    color: white;
}
.link-clickable-href{
    cursor:pointer;
}
select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + .3px);
}
div.dt-buttons {
    position: relative !important;
    float: right !important;
    margin-top: 25px !important;
}
.link-datetime-href-left {
    border-right: 0 !important;
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}
.dashboard-head-custom {
    float: left !important;
    margin-bottom: 0px !important;
}
.dashboard-chart {
    margin-bottom: 0px !important;
}

.dashboard-main {
    margin-bottom: 15px;
}

.ui-datepicker-calendar {
    display: none;
}

.highcharts-figure, .highcharts-data-table table {
    min-width: 320px;
    max-width: 660px;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #EBEBEB;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

.dashboard-teamB-details h5 {
    margin-right: 10px;
    padding-bottom: 9px;
}

.highcharts-credits {
    display: none;
}
.filter-head {
    float: left;
    height: 45px;
}
.month-filter-group {
    margin-bottom: 14px;
}
.float-left {
    float: left;
}
#monthPicker{
    text-align:center;
}
.input-group-append{
    cursor:pointer;
}
.datepicker table tr td span.active.active {
    background: #ff5810 !important;
}