﻿/*Icons Fonts*/
/*@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

html {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-y: scroll
}

/* Apply to an element or globally */
* {
    scrollbar-color: #888 #f1f1f1; /* thumb color track color */
    scrollbar-width: thin; /* auto | thin | none */
}
/* Scrollbar Track */
::-webkit-scrollbar {
    width: 5px; /* or height for horizontal scroll */
}

/* Scrollbar Track Background */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Scrollbar Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    /* On hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    width: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #D0D0CE;
    font-size: .85rem;
    font-family: 'Open Sans',  sans-serif;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.loader_bg {
    z-index: 9910;
    min-height: 100%;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.8);
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #8CC63F;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    position: absolute;
    margin-left: -15px;
    margin-top: -15px;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.full-background,
.full-background_one {
    min-height: 100%;
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 0;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

    .full-background::after {
        content: "";
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 0px;
        z-index: -1;
        /*background: linear-gradient(45deg, rgba(0, 176, 132, 0.65) 45%, rgba(216, 236, 0, 0.75) 65%);
        opacity: 0.6;
        filter: alpha(opacity=60);*/
    }

.outer-middle {
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.align-right-middile {
    display: flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: end !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.absolute-center {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around !important;
}

.btn-img {
    padding: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
}

    .btn-img > img {
        width: 100%;
        display: block
    }

    .btn-img:hover {
        border-color: #000000;
    }

p {
    margin-bottom: 0px;
    text-align: left
}

ol, ul {
    margin: 0;
    padding: 0 0 0 20px;
}

    ol li, ul li {
        line-height: 1.35;
        margin-bottom: 0px;
    }

.w-100{
    width: 100%;
}

.wrapper {
    min-height: 100%;
    position: static;
    overflow: hidden
}

    .wrapper:before, .wrapper:after {
        content: "";
        display: table
    }

    .wrapper:after {
        clear: both
    }

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}

/*---------------------------------/
        /------------- tabs ---------------/
        /---------------------------------*/
.tabs {
    border-bottom: 2px solid #DDD;
    text-align: left;
    list-style: none;
    padding: 0;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 0;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03),0 0.9375rem 1.40625rem rgba(4,9,20,0.03),0 0.25rem 0.53125rem rgba(4,9,20,0.05),0 0.125rem 0.1875rem rgba(4,9,20,0.03);
}

    .tabs > li {
        cursor: pointer;
        position: relative;
        display: inline-block;
        margin-bottom: -1px;
        padding: 0.625rem;
        font-size: 0.85rem;
        margin-right: 2px;
        line-height: 1.42857143;
        border: 1px solid transparent;
        border-radius: 4px 4px 0 0;
        color: #868686;
    }

        .tabs > li.active,
        .tabs > li.active:focus,
        .tabs > li.active:hover {
            border-width: 0;
        }

        .tabs > li.active,
        .tabs > li:hover {
            color: #000 !important;
            background: transparent;
            font-weight: 600;
        }

        .tabs > li::after {
            content: "";
            background: #000;
            height: 3px;
            position: absolute;
            width: 100%;
            left: 0px;
            bottom: -2px;
            transition: all 250ms ease 0s;
            transform: scale(0);
        }

        .tabs > li.active::after,
        .tabs > li:hover::after {
            transform: scale(1);
        }

.tabs-content > .tabs-body {
    padding: 10px;
    display: none;
}


/*---------------------------------/
        /-------- status-progress ---------/
        /---------------------------------*/
ul.status-progress {
    margin: 1rem auto;
    padding: 0;
    clear: both;
    display: table;
    width: auto;
    counter-reset: step;
}

    ul.status-progress li {
        list-style-type: none;
        width: 220px;
        float: left;
        position: relative;
        text-align: center;
    }

        ul.status-progress li:first-child {
            margin-left: -110px;
        }

        ul.status-progress li::before {
            content: counter(step);
            counter-increment: step;
            width: 30px;
            height: 30px;
            line-height: 26px;
            display: block;
            border-radius: 50%;
            margin: 0 auto;
            border: 2px solid #b5b5b5;
            background-color: #FFF;
            color: #888;
            text-align: center;
            z-index: 1;
            position: relative;
        }

        ul.status-progress li:last-child::after {
            display: none
        }

        ul.status-progress li::after {
            content: '';
            width: 100%;
            height: 4px;
            background-color: #b5b5b5;
            position: absolute;
            left: 50%;
            top: 14px;
            z-index: 0;
        }

        ul.status-progress li.done::after {
            background-color: #8BC435;
        }

        ul.status-progress li.done::before,
        ul.status-progress li.active::before {
            border-color: #000000;
            color: #000000;
        }

        ul.status-progress li.active::before {
            background-color: #8BC435;
            color: #fff;
        }

