﻿@-ms-viewport {
    width: device-width;
}

*,
: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;
}

img {
    width: 100%;
}

.outer {
    display: table;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.middle {
    display: table-cell;
    vertical-align: middle;
    padding: 0 1.5rem;
}

.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;
    text-align: center;
}

.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 #3498db;
    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 {
    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;
    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);*/
    }

.border-right {
    border-right: 1px solid #c1c1c1 !important;
}

/*-----------------------------------/
/---------- 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;
}

    .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 {
    display: block;
    margin: 1.5rem auto 1rem;
    max-width: 186px;
}

    .login-logo > img {
        width: auto;
        height: auto;
        display: block;
    }*/

.login-logo {
    background: linear-gradient(125deg, rgba(255, 255, 255, 1) 50%, rgba(136, 190, 38, .5) 50%);
    position: relative;
    text-align: center;
    padding: 1.25rem .5rem;
    border-radius: 5px 5px 0 0;
    /*border-bottom: 1px solid #86743E;
     box-shadow: 0 5px 5px -3px rgba(0,0,0,.55);
    -webkit-box-shadow: 0 5px 5px -3px rgba(0,0,0,.55);
    -moz-box-shadow: 0 5px 5px -3px rgba(0,0,0,.55);*/
}

    .login-logo > img {
        max-width: 8.15rem;
        height: auto;
        margin: 0 .5rem;
    }

        .login-logo > img:last-child {
            margin-left: .75rem;
        }


.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;
    }

label.lvl {
    display: inline-block;
    margin-bottom: 0 !important;
}

/*.radio-group input[type="radio"]:focus,
.radio-group input[type="radio"]:active {
    box-shadow: 0 1px 1px rgba(125, 0, 0, 0.2) inset, 0 0 8px rgba(126, 239, 104, 0.6);
    outline: 0 none;
    border-color: #c7254e;
    box-shadow: 0 0 8px rgba(199,38,78,.6);
}

.radio-group, .checkbox-group {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}*/

/* 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;
        }

/* 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: #28a745;
        color: white;
    }

        .btns.btn-next:hover {
            background-color: #218838;
        }

    .btns.btn-danger {
        background-color: #dc3545;
        color: white;
    }

        .btns.btn-danger:hover {
            background-color: #c82333;
        }

/* Button Group */
.button-group {
    text-align: center;
    margin-top: 20px;
}

.previous {
    background-color: #ffa726;
    color: white;
}

.save-continue {
    background-color: #4caf50;
    color: white;
}

.submit {
    background-color: #388e3c;
    color: white;
}

.exit {
    background-color: #e53935;
    color: white;
}

/* Link Styling */
a.forgot-password,
a.contact-us {
    display: block;
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
    color: #007bff;
    font-size: .85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

    a.forgot-password:hover,
    a.contact-us:hover {
        text-decoration: underline;
    }

/*----------------------------------/
/---------- All Page CSS -----------/
/----------------------------------*/


/*-------------- wrapper Section ---------------*/
.wrapper {
    min-height: 100%;
    position: static;
    overflow: hidden
}

    .wrapper:after,
    .wrapper:before,
    .main-box:before,
    .main-box:after {
        content: "";
        display: table
    }

    .wrapper:after,
    .main-box:after {
        clear: both
    }

/*-------------- 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;
    height: 3.5rem;
    /*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: 18px 5px;
            /*margin-top: 6px;*/
        }

        .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: 94px;
        height: 56px;
        padding: 5px;
    }

/*--------------- top header icon ----------------*/
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;
        }

.timer-panel,
.tr-btn-section {
    display: inline-block;
    text-align: right;
}

time, .time {
    color: #d9534f;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    padding: 2px 10px 0;
    /*margin-top: 15px;*/
}

.contact-side {
    margin-bottom: 10px;
}

.inner-contact {
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #003EA4;
}

    .inner-contact h3 {
        font-size: .85rem;
        font-weight: 600;
        text-transform: uppercase;
    }

/*.contact-info {
    padding-left: 0;
}*/