.status-lvl {
    position: relative;
    margin-top: -30px;
    margin-left: 125px;
    width: 122px;
    height: 30px;
    line-height: 1.15;
    background: #FFF;
    z-index: 3;
    padding: .15rem .0rem .15rem 0.45rem;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: .75rem;
    font-weight: 600
}

    .status-lvl.last-child {
        width: 75px;
    }

.done > .status-lvl::before {
    background: #fff;
    font: normal normal normal .95rem/1 FontAwesome;
    content: "\f058";
    color: #8BC435;
    position: absolute;
    left: -10px;
    top: -2px;
    z-index: 3;
    border-radius: 6px;
}

.status-lvl > .info {
    background: #FFF;
    position: absolute;
    display: inline-block;
    left: 100%;
    top: 3px;
    z-index: 2;
    font-size: 1.15rem;
    cursor: pointer;
}

    .status-lvl > .info:hover > span.ecs_tooltip {
        display: block;
    }

span.ecs_tooltip {
    background: #fff;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    color: #000;
    display: none;
    font-size: .688rem;
    padding: 5px 5px 8px;
    position: absolute;
    left: -60px;
    top: -58px;
    text-align: center;
    width: 140px;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03),0 0.9375rem 1.40625rem rgba(4,9,20,0.03),0 0.25rem 0.53125rem rgba(4,9,20,0.05),0 0.125rem 0.1875rem rgba(4,9,20,0.03);
}

    span.ecs_tooltip::after,
    span.ecs_tooltip::before {
        content: '';
        position: absolute;
        border-style: solid;
        border-width: 10px;
        display: block;
        margin-top: 40px;
        margin-left: 51px;
    }

    span.ecs_tooltip::after {
        top: 10px;
        border-color: #FFF transparent transparent transparent;
    }

    span.ecs_tooltip::before {
        top: 11px;
        border-color: #707070 transparent transparent transparent;
    }

/*span.ecs_tooltip::after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #FFF;
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
}*/

/*---------------------------------------------*/
/*-------------- Header Section ---------------*/
/*---------------------------------------------*/

.fixed .main-header {
    top: 0;
    right: 0;
    left: 0;
}

.fixed .main-header {
    position: fixed;
}

.main-header {
    position: relative;
    max-height: 7.5rem;
    z-index: 999
}

.main-header {
    width: 100%;
    position: fixed;
    min-height: 3.5rem;
    /*min-height: 4.2rem;*/
    background: rgba(0, 0, 0, 0.99);
    padding: 0 1rem;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4,9,20,0.03),0 0.9375rem 1.40625rem rgba(4,9,20,0.03),0 0.25rem 0.53125rem rgba(4,9,20,0.05),0 0.125rem 0.1875rem rgba(4,9,20,0.03);
}

    .main-header .navbar-right {
        float: right
    }

    .main-header .logo {
        -webkit-transition: width .3s ease-in-out;
        -o-transition: width .3s ease-in-out;
        transition: width .3s ease-in-out;
        display: block;
        float: left;
        height: auto;
        text-align: center;
        overflow: hidden;
    }

        .main-header .logo > .logo-lg > img {
            width: auto;
            height: 56px;
            padding: 15px 5px;
            margin-top: 2px;
        }

        .main-header .logo .logo-lg {
            display: block;
        }

        .main-header .logo .logo-mini {
            display: none;
        }


    .main-header > .navbar {
        -webkit-transition: margin-left .3s ease-in-out;
        -o-transition: margin-left .3s ease-in-out;
        transition: margin-left .3s ease-in-out;
        margin-bottom: 0;
        margin-left: 230px;
        border: none;
        min-height: 56px;
        border-radius: 0;
        background-color: #FFFFFF;
        border-left: 1px solid #ddd;
    }

    .main-header .navbar-right > .logo > img {
        width: auto;
        height: 60px;
        padding: 0 5px;
        /*background: #FFF;*/
    }