.single-contact {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

    .single-contact > span {
        position: absolute;
        left: 0;
        color: rgba(255, 255, 255, 0.85);
        top: 0;
    }

    .single-contact > span {
        color: #3764eb;
    }

    .single-contact .info-cont p {
        margin-bottom: 4px;
        position: relative;
    }

.info-cont p span {
    font-weight: 600;
    width: 75px;
    display: inline-block;
}

.main-box {
    /*padding-top: 10px;*/
    padding-bottom: 10px;
    position: relative;
    background: #FFF;
    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);
}

.footer {
    width: 100%;
    padding: 0px 10px;
    background: none;
    position: fixed;
    bottom: 0;
    left: 0;
}

.footer-text {
    text-align: justify;
    font-size: 0.56rem;
    color: #959595;
    line-height: 1.5;
    margin-bottom: 5px;
}

/*---------- exercise_box css -----------*/

.exercise-box {
    /*background: #fff;*/
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(to right,#720d4733,#28007133);
    border-radius: 13px;
}

    .exercise-box:before,
    .exercise-box:after,
    .exercise-box.done::before,
    .exercise-box.done::after {
        content: "";
        position: absolute;
        width: 25px;
        height: 25px;
    }

    .exercise-box:before {
        top: 0;
        right: 15px;
        border-top: 8px solid #000;
        border-right: 8px solid #000;
    }

    .exercise-box:after {
        left: 15px;
        bottom: 10px;
        border-left: 8px solid #000;
        border-bottom: 8px solid #000;
    }

.exercise-box_title {
    background-color: transparent;
    padding: 2px 15px;
    min-height: 50px;
    max-height: 250px;
    position: relative;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

    .exercise-box_title > .box_title-img {
        display: inline-block;
        margin-right: 10px;
        height: 40px;
        width: 40px;
        float: left;
    }

        .exercise-box_title > .box_title-img > img {
            border-radius: 4px;
            height: auto;
            width: 100%;
            padding: 4px;
            /*border: 1px solid #626262;
            background: #FFF;*/
        }

    .exercise-box_title > h4 {
        font-size: .85rem;
        font-weight: bold;
        text-transform: uppercase;
        margin: 0;
    }

        .exercise-box_title > h4 > small {
            font-size: 80%;
            font-weight: 400;
        }

    .exercise-box_title > .status_icon {
        font-size: 16px;
        line-height: 30px;
        text-align: center;
        color: #FFF;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 10px;
        bottom: -15px;
        z-index: 9;
        background-color: #024073;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

.exercise-box_content {
    background-color: transparent;
    padding: 0 15px 20px;
    position: relative;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    /* -webkit-box-shadow: 0px 10px 20px 0px rgba(42, 45, 59, 0.2);
    box-shadow: 0px 10px 20px 0px rgba(42, 45, 59, 0.2);*/
}

    .exercise-box_content > .btn,
    .btn-one {
        border: 1px solid #88BD26;
        background: #F8F8F8;
        color: #88BD26;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        margin-right: 5px;
        padding: 10px 20px;
        border-radius: 26px;
        -moz-border-radius: 26px;
        -webkit-border-radius: 26px;
        outline: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: color 1000ms ease 0s, background-color 1500ms ease 0s !important;
    }

        .exercise-box_content > .btn:hover,
        .btn-one:hover,
        .exercise-box_content > .btn:active,
        .btn-one:active, .btn-one.active {
            border: 1px solid #88BD26;
            background: #88BD26;
            color: #FFF;
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
            transition: color 1000ms ease 0s, background-color 1500ms ease 0s;
        }

/*-------------- panel-box-success ------------*/

.exercise-box.done {
    border-top-color: #398439;
    position: relative;
}

    .exercise-box.done::before {
        top: -5px;
        right: 0;
        border-top: 8px solid #88bd26;
        border-right: 8px solid #88bd26;
    }

    .exercise-box.done::after {
        left: 0;
        bottom: 0;
        border-left: 8px solid #88bd26;
        border-bottom: 8px solid #88bd26;
    }

    .exercise-box.done > .exercise-box_title > .status_icon {
        background-color: #398439;
    }

    .exercise-box.done > .exercise-box_content > .btn {
        cursor: not-allowed;
        border-color: #88bd26 !important;
        background-color: #88bd26;
        color: #fff;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        -webkit-transform: translate(0, 4px) rotateX(20deg);
        -moz-transform: translate(0, 4px);
        transform: translate(0, 4px);
    }

        .exercise-box.done > .exercise-box_content > .btn:hover {
            background-color: #26890d;
        }

.exercise-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: left;
    font-size: 0.78rem;
}

.alert-info {
    color: #000 !important;
    background-color: #c4e783 !important;
    border-color: #c4e783 !important;
}

.exercise-table > tbody > tr > td,
.exercise-table > tfoot > tr > td,
.exercise-table > thead > tr > td {
    padding: 5px;
    line-height: 1.42857143;
    vertical-align: top;
    /*border-top: 2px solid #ddd;*/
}

.exercise-table tr td:first-child {
    font-weight: 700;
}

/*------------ 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;
}

/* 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;
    }

/*-------------- question section 1 ------------*/
.section-qus {
    background: #FFF;
    font-size: .90rem;
}

.Qst_Header {
    background-color: #88bd26;
    color: #FFFFFF;
    padding: 10px 2px;
    font-weight: 500;
}

    .Qst_Header > div:first-child {
        text-align: center;
        padding: 0 !important;
    }

    .Qst_Header > div > span.Qst-no {
        width: 28px;
        height: 28px;
        line-height: 26px;
        display: inline-block;
        background: #fff;
        border-radius: 50%;
        text-align: center;
        border: 1px solid #195cac;
        font-weight: 600;
        color: #000000;
    }

    .Qst_Header > div > p {
        margin-bottom: 10px;
        line-height: 22px;
    }

/*-------------- question section 2 ------------*/
.qusgroup_option {
    padding: 5pt 10pt;
    background: #fff;
    margin-bottom: 10px;
}

.ques-header {
    background: #E9E9E9;
    border-bottom: 2px solid #0896D8;
    justify-content: center;
    align-items: center;
    font-size: .85rem;
}

.ques-row {
    width: 100%;
    border-bottom: 1px solid #DADADA;
}

.align-bottom {
    display: flex;
    align-items: end;
}

table.Questable {
    background-color: transparent;
    margin-bottom: 0;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

    table.Questable > thead > tr > th,
    table.Questable > tbody > tr > td {
        padding: .25rem .25rem;
        vertical-align: top;
    }
/*table.Questable > thead > tr:first-child > th {
        text-align: center;
        text-transform: uppercase;
        border-bottom: 2px solid #582eb6;
    }*/

.wm-50 {
    width: 50%;
    margin: 0 auto;
}

/*------------- Scroll Top-Bottom -----------------*/
.scroll-up,
.scroll-dwn {
    position: fixed;
    bottom: 75px;
    background: #044D91;
    color: #FFF;
    width: 40px;
    height: 40px;
    line-height: 35px;
    font-size: 24px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    z-index: 555;
    display: none;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
    -o-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
    transition: all 0.4s;
}

.scroll-up {
    right: 10px;
}

.scroll-dwn {
    right: 51px;
}

    .scroll-up:hover,
    .scroll-dwn:hover {
        background: #323232;
    }


/*----------------- section page title -----------------*/

.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;
    }

.section-content {
    padding-left: 15px;
    padding-right: 15px;
}

    .section-content h4.middle-title,
    h4.middle-title {
        color: #0076A8;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 1.25rem;
    }

p {
    text-align: justify;
}

.about-img-one,
.info-about {
    position: relative !important;
    min-height: 318px;
}

    .about-img-one > img {
        width: 100%;
        height: 100%;
        position: absolute;
        border: 1px solid #ddd;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        box-shadow: 0px 2px 15px 0px rgba(0,0,0,.25);
        -webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,.25);
        -moz-box-shadow: 0px 2px 15px 0px rgba(0,0,0,.25);
    }

.overlay-about {
    padding: 12px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.text-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: rgba(0, 0, 0, 0.25);*/
    border: 2px solid rgba(255, 255, 255, .85);
    background: -moz-linear-gradient(90deg, rgba(171, 58, 90, .75) 0%, rgba(42, 32, 118, .75) 100%);
    background: -webkit-linear-gradient(90deg, rgba(171, 58, 90, .75) 0%, rgba(42, 32, 118, .75) 100%);
    background: linear-gradient(90deg, rgba(171, 58, 90, .75) 0%, rgba(42, 32, 118, .75) 100%);
    position: relative;
}

.info-about > h5 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 35px;
    margin-top: 25px;
    color: #454545;
}

.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.35);
    }

    .grid.bg_two {
        background-color: #d0edff;
    }

.bottom-btn {
    position: absolute;
    bottom: 10px;
    width: 100%;
}

/*.table thead tr th {
    vertical-align: bottom;
    background: #cfcfcf;
    color: #0371c0;
    text-align: center;
    font-size: 9.5pt;
}

.table thead tr:last-child th {
    border-bottom: 2px solid #044d91 !important;
}
*/

/*---------------- Table Styling ----------------*/
table.faqs-tbl {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1.5rem;
    color: #212529;
    border-bottom: 2px solid #9a9a9a !important;
}

    table.faqs-tbl > thead > tr > th {
        vertical-align: bottom;
        background: #004074;
        color: #FFF;
        text-align: center;
        font-size: 9.5pt;
    }

    table.faqs-tbl > thead > tr > th,
    table.faqs-tbl > tbody > tr > td {
        padding: .75rem;
        vertical-align: middle;
        border: 1px solid #ddd;
    }

        table.faqs-tbl > thead > tr > th:first-child {
            width: 6%;
        }

    table.faqs-tbl > tbody > tr:nth-child(even) {
        background: #FFF;
    }

    table.faqs-tbl > tbody > tr:nth-child(odd) {
        background: #F2F2F2;
    }