ul.navtop {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

    ul.navtop li {
        display: inline-block;
        list-style-type: none;
        position: relative;
        margin-top: 0.7rem;
    }

        ul.navtop li a.link-btn {
            color: #ed1c24;
            /*font-size: 1.5rem;*/
            display: inline-block;
            padding: .188rem .313rem;
            margin-right: .5rem;
            text-decoration: none;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            outline: none;
            color: #fff;
            transition: color 1000ms ease 0s, background-color 1500ms ease 0s !important;
        }

            ul.navtop li a.link-btn:hover {
                color: #86BC25;
                transition: color 1000ms ease 0s, background-color 1500ms ease 0s;
            }

        ul.navtop li:last-child a.link-btn {
            margin-right: 0;
        }

        ul.navtop li a.link-btn > img {
            width: auto;
            height: 22px;
        }

#dvEng {
    background-color: #f3f3f3;
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
}

/*****************************
Left Panel (aside navigation)
*****************************/

aside.left-panel {
    background-color: #cbcbcb;
    width: 230px;
    position: fixed;
    padding: 15px 0px;
    box-shadow: inset -5px 0px 8px rgba(0,0,0,0.3);
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
}

    aside.left-panel.collapsed {
        /*overflow: visible !important;*/
        position: absolute;
        bottom: 0px;
    }

    /*** Aside sizes ***/
    aside.left-panel.lg {
        width: 250px;
    }

/*aside.left-panel.lg + .content {
            margin-left: 250px;
        }*/


/*****************************
	Navigation menu
*****************************/

.navigation {
    margin: 44px 0px;
}

    .navigation > ul > li {
        position: relative;
    }

        .navigation > ul > li.header-menu {
            text-transform: uppercase;
            font-weight: bold;
            color: #0576BD;
            font-size: 14px;
            padding: 5px 15px 5px;
            display: block;
            border-bottom: 1px solid #a3a3a3;
        }

        .navigation > ul > li.has-submenu:after {
            content: "\f105";
            font-family: 'FontAwesome';
            display: inline-block;
            position: absolute;
            top: 10px;
            right: 15px;
            color: #7a7e8a;
            transition: all 0.4s;
            -moz-transition: all 0.4s;
            -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
            /*visibility: hidden;*/
        }

        .navigation > ul > li.active.has-submenu:after, .navigation > ul > li.has-submenu:hover:after {
            color: #fff;
        }

        .navigation > ul > li > a {
            display: block;
            padding: 12px 15px;
            color: #7a7e8a;
            text-transform: uppercase;
            font-size: 13px;
            text-decoration: none;
            font-weight: 800;
            border-bottom: 1px solid #a3a3a3;
            transition: all 0.4s;
            -moz-transition: all 0.4s;
            -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
        }

    .navigation > ul:hover > li.active > a {
        background-color: transparent;
        box-shadow: none;
        color: #7a7e8a;
    }

    .navigation > ul > li:hover > a, .navigation > ul > li.active:hover > a, .navigation > ul > li.active > a {
        color: #fff;
        background-color: #0576bd;
        -webkit-box-shadow: inset -6px 0 8px -2px rgba(0,0,0,0.3);
        box-shadow: inset -6px 0 8px -2px rgba(0,0,0,0.3);
    }

    .navigation ul li a i {
        margin-right: 6px;
        font-size: 14px;
    }
    /*** Sub Menu ***/
    .navigation ul li ul {
        display: none;
        background-color: #a8a8b8;
        -webkit-box-shadow: inset -6px 0 8px -2px rgba(0,0,0,0.2);
        box-shadow: inset -6px 0 8px -2px rgba(0,0,0,0.2);
    }

aside:not(.collapsed) .navigation ul li.active ul {
    display: block;
}

.navigation ul li ul li a {
    padding: 8px 25px;
    color: #5e6271;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    font-size: 13px;
    border-left: 0px solid #5e6271;
    text-align: left;
    display: block;
}

    .navigation ul li ul li a:hover, .navigation ul li ul li.active a {
        border-left: 5px solid #5e6271;
        color: #5e6271;
    }