.faqs-tr-btn {
    position: absolute;
    top: 0;
    right: 0
}

table.exer-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 15px;
}

    table.exer-table > tbody > tr > td {
        font-size: 13px;
        padding: 8px;
        border-top: 1px solid #dee2e6;
    }

    table.exer-table > tbody > tr:first-child > td {
        border-top: none;
    }

    table.exer-table > thead {
        background: #e1e1e1;
    }


table.table-style {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: .8rem;
}

    table.table-style > thead > tr > th {
        vertical-align: bottom;
        font-weight: bold;
        background: #8CC63F;
        color: #FFF;
        border-bottom: 2px solid #2a2076 !important;
    }

    table.table-style > thead > tr > th,
    table.table-style > tbody > tr > td {
        padding: .5rem;
        vertical-align: middle;
        border: 1px solid #ddd;
    }

table.table-style-2 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 1.5rem;
}

    table.table-style-2 > thead > * > * {
        vertical-align: bottom;
        background: #E9E9E9;
        color: #000;
        text-align: center;
    }

    table.table-style-2 > thead > *:last-child > * {
        border-bottom: 2px solid #86BC25 !important;
        padding: .5rem .25rem;
    }

    table.table-style-2 > :not(caption) > * > * {
        padding: .25rem .25rem;
        vertical-align: middle;
        border: 1px solid #ddd;
    }

    table.table-style-2 > tbody > *:nth-child(2n+1) {
        background-color: rgba(208, 236, 160, 0.99);
    }

    table.table-style-2 > 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: normal;
        text-align: left;
    }

    table.feedback_tbl > tbody > * > * {
        font-size: .85rem;
    }

    table.feedback_tbl > thead > * > *,
    table.feedback_tbl > tbody > * > * {
        padding: .5rem .25rem;
        line-height: 1.15;
        border-bottom: 1px solid #D6D6D4;
    }

    table.feedback_tbl > tbody > *:nth-child(2n+1) > * {
        background: #F5F5F5;
    }

/*.Completed {
    color: #449d44;
}

.Inprogress {
    color: #ec971f;
}

.Not-Start {
    color: #c9302c;
}*/

.Completed,
.Inprogress,
.Not-Start {
    padding: .25rem .5rem;
    border-radius: .25rem;
    font-size: .8rem;
}

.Completed {
    color: #449d44;
    /*color: #0f5132;*/
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.Inprogress {
    color: #ec971f;
    /*color: #664d03;*/
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.Not-Start {
    color: #c9302c;
    /*color: #842029;*/
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/*----------- tab section css start here -----------*/
.fixed .asidebar {
    position: fixed;
    top: 59px;
    padding-top: 10px;
}

.asidebar {
    background: #88bd26;
    left: 0;
    top: 0;
    position: absolute;
    width: 306px;
    z-index: 99;
}

.asidebar,
.my-account {
    min-height: 100%;
    -webkit-transition: -webkit-transform .3s ease-in-out,width .3s ease-in-out;
    -moz-transition: -moz-transform .3s ease-in-out,width .3s ease-in-out;
    -o-transition: -o-transform .3s ease-in-out,width .3s ease-in-out;
    transition: transform .3s ease-in-out,width .3s ease-in-out;
}

    .asidebar ul > li > a {
        display: block;
        text-decoration: none;
        color: #000;
        padding: 8px 25px 8px 16px;
    }

/*-------------- side navigation --------------*/

ul.sidebar-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    ul.sidebar-menu > li {
        position: relative;
    }

        ul.sidebar-menu > li.header-menu {
            font-weight: bold;
            font-size: 14px;
            padding: 15px 15px 5px;
            display: block;
        }


        ul.sidebar-menu > li > a:hover {
            background: #00589F;
            color: #BCC1CD;
            font-weight: bold;
        }

        ul.sidebar-menu > li.has-submenu > a:after {
            font-family: 'FontAwesome';
            font-weight: bold;
            font-size: 1.1rem;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            content: "\f105";
            display: inline-block;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-align: center;
            background: 0 0;
            position: absolute;
            right: 15px;
            top: 6px;
        }

        ul.sidebar-menu > li.active > a {
            border-left: 4px solid #E42313;
            padding-left: 12px;
            color: #FFF;
            font-weight: bold;
            Background: #0076A8;
            outline: none;
        }

            ul.sidebar-menu > li.active > a:after {
                transform: rotate(90deg);
                right: 15px;
            }

        ul.sidebar-menu > li.has-submenu > ul.lvl-sec {
            padding: 0;
            display: none;
            list-style-type: none;
        }

            ul.sidebar-menu > li.has-submenu > ul.lvl-sec > li {
                padding-left: 12px;
                font-size: .85rem;
                background: #EDF3F8;
            }

                ul.sidebar-menu > li.has-submenu > ul.lvl-sec > li:hover,
                ul.sidebar-menu > li.has-submenu > ul.lvl-sec > li > a:hover {
                    color: #194597 !important;
                    background: #F4F5F9;
                    font-weight: bold;
                }

ul.lvl-sec > li > a {
    color: #464646 !important;
}

    ul.lvl-sec > li > a.active {
        color: #194597 !important;
        font-weight: bold;
    }

.my-account {
    margin-left: 306px;
    z-index: 899;
}

    .my-account > .tab-pane {
        padding: 5px 0;
        width: 100%;
        display: none;
    }

/*-------------- nav-tabs ------------*/
.nav-tabs {
    border-bottom: 2px solid #044d91;
}

    .nav-tabs > li {
        margin-bottom: -2px;
    }

        .nav-tabs > li > a.nav-link {
            background: #d9edf7;
            color: #31708f;
            margin-right: 5px;
            border: 1px solid #044d91;
            position: relative;
        }

            .nav-tabs > li > a.nav-link::after {
                content: "";
                background: #194597;
                height: 3px;
                position: absolute;
                width: 100%;
                left: 0px;
                top: -1px;
                transition: all 250ms ease 0s;
                transform: scale(0);
            }

            .nav-tabs > li > a.nav-link.active {
                color: #044d91;
                border: 1px solid #044d91;
                border-bottom: 1px solid #fff;
            }

                .nav-tabs > li > a.nav-link.active::after,
                .nav-tabs > li > a.nav-link:hover::after {
                    transform: scale(1);
                }

.tab-nav > li > a.nav-link::after {
    background: #21527d none repeat scroll 0% 0%;
    color: #fff;
}

.tab-contant-ex {
    padding: 0 15px 0;
}

/*---------------------------------/
/------- Media queries css --------/
/---------------------------------*/

@media screen and (max-width: 768px) {
    .full-background img {
        top: 0 !important;
        height: 100% !important;
    }
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}