/*****************************
	right Top Header
*****************************/
.r-head {
    background-color: #582EB6;
    /*border-bottom: 2px solid #c5c5ff;*/
    padding: 0 15px;
    margin-bottom: 15px;
}

.navbar-toggle {
    padding: 6px 0;
    margin-top: 0;
    margin-right: 0 !important;
    margin-bottom: 0;
    display: block;
    max-width: 40px;
}

.navbar-toggle {
    background: transparent;
    border: none;
    color: #FFF;
}

    .navbar-toggle .fa {
        font-size: 20pt
    }

/*****************************
Content Area (right)
*****************************/

.page-header {
    border-bottom: none;
}

.content {
    margin-left: 230px;
    width: 100%;
}

    .content > .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

.main-content {
    position: relative;
    padding-bottom: 30px;
    background: rgba(255,255,255,.99);
    margin-top: 56px;
    box-shadow: 0 5px 4px -3px rgba(0,0,0,.35);
    -webkit-box-shadow: 0 5px 4px -3px rgba(0,0,0,.35);
    -moz-box-shadow: 0 5px 4px -3px rgba(0,0,0,.35);
}

    .main-content:before,
    .main-content:after {
        content: "";
        display: table
    }

    .main-content:after {
        clear: both
    }

.section-title {
    padding-bottom: 1.75rem;
    padding-top: 10px;
}

    .section-title > h3 {
        color: #000;
        text-transform: uppercase;
        font-size: 1.4rem;
        margin: 10px 0;
        font-weight: 400;
    }

        .section-title > h3 span {
            text-transform: none;
            color: #5b5b5b;
            font-size: .9rem;
            margin-top: 10px;
        }

    .section-title > .title-line-center {
        width: 160px;
        height: 4px;
        background: #000000;
        display: block;
    }

    .section-title > .title-line-center {
        margin-right: auto;
        margin-left: auto;
    }


/* General styling for all radio buttons */
input[type="radio"].styled-radio {
    position: absolute; /* Make the radio button position absolute to avoid affecting layout */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none; /* Remove default radio button appearance */
    -moz-appearance: none;
    appearance: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0;
}

    /* Create the styled appearance for radio button (using pseudo-element) */
    input[type="radio"].styled-radio::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #d3d3d3; /* Default gray color for unchecked state */
        border: 2px solid #ccc;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    /* Styling for checked radio button */
    input[type="radio"].styled-radio:checked::before {
        background-color: #e5e57d; /* Yellow for checked state */
        border-color: #b3b300; /* Darker yellow for checked border */
    }

    /* Optional: Hover effect for better interaction */
    input[type="radio"].styled-radio:hover::before {
        background-color: #cccc00; /* Light yellow when hovered */
    }

.search-container {
    position: relative;
    max-width: 300px;
    /*float: right;*/
}

    .search-container > input[type=text],
    .search-container > .form-control {
        border: none;
        outline: none !important;
        /* width: 100%;
        padding: 5px 40px 5px 15px;
        border: 1px solid rgba(0, 0, 0, 0.25) !important;*/
    }

    .search-container > button {
        background: none;
        position: absolute;
        right: 1px;
        top: 1px;

        display: inline-block;
        padding: 5px 10px;
        white-space: normal;
        text-align: center;
        border: none;
        outline: none !important;
        text-decoration: none !important;
        color: #000 !important;
        cursor: pointer;
    }

        .search-container > button:hover {
            background: transparent;
        }

.grid-welcome-bg {
    min-height: 175px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.grid {
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .grid.bg_one {
        background-color: rgba(150, 198, 28, 0.5);
    }

    .grid.bg_two {
        background-color: white;
    }

/* Table Styling */


table.table-style {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1.5rem;
}

    /**/
    table.table-style > thead > * > * {
        vertical-align: bottom;
        background: #E9E9E9;
        color: #000;
        text-align: center;
    }

    table.table-style > thead > *:last-child > * {
        border-bottom: 2px solid #86BC25 !important;
        padding: .5rem .25rem;
    }

    table.table-style > :not(caption) > * > * {
        padding: .25rem .25rem;
        vertical-align: middle;
        border: 1px solid #ddd;
    }

    table.table-style > tbody > *:nth-child(2n+1) {
        background-color: rgba(208, 236, 160, 0.99);
    }

    table.table-style > tbody > * > *:first-child {
        background: none;
        /*text-transform: uppercase;
        font-weight: 600;
        text-align: center;*/
        background: #FFF;
    }


table.survey-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table.table > thead > tr > th {
    color: #000;
    text-align: center;
    background-color: #E9E9E9;
}

table.table > thead > tr:last-child {
    border-bottom: 2px solid #88BD26 !important;
}

table.table > tbody > tr:nth-child(even) {
    background-color: rgba(134, 188, 36, 0.1);
}

.survey-table > thead > tr > th,
.survey-table > tbody > tr > td {
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.header-row th {
    background-color: #4caf50;
    color: white;
}

.rating-header th {
    background-color: #4caf50;
    color: white;
}

table.feedback_tbl {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    table.feedback_tbl > thead > * > * {
        color: #636A6F;
        font-weight: 600;
        text-align: left;

    }

    table.feedback_tbl > tbody > * > * {
        font-size: .85rem;
    }

    table.feedback_tbl > thead > * > *,
    table.feedback_tbl > tbody > * > * {
        padding: .25rem;
        line-height: 1.15;
        border: 1px solid #D6D6D4;
    }

    table.feedback_tbl > tbody > *:nth-child(2n+1) > * {
        background: #F5F5F5;
    }

.Completed {
    color: #449d44;
}

.Inprogress {
    color: #ec971f;
}

.Not-Start {
    color: #c9302c;
}

/*----------------------------------------------------------*/
/*------------      Circles with Images     ----------------*/
/*----------------------------------------------------------*/

.circle-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.circle {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

    .circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Circle heading styles */
.circle-heading {
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.heading-3 {
    background-color: #88bd26;
    color: white;
    text-align: center;
    font-size: .85rem;
    padding: 5px;
    font-weight: 600;
}

/* Name list styles */
.name-list {
    margin-top: 10px;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

    .name-list li {
        line-height: 1.5;
    }

/*----------------------------------------------------------*/
/*------------         Questions Section     ----------------*/
/*----------------------------------------------------------*/

/* Header Section */
.survey-header {
    text-align: center;
    background-color: #4caf50;
    color: white;
    padding: 20px;
}

    .survey-header h1 {
        margin: 0;
        font-size: 24px;
    }

/* Instructions Section */
.instructions {
    background-color: #e7f6e7;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
    border-left: 4px solid #4caf50;
}

    .instructions b {
        color: #4caf50;
    }

.statement-header {
    text-align: left;
}

.inspiring {
    background-color: #000000;
}

.collaborating {
    background-color: #000000;
}

/* Statement Rows */
.statement-row {
    background-color: #f2f2f2;
}

    .statement-row td {
        text-align: left;
    }

    .statement-row input {
        margin: 0 5px;
    }

/*-----------------------------------/
/---------- login Box css -----------/
/-----------------------------------*/

/*------------------ from css-------------------*/
/*[ Input ]*/
input {
    outline: none;
    border: none;
}

    input[type="number"] {
        -moz-appearance: textfield;
        -webkit-appearance: none;
    }

        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
        }

    input:focus::-webkit-input-placeholder,
    input:focus:-moz-placeholder,
    input:focus::-moz-placeholder,
    input:focus:-ms-input-placeholder {
        color: transparent;
    }

    input::-webkit-input-placeholder,
    input:-moz-placeholder,
    input::-moz-placeholder,
    input:-ms-input-placeholder {
        color: #868686;
        font-size: 15px;
    }


.loginfrm {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    max-width: 320px;
    position: relative;
    visibility: hidden;
    margin-left: auto;
}

    .loginfrm.cls-4 {
        animation: 2s ease-out 0s 1 slideInFromTop;
        visibility: visible !important;
    }

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@-webkit-keyframes slideInFromTop {
    0% {
        top: -100%;
    }

    30% {
        top: 20%;
    }

    100% {
        top: 0;
    }
}

@-moz-keyframes slideInFromTop {
    0% {
        top: -100%;
    }

    30% {
        top: 20%;
    }

    100% {
        top: 0;
    }
}

@-o-keyframes slideInFromTop {
    0% {
        top: -100%;
    }

    30% {
        top: 20%;
    }

    100% {
        top: 0;
    }
}

@keyframes slideInFromTop {
    0% {
        top: -100%;
    }

    30% {
        top: 20%;
    }

    100% {
        top: 0;
    }
}

.login-box {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding-top: 2rem;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: .3s ease;
}

/*.login-box:last-child {
        background: #e3e3e3;
        height: 14px;
        border-radius: 0 0 5px 5px;
        margin: 0 15px;
        padding: 0;
    }*/

.login-logo {
    position: relative;
    text-align: center;
    /*padding-bottom: 10px;
    box-shadow: 0 5px 5px -3px rgba(0,0,0,.55);*/
}

    .login-logo > img {
        max-width: 8em;
        height: auto;
        display: block;
        margin: 0 auto 0;
    }


.login-box-msg {
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
}

    .login-box-msg > h3.title {
        position: relative;
        z-index: 1;
        margin: 0 0 5px;
        color: #88bd26;
        font-size: 32px;
        font-weight: 600;
        text-transform: none;
        text-align: center;
    }

.login-box-body {
    padding: 1rem 2.5rem 1.5rem;
}

.frm-group-txt,
.form-control,
.form-ctrl {
    background-color: #e1eeb8 !important;
    font-size: .85rem;
    border-radius: 0 !important;
}

.frm-group {
    width: 100%;
    position: relative;
    margin-bottom: .75rem;
}

    .frm-group:last-child {
        margin-bottom: 15px !important;
    }

/* Footer */
.login-box-footer {
    margin-top: 1rem;
    padding: .75rem 0;
    text-align: center;
    background: #f8f8f8;
    border-top: 1px solid #D4DEDF;
    border-radius: 0 0 12px 12px;
    -moz-border-radius: 0 0 12px 12px;
    -webkit-border-radius: 0 0 12px 12px;
    -khtml-border-radius: 0 0 12px 12px;
}

.login-box-footer {
    color: #888;
    font-size: 12px;
}

    .login-box-footer > img {
        width: 7.5em;
    }

/* Links */
.forgot-password,
.contact-us {
    display: block;
    text-align: center;
    color: #007CB0;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: none;
}

    .forgot-password:hover,
    .contact-us:hover {
        text-decoration: underline;
    }

.login-box.alt {
    position: absolute;
    top: 30px;
    right: -40px;
    z-index: 10;
    width: 75px;
    height: 75px;
    background: none;
    border-radius: 100%;
    box-shadow: none;
    padding: 0;
    transition: .3s ease;
}

    .login-box.alt .toggle {
        position: relative;
        background: #494B4A;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        color: #ffffff;
        font-size: 35px;
        line-height: 68px;
        text-align: center;
    }

        .login-box.alt .toggle:before {
            content: "\f040"; /*"\f007";*/
            font-family: FontAwesome;
            display: inline-block;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }

.btns {
    background: transparent;
    color: transparent;
    /*font-size: 16px;*/
    border: none;
    margin-bottom: 5px;
    padding: 8px 20px;
    border-radius: 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .btns:hover {
        color: transparent;
        box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
    }

.btns.small {
    padding: 6px 12px !important;
    font-size: 0.8rem;
}
    .btns.btn-submit {
        background-color: #88bd26;
        border: 1px solid #88bd26;
        color: #fff;
        /*margin-top: 10px;*/
    }

        .btns.btn-submit:hover {
            background-color: #26890d;
        }

    .btns.btn-cancel {
        border: 1px solid #B2B2B2;
        background: transparent;
        color: #B2B2B2;
    }

        .btns.btn-cancel:hover {
            border: 1px solid #B2B2B2;
            background: #B2B2B2;
            color: #FFF;
        }

    .btns.btn-previous {
        background-color: #6c757d;
        color: white;
    }

        .btns.btn-previous:hover {
            background-color: #5a6268;
        }

    .btns.btn-next {
        background-color: #88bd26 !important;
        color: white;
    }

        .btns.btn-next:hover {
            background-color: #5e6271 !important;
            color: white;
        }

    .btns.btn-danger {
        background-color: #DC3545 !important;
        color: #fff;
    }

        .btns.btn-danger:hover {
            background-color: #BB2D3B;
            border-color: #B02A37;
        }

    .btns.btn-dark {
        background-color: #212529 !important;
        color: #fff;
    }

        .btns.btn-dark:hover {
            /*background-color: black !important;*/
            background-color: #424649;
            border-color: #373B3E;
        }

.btn-one {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    padding: .5rem;
    color: #fff;
    background-color: #88bd26;
    border: 1px solid #88bd26;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all .2s ease-in-out;
    -webkit-transform: rotateX(20deg);
}

    .btn-one:hover {
        text-decoration: none;
        color: #fff;
        background-color: #26890d;
        box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
    }

    .btn-one:active {
        box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
        transform: translate(0, 4px);
    }

    .btn-one.fit {
        height: 100px;
        width: 100%;
        text-align: center;
        line-height: 100px;
    }


/* Button Group */
.button-group {
    text-align: center;
    margin-top: 20px;
}

.save-continue {
    background-color: #4caf50;
    color: white;
}

.previous {
    background-color: #ffa726;
    color: white;
}

.submit {
    background-color: #388e3c;
    color: white;
}

.exit {
    background-color: #e53935;
    color: white;
}



/* Text Center Alignment */
.text-center {
    text-align: center;
    margin-top: 10px;
}

/* Error Message */
.text-danger {
    color: #d9534f;
    font-size: .75rem;
    margin-top: 10px;
    display: block;
    margin: 0 -1.5rem;
}

.footer {
    width: 100%;
    text-align: center;
    font-size: 0.563rem;
    color: grey;
    line-height: 1.5;
    margin-top: auto;
    padding: 0px 15px;
    background: none;
    position: absolute;
    bottom: 0;
    max-width: unset;
}

.footer-text {
    margin: 5px 0;
}


/****************************************
=========================================
Responsive Stying
=========================================
*****************************************/

/*** Aside Collapsed ***/
@media (min-width: 768px) {
    aside.left-panel.collapsed {
        width: 75px;
        text-align: center;
    }

        aside.left-panel.collapsed + .content {
            margin-left: 75px;
        }

        aside.left-panel.collapsed .user .user-login, aside.left-panel.collapsed span.nav-label {
            display: none;
        }
        /*aside.left-panel.collapsed .navigation > ul > li > a{
	    padding:20px;}*/
        aside.left-panel.collapsed i.fa {
            font-size: 22px;
        }

        aside.left-panel.collapsed .navigation > ul > li.has-submenu:after {
            display: none;
        }
}

/*** Aside Collapsed Sub Menu ***/
@media (min-width: 768px) {
    aside.left-panel.collapsed .navigation ul li ul {
        position: absolute;
        z-index: 3;
        left: 100%;
        top: 0px;
        background-color: #F2F2F4;
        box-shadow: none;
        padding: 10px 0px;
        min-width: 200px;
        border: 1px solid #dddddd;
    }

        aside.left-panel.collapsed .navigation ul li ul:before {
            display: block;
            content: "";
            height: 20px;
            width: 20px;
            border-color: transparent #F2F2F4 transparent transparent;
            border-width: 10px;
            border-style: solid;
            position: absolute;
            cursor: pointer;
            right: 100%;
            top: 22px;
        }

    aside.left-panel.collapsed .navigation > ul > li:hover > ul {
        display: block !important;
    }

    aside.left-panel.collapsed .navigation ul li ul li a {
        border: 0px;
        color: #8f8f9f;
        border-bottom: 1px dashed #ECECEE;
    }
}

@media (max-width: 768px) {
    aside.left-panel.collapsed {
        width: 250px;
        left: 0px;
        overflow: hidden !important;
    }

        aside.left-panel.collapsed + .content {
            margin-left: 0px;
            transform: translate3d(250px, 0px, 0px);
            -ms-transform: translate3d(250px, 0px, 0px);
            -webkit-transform: translate3d(250px, 0px, 0px);
            -moz-transition: translate3d(250px, 0px, 0px);
            -o-transition: translate3d(250px, 0px, 0px)
        }

    aside.left-panel {
        left: 100%;
    }

    .content {
        margin-left: 0px !important;
    }

        .content > .container-fluid {
            padding-left: 15px;
            padding-right: 15px;
        }

    .ques-header-left {
        border-bottom: 2px solid #808080;
    }

    .login-box.alt {
        right: 10px;
    }

    .wm-50 {
        width: 100%;
    }
    .Questable {
        font-size: 0.563rem;
    }
}
