﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap'); /*  font-family: 'Open Sans', sans-serif;   */
@import url('https://fonts.googleapis.com/css?family=Concert+One&display=swap'); /* font-family: 'Concert One', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&display=swap'); /*font-family: 'Work Sans', sans-serif;*/

:root {
    --primary-color: #f1ce00;
    --secondary-color: #da2128;
    --lite-color: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #666;
    background-image: url(../Images/BG-Image.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.default-color {
    color: #666 !important;
}

a {
    color: var(--secondary-color);
}

    a:hover,
    a::selection,
    a:focus,
    a:active {
        color: var(--secondary-color);
    }

header {
    position: fixed;
    width: calc(100vw - 345px);
    /*border-radius: 16px;*/
    right: 20px;
    /*top: 30px;*/
    top: 10px;
    /*z-index:25;*/
    z-index: 22;
}

.header-logo {
    display: none;
}

.nav-bar {
    float: left;
    position: relative;
}

    .nav-bar ul {
        margin: 0;
        padding: 0;
        margin-left: 5px;
        list-style: none;
    }

        .nav-bar ul li {
            display: inline-block;
            margin: 0;
            padding: 0 5px;
            position: relative;
        }

            .nav-bar ul li.more {
                position: relative;
            }

                .nav-bar ul li.more:after {
                    content: "\f0d7";
                    position: absolute;
                    right: 0;
                    top: 10px;
                    color: #fff;
                    font-size: 14px;
                    font-weight: 600;
                    font-family: 'Font Awesome 5 Free';
                }

    .nav-bar > ul > li > a {
        /*background: #daa0ab;*/
        /*padding: 8px 15px;*/
        margin: 8px 10px;
        border-radius: 6px;
        text-decoration: none;
        color: #FFF;
        font-size: 16px;
        font-weight: 600;
        display: block;
        position: relative;
    }

        .nav-bar > ul > li > a.active::after {
            content: "";
            position: absolute;
            background: #ffa500;
            height: 3px;
            width: 45%;
            left: 0;
            bottom: -10px;
        }

    .nav-bar ul li a.active, .nav-bar ul li a:hover {
    }

    .nav-bar ul li ul {
        width: 250px;
        display: none;
        position: absolute;
        top: 40px;
        right: 0px;
        padding: 0px 0;
        background: var(--secondary-color);
        border-radius: 4px;
        overflow-y: auto;
        max-height: calc(100vh - 100px);
        box-shadow: 0 0 4px #aaa;
    }

    .nav-bar ul li:hover ul {
        display: block;
    }

    .nav-bar ul ul li {
        display: block;
        margin: 0;
        padding: 0;
        position: relative;
    }

        .nav-bar ul ul li.active {
            background: #FFF;
            color: var(--secondary-color);
        }

            .nav-bar ul ul li.active a {
                color: var(--secondary-color);
            }

        .nav-bar ul ul li a {
            padding: 8px 10px;
            border-radius: 0px;
            text-decoration: none;
            font-size: 14px;
            line-height: 16px;
            font-weight: 400;
            transition: all 0.3s ease;
            display: block;
            /*white-space: nowrap;*/
            /*color: var(--primary-color);*/
            color: #FFFFFF;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.6s ease;
        }

            .nav-bar ul ul li a:hover {
                background: #f1f1f1;
                color: #116644;
            }



.input-valid {
    border-color: #FF0000 !important;
}



.nav-bar-icons {
    float: right;
}

    .nav-bar-icons ul {
        margin: 0;
        padding: 7px 15px 0px 5px;
        display: flex;
        align-items: center;
    }

        .nav-bar-icons ul li {
            display: inline-block;
            list-style-type: none;
            padding: 0 0 0 4px;
        }

            .nav-bar-icons ul li a {
                padding: 5px;
                font-size: 20px;
                color: #fff;
            }

.noti-count-alert {
    position: absolute;
    top: -10px;
    font-size: 10px;
    background: orange;
    padding: 3px 0px;
    border-radius: 50%;
    right: -4px;
    width: 20px;
    height: 20px;
    text-align: center;
    box-shadow: 0 0 2px #aaa;
    -webkit-animation: 1s ease 0s normal none infinite running wobble;
    -ms-animation: 1s ease 0s normal none infinite running wobble;
    -o-animation: 1s ease 0s normal none infinite running wobble;
    animation: 1s ease 0s normal none infinite running wobble;
}


.logout a {
    float: right;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 31px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #357de2, #2abee1);
    color: #FFF !important;
    font-size: 20px;
    box-shadow: 0 0 3px #666;
    margin-top: 6px;
    cursor: pointer;
}

.cancel-link {
    background: #FFF;
    padding: 5px 15px;
    float: right;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

    .cancel-link a {
        text-decoration: none;
    }

.bg-layer-color {
    position: fixed;
    width: 100%;
    background: url(../Images/CurvedBG.png);
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    background-position-y: 120px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.mian-search.form-search {
    margin: 0px 15px 0 10px;
}

    .mian-search.form-search input {
        background: rgba(49, 52, 73, 0.2);
        border: 1px solid #727aad;
        color: #fff;
    }

    .mian-search.form-search button {
        border-left: 1px solid #727aad;
        background: rgba(49, 52, 73, 0.2);
        color: #fff;
    }

    .mian-search.form-search input::placeholder {
        color: #fff;
    }


.right-menu-trigger {
    width: 30px;
    height: 30px;
    border-radius: 4px 0 0 4px;
    text-align: center;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: none;
    transition: all 0.6s ease;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}








/* side-wedget  */
.side-wedget {
    position: fixed;
    /*width: 300px;*/
    width: 280px;
    background: #FFF;
    /*border-radius: 40px;*/
    border-radius: 0 20px 0px 0;
    box-shadow: 0 0 15px #AAA;
    /*padding: 30px;*/
    height: calc(100vh - 0px);
    left: -325px;
    top: 0px;
    z-index: 111;
    transition: all 0.6s ease;
}

    .side-wedget.active {
        left: 0px;
    }

.side-wedget-top {
    float: left;
    width: 100%;
    padding: 15px 15px 0 15px;
    padding-top: 5px;
}

.side-wedget-logo {
    float: left;
    width: 100%;
    /*width: calc(100% - 95px);*/
    margin-bottom: 10px;
    overflow: hidden;
    /*padding: 15px 30px 13px 30px;*/
}

    .side-wedget-logo img {
        width: auto;
        max-width: 100%;
        height: 85px;
        cursor: pointer;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

.sidebar-trigger {
    position: absolute;
    /*width: 50px;
    height: 50px;*/
    overflow: hidden;
    border-radius: 4px;
    right: -95px;
    top: 0px;
    padding: 5px;
    text-align: center;
    font-size: 36px;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.6s ease;
    width: 45px;
    height: 50px;
}

/*.side-wedget .sidebar-trigger::after {
    content: "\f152";
    position: absolute;
    right: 7px;
    top: 5px;
    font-family: 'Font Awesome 5 Free';
    color: #ccc;
}

.side-wedget.active .sidebar-trigger::after {
    display: none;
}*/
.side-wedget .sidebar-trigger::before {
    content: "\f191";
    position: absolute;
    right: 7px;
    top: 5px;
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-weight: 900;
}

.side-wedget.active .sidebar-trigger::before {
    content: "\f191";
    position: absolute;
    right: 7px;
    top: 5px;
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-weight: 900;
}

.side-wedget.active .sidebar-trigger {
    right: 10px;
    top: 4px;
}

.side-content {
    float: left;
    width: 100%;
    padding: 8px 0px 5px 0px;
    position: relative;
}

.side-wedget-header {
    /*display: flex;*/
}

.side-wedget-profile-pic {
    float: left;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    padding: 5px;
    background-image: url(../Images/bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}

    .side-wedget-profile-pic img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 4px solid #8b9aa4;
    }

.side-head-info {
    float: right;
    cursor: default;
    padding: 5px 0 5px 10px;
    width: calc(100% - 60px);
}

.wedget-info {
    float: left;
    width: 100%;
    padding: 18px 0 0 0;
}

.wedget-info-group {
    float: left;
    width: 100%;
    margin-bottom: 8px;
}

.wedget-info-label {
    float: left;
    width: 100%;
    font-size: 14px;
    color: #AAA;
    font-family: 'Concert One', cursive;
    margin-bottom: 3px;
}

.wedget-info-text {
    float: left;
    width: 100%;
    font-size: 16px;
}

.side-quick-nav {
    float: left;
    width: 100%;
}

.icon-links {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

    .icon-links .side-quick-nav-item {
        flex-grow: 1;
        float: left;
        width: 33.3334%;
        padding: 7px 17px;
    }

        .icon-links .side-quick-nav-item a {
            width: 100%;
            line-height: 48px;
            text-align: center;
            font-size: 22px;
            border-radius: 10px;
            background: linear-gradient(to bottom right, #ecf0f6, #d4dfed);
            display: block;
        }

            .icon-links .side-quick-nav-item a span i {
                background: linear-gradient(to bottom, #F15C5E, #A185BF);
                background-clip: text;
                -webkit-background-clip: text;
                color: rgba(0, 0, 0, 0.2);
            }



.side-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    text-align: center;
    color: #1c4a99;
    font-weight: 600;
}

    .side-footer a {
        color: #1c4a99;
    }

.side-wedge-name {
    cursor: default;
    padding: 5px 0 5px 0px;
}

    .side-wedge-name span {
        display: block;
    }

    .side-wedge-name select {
        width: 100%;
        border-radius: 15px;
        padding: 3px;
        border: 2px solid #333;
    }

        .side-wedge-name select:focus {
            outline: none !important;
        }

    .side-wedge-name h4 {
        margin: 0;
        /*letter-spacing: 1px;*/
    }

    .side-wedge-name h5 {
        margin-bottom: 7px;
    }

    .side-wedge-name h3 {
        color: #000;
        font-weight: 600;
    }

    .side-wedge-name span {
        font-size: 16px;
        color: #333;
    }

.side-wedge-sub-title {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 19px;
    color: #6a6a6a;
    margin-bottom: 4px;
}

    .side-wedge-sub-title h6 {
        font-weight: 500;
        font-size: 15px;
    }

    .side-wedge-sub-title h4 {
        font-weight: normal;
        font-size: 20px;
    }

.side-wedge-label {
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.registration-details {
    padding: 0 15px 5px 15px;
    overflow: hidden;
    overflow-y: auto;
    height: calc(100vh - 245px);
    /*padding-bottom: 50px;*/
}

    .registration-details h5.title {
        color: #FFF;
        font-weight: 600;
        font-size: 16px;
        cursor: default;
        background: #000;
        text-align: center;
        border-radius: 6px;
        padding: 7px;
    }


/*.registration-details .qr-code-scan > div {
        margin-left: -15px;
    }*/

.qr-code-scan p {
    font-size: 13px;
    font-weight: 600;
}

    .qr-code-scan p span.download {
        font-size: 15px;
        font-weight: 600;
        color: #32bd00 !important;
    }

        .qr-code-scan p span.download a {
            color: #32bd00;
            font-size: 13px;
        }

    .qr-code-scan p span.or {
        display: block;
        padding: 4px 0;
    }

.side-wedge-name.bar-code {
    /*margin-left: -7px;*/
    /*margin-bottom: 30px;*/
}

    .side-wedge-name.bar-code .bar-code-text {
        /*padding-top: 20px;*/
    }

.side-wedge-name.product {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 5px;
    margin: 0;
    border-top: 1px solid #ccc;
}

.side-wedget.supervisor-user .side-wedget-top {
    height: auto;
    min-height: 240px;
}

.side-wedget.supervisor-user .registration-details {
    height: calc(100vh - 272px);
}

/*  form section  */
.form-section {
    float: right;
    width: calc(100% - 320px);
    height: calc(100vh - 65px);
    margin-left: 340px;
    margin-top: 65px;
    z-index: 5;
    transition: all 0.6s ease;
}

    .form-section.wedget-active {
        width: calc(100% - 20px);
        margin-left: 20px;
    }

/* Dashboard  */
.dashboard-wrapper {
    float: left;
    width: 100%;
    overflow-y: auto;
    padding-right: 15px;
}

.dashboard-top-section {
    float: left;
    width: 100%;
    padding-right: 5px;
    margin-top: 20px;
}


.dashboard-top-box-group {
    float: left;
    width: inherit;
}



.dashboard-top-box {
    float: left;
    width: 25%;
    padding: 0 10px;
    position: relative;
}

    .dashboard-top-box a {
        text-decoration: none;
    }

.dashboard-top-box-group .dashboard-top-box:first-child {
    padding-left: 0;
}

.dashboard-top-box-group .dashboard-top-box:last-child {
    padding-right: 0;
}

.fade-red {
    background: var(--secondary-color) !important;
}

.yellow {
    background: #feba00 !important;
}

.color-yellow {
    color: #feba00 !important;
}


.green {
    background: #05cf9d !important;
}

.dashboard-top-box-in {
    float: left;
    width: 100%;
    height: 65px;
    background: #0094ff;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.dashboard-top-box-in-left {
    float: left;
    padding: 5px 0;
}

    .dashboard-top-box-in-left span {
        color: #000;
        font-size: 20px;
        line-height: 24px;
    }

        .dashboard-top-box-in-left span i {
            background: #fff;
            padding: 7px;
            border-radius: 5px;
            width: 35px;
            height: 35px;
            text-align: center;
        }

.dashboard-top-box-in-right {
    float: right;
    color: #fff;
    width: calc(100% - 40px);
    padding: 5px 0;
}

    .dashboard-top-box-in-right h6 {
        margin-bottom: 5px;
        font-size: 15px;
        white-space: nowrap;
    }

    .dashboard-top-box-in-right p {
        margin: 0;
        font-size: 14px;
        line-height: 16px;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        /*max-height: 26px;*/
    }




.dashboard-top-box-nav {
    float: left;
    width: 250px;
    padding: 70px 0 0 0;
}


.dashboard-mid-section {
    float: left;
    width: 100%;
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    padding: 0px;
    margin-top: 20px;
}

.dashboard-mid-left {
    float: left;
    width: 70%;
    padding: 0 2% 0 0;
}



.calender-view {
    margin-bottom: 25px;
}

.dashboard-title {
}

.dashboard-title-left {
    float: left;
}

.dashboard-mid-left h4 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.dashboard-filter-right {
    float: right;
}

.dashboard-title-right {
    float: right;
}

.custom-select-dropdown select {
    height: 25px;
}

.custom-select-dropdown .form-control {
    border: 2px solid #000;
    border-radius: 20px;
    color: #000;
}

.dashboard-mid-inner {
    width: 100%;
    /*height: calc(100vh - 337px);*/
    background: #fff;
    /*max-height: calc(100vh - 310px);
        overflow-y: auto;*/
    transition: all 0.6s ease;
    padding: 10px;
    /*border-radius: 20px;*/
    overflow: hidden;
}

    .dashboard-mid-inner.custom {
        width: 100%;
        /*height: calc(100vh - 128px);
    height: calc(100vh - 192px);*/
        transition: all 0.6s ease;
        padding: 5px 0;
        overflow: hidden;
        background: none;
    }

.custom-dashboard-mid-inner {
    width: 100%;
    transition: all 0.6s ease;
    padding: 5px 0;
    overflow: hidden;
    /*height: calc(100vh - 193px);*/
    background: none;
    /*display:flex;
    vertical-align: middle;
    align-items: center;*/
}

    .custom-dashboard-mid-inner > .news-group {
        /*width: 30%;
    float: left;*/
        /*margin-right: 15px !important;*/
    }
/*.custom-dashboard-mid-inner > .news-group:nth-child(3n+3){
    margin-right: 0px !important;
}*/

.dashboard-mid-inner.calender img {
    width: 100%;
    height: 100%;
}

.dashboard-mid-right {
    float: left;
    width: 25%;
}

.dashboard-mid-notices {
    float: left;
    width: 22%;
    padding: 0 10px;
}

    .dashboard-mid-notices h4 {
        color: #000;
        font-weight: 600;
        font-size: 20px;
    }

.notices-group {
    padding: 10px;
    transition: all 0.5s ease;
}

    .notices-group:hover {
        background: #f5f5f5;
    }

    .notices-group h6 {
        margin-bottom: 5px;
        font-size: 14px;
        color: #000;
        font-weight: 600;
    }

    .notices-group p {
        margin: 0;
        font-size: 14px;
    }

    .notices-group button {
        background: none;
        border: 0;
        color: #feba00;
        padding: 5px 0;
        outline: none;
        font-size: 14px;
        padding-bottom: 0;
    }

.dashboard-mid-latest-news {
    float: left;
    width: 30%;
    padding: 15px;
    background: #ffffff;
    border-radius: 15px;
}

    .dashboard-mid-latest-news h4 {
        color: #000;
        font-weight: 600;
        font-size: 20px;
    }

.right-side-bar {
    float: left;
    width: 100%;
    background: #dddddd;
    padding: 15px;
    border-radius: 10px;
}

.sidebar-title {
    background: var(--secondary-color);
    padding: 5px 10px 8px 10px;
    color: #FFFFFF !important;
    border-radius: 10px;
    font-size: 18px;
}

.dashboard-mid-latest-news .dashboard-mid-inner {
    padding: 0 0px 10px 0px !important;
}

.custom-hyper-link {
    display: block;
    width: 100%;
    padding: 20px;
    border: 1px solid #f1f1f1;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    background: #f5f5f5;
    text-decoration: none;
    transition: all 0.6s ease;
    color: var(--secondary-color);
}

    .custom-hyper-link:hover {
        background: var(--secondary-color);
        color: #FFFFFF;
        text-decoration: none;
    }

.sub-titles {
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    /*padding: 0 20px;*/
}

.dashboard-mid-latest-news .sub-titles {
    padding-right: 10px;
    padding-bottom: 10px;
}

    .dashboard-mid-latest-news .sub-titles a {
        border-bottom: 1px solid var(--secondary-color);
        color: var(--secondary-color);
        font-size: 14px;
        font-weight: 400;
    }

.sub-titles-left {
    float: left;
    width: 100%;
    text-align: left;
}

.sub-titles-right {
    float: right;
}

.sub-titles a {
    color: #000;
}

.no-bg {
    background: none !important;
}

.notices-group button:hover {
    color: #9e7d24;
}

.dashboard-tab-container {
    float: left;
    width: 100%;
}

.dashboard-tab-link-group {
    float: left;
    width: 100%;
    /*padding-top: 10px;*/
}

    .dashboard-tab-link-group > ul {
        float: left;
        width:;
        margin: 0;
        padding: 0 0 0px 0;
        list-style: none;
        border-bottom: 2px solid #ccc;
    }

        .dashboard-tab-link-group > ul > li {
            margin: 0;
            padding: 0;
            display: inline-block;
            color: #949498;
            font-weight: 600;
            padding: 4px 10px;
            cursor: pointer;
            position: relative;
            font-size: 15px;
        }

    .dashboard-tab-link-group ul li.active {
        color: var(--secondary-color);
        position: relative;
    }

        .dashboard-tab-link-group ul li.active::after {
            content: "";
            position: absolute;
            background: var(--secondary-color);
            height: 3px;
            width: 100%;
            bottom: -2px;
            left: 0;
        }




    .dashboard-tab-link-group ul li i {
        /*color:#949498;*/
        /*border-bottom:2px solid #949498;*/
        padding-bottom: 5px;
    }

    .dashboard-tab-link-group ul li.active i {
        color: #2585f5;
        border-bottom: 2px solid #2585f5;
    }

    /*-------------------- Inner Plage tab Design Start Here ------------------------------*/

    .dashboard-tab-link-group ul.inner-page-tab {
        text-align: center;
    }

        .dashboard-tab-link-group ul.inner-page-tab li.active {
            position: relative;
        }

            .dashboard-tab-link-group ul.inner-page-tab li.active::after {
                content: "";
                position: absolute;
                width: 100%;
                height: 4px;
                bottom: 0;
                left: 0;
                right: 0;
                margin: 0 auto;
                background: #357de2;
                border-radius: 50px;
            }

/*-------------------- Inner Plage tab Design End Here ------------------------------*/

.dashboard-tab-group {
    float: left;
    width: 100%;
    /*border-radius:30px;
    background: #FFF;
    border:1px solid #ddd;
    min-height:250px;
    padding: 10px 0px;*/
}

.dashboard-tab-item {
    float: left;
    width: 100%;
    display: none;
}

    .dashboard-tab-item.active {
        display: block;
    }


.dash-bot-section {
    width: 100%;
    display: flex;
}

.dash-bot-section-left, .dash-bot-section-right {
    width: 100%;
}

    .dash-bot-section-left h5, .dash-bot-section-right h5 {
        margin: 0;
    }

.dash-bot-section-left {
    padding-right: 10px;
}

.dash-bot-section-right {
    padding-left: 10px;
}

    .dash-bot-section-left .sidebar-title, .dash-bot-section-right .sidebar-title {
        width: 100%;
        float: left;
    }

.dash-bot-foot {
    padding: 5px 10px;
    background: #eee;
    text-align: right;
    float: left;
    width: 100%;
    border-top: 1px solid #ddd;
}

.tab-group-container {
    max-height: 400px;
    overflow: auto;
    padding: 20px;
}

/* common tabs  */
.tab-container {
    float: left;
    width: 100%;
}

.tabs-link-group {
    float: left;
    width: 100%;
    background: #ccc;
    border-bottom: 1px solid #999;
    padding: 0;
    margin: 0;
}

    .tabs-link-group li {
        padding: 8px 15px;
        list-style: none;
        display: inline-block;
        color: var(--secondary-color);
        cursor: pointer;
        font-weight: 700;
        border-right: 1px solid #f1f1f1;
    }

.tabs-content-group {
    float: left;
    width: 100%;
    padding: 15px 15px 15px 0;
    overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - 120px);
}

/*   Web Form Design   */

.web-form {
    float: left;
    width: calc(100% - 20px);
    border-radius: 20px 20px 0 0;
    background: #FFF;
    border: 1px solid #ddd;
    /*padding: 5px 15px 15px 15px;*/
    height: calc(100vh - 65px);
    position: relative;
    /*min-height: calc(96vh - 75px);*/
    /*min-height: calc(96vh - 90px);*/
}

.web-form-btns {
    text-align: right;
    padding: 10px 0 10px 0;
}

.web-form-in {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
}

.gp-tab-control {
    float: left;
    width: 100%;
}

.gp-tab-link-group {
    float: left;
    width: 100%;
}

    .gp-tab-link-group ul {
        float: left;
        width: 100%;
        margin: 0;
        padding: 0 0 20px 0;
        list-style: none;
    }

        .gp-tab-link-group ul li {
            margin: 0;
            padding: 0;
            display: inline-block;
            color: #949498;
            font-weight: 600;
            padding: 5px 10px;
            cursor: pointer;
        }

            .gp-tab-link-group ul li.active {
                color: #000;
            }

            .gp-tab-link-group ul li i {
                color: #949498;
                border-bottom: 2px solid #949498;
                padding-bottom: 5px;
            }

            .gp-tab-link-group ul li.active i {
                color: #2585f5;
                border-bottom: 2px solid #2585f5;
            }

.gp-tab-item-group {
    float: left;
    width: 100%;
    min-height: 250px;
    padding: 20px;
}

.gp-tab-item {
    float: left;
    width: 100%;
    display: none;
}

    .gp-tab-item.active {
        display: block;
    }

.web-form-title {
    float: left;
    font-size: 22px;
    margin: 0;
    cursor: default;
    font-weight: 600;
}

    .web-form-title i {
        font-size: 23px;
    }

    .web-form-title.red i {
        color: var(--secondary-color);
    }

    .web-form-title.green i {
        color: #05cf9d;
    }

.form-sub-title {
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    padding-top: 7px;
}

.new-request {
    /*float: right;*/
    /*background: #04ac00;*/
    font-size: 14px;
    color: #fff;
    border: 0;
    padding: 2px 10px;
    border-radius: 4px;
    outline: none !important;
    transition: all 0.6s ease;
    border: 1px solid #ccc;
    color: #FFFFFF;
    background: var(--secondary-color);
    white-space: nowrap;
    cursor: pointer;
}

    .new-request.active {
        background: #0b7708;
        border: 1px solid #0b7708;
        color: #fff;
    }

        .new-request.active:hover {
            background: #0f540d;
        }

    .new-request:hover {
        border: 1px solid #0b7708;
        color: #fff;
        background: #0b7708;
    }


/*.new-request.active {
        background: #04ac00;
        border: 1px solid #04ac00;
        color: #fff;
    }*/

.web-form-inner-header {
    padding: 0 0 0 20px;
}

    .web-form-inner-header span.filter {
        float: left;
        font-size: 17px;
        font-weight: 600;
        padding: 10px 0px;
    }

    .web-form-inner-header .filter-information {
        float: right;
        cursor: default;
    }

        .web-form-inner-header .filter-information ul {
            padding: 0;
            margin: 0;
        }

            .web-form-inner-header .filter-information ul li {
                list-style-type: none;
                display: inline-block;
                padding: 5px 0px 5px 20px;
            }

.filter-information ul li label {
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.filter-information ul li span {
    font-size: 20px;
}

    .filter-information ul li span.red {
        color: var(--primary-color);
    }

    .filter-information ul li span.orange {
        color: #fd7b10;
    }

    .filter-information ul li span.green {
        color: #04ac00;
    }


.status-inactive {
    color: #999999;
    pointer-events: none;
}

    .status-inactive i {
        color: #999999 !important;
    }

.Status-active {
    color: #04ac00;
}

.iniactive-event {
    pointer-events: none;
}


/*----------------- Raise a Request -------------------*/
.web-form-inner-body {
    padding: 0 20px;
}

.web-form-content {
    padding: 10px 15px;
}

.data-form-controls {
    height: calc(100vh - 390px);
    overflow-y: auto;
    padding: 0 15px 0 0;
}

.form-group {
    margin-bottom: 22px;
}

    .form-group textarea {
        width: 100%;
    }

.form-control {
    width: 100%;
    height: calc(1.5em + 0);
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
    /*background-color: #ededed;*/
    background-clip: padding-box;
    border: 1px solid #adadad;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    padding: 0 5px 0 5px;
    border-radius: 4px;
    box-shadow: none !important;
}

    .form-control:disabled {
        cursor: not-allowed;
    }

    .form-control[readonly] {
        pointer-events: none;
    }

.form-group .input-group input.form-control {
    background: none !important;
}
/*.add-form-group .form-group .input-group span{
    border: 1px solid #ccc;
    border-radius: 0 4px 4px 0;
}*/
.form-group .input-group span button {
    border: 1px solid #adadad;
    border-radius: 0 4px 4px 0;
    padding: 6px 8px;
    border-left: 0;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

    .form-group .input-group span button:focus {
        box-shadow: none !important;
    }

    .form-group .input-group span button:hover {
        background: var(--primary-color);
        color: #fff;
        /*border: 1px solid var(--primary-color);*/
    }

.form-group.custom select {
    background: #fff !important;
    border: 1px solid #adadad !important;
    border-radius: 0;
}

.form-group select:disabled {
    background: #e9ecef !important;
}

.form-group.custom label {
    font-weight: 600;
}

    .form-group.custom label.blue {
        color: var(--secondary-color);
    }

.form-group.custom textarea {
    background: #fff;
    border: 1px solid #bbb;
}

.text-error {
    float: left;
    font-size: 14px;
    color: #ff0000;
    margin: 0;
    line-height: 15px;
    cursor: default;
}

.color-blue {
    color: var(--secondary-color) !important;
}


.form-group label {
    font-size: 14px;
    margin-bottom: 4px;
}

.textarea-max-text {
    text-align: right;
    color: #04ac00;
    font-size: 14px;
}

.mandatory {
    position: relative;
}

    .mandatory:after {
        position: absolute;
        content: "*";
        top: -1px;
        right: -10px;
        color: #ff0000;
        font-size: 14px;
    }

.mandatory-1 {
    color: #ff0000;
    font-size: 14px;
}

textarea.form-control {
    height: auto;
}

.re-registration-box {
    padding: 5px 10px;
    border: 1px solid #bbb;
    width: 100%;
    margin-bottom: 15px;
}

.re-registration-section {
    float: left;
    width: 27%;
}

.re-registration-group {
    width: 100%;
}

    .re-registration-group p {
        margin: 0;
    }

    .re-registration-group label {
        color: #7f7f7f;
        font-size: 14px;
        color: #AAA;
        display: block;
        margin: 0;
    }

    .re-registration-group span {
        font-size: 17px;
        color: #000;
    }

.re-registration-section.edit {
    float: right;
    text-align: right;
    border-left: 2px solid #7f7f7f;
    width: 15%;
}

.re-registration-group-box {
    border: 1px solid #bbb;
    width: 85%;
    margin: 0 auto;
    border-radius: 3px;
    margin: 4px 15px;
    height: 35px;
}

    .re-registration-group-box button {
        background: #fff;
        height: 100%;
        padding: 4px 0;
        border: 0;
        transition: all 0.6s ease;
    }

        .re-registration-group-box button:hover {
            background: #f1f1f1;
        }

        .re-registration-group-box button.left-btn {
            float: left;
            width: 70%;
            font-weight: 700;
            color: #949498;
        }

        .re-registration-group-box button.right-btn {
            float: right;
            width: 30%;
            border: 0;
            color: #ea4c89;
            border-left: 1px solid #bbb;
        }

            .re-registration-group-box button.right-btn i {
                font-size: 19px;
            }

.re-registration-section.edit span i {
    padding: 10px;
    border: 1px solid #7f7f7f;
    border-radius: 100%;
    margin: 3px 5px;
    font-size: 15px;
    transition: 0.6s;
}

.re-registration-section.edit span.blue a i:hover {
    background: #4449ff;
    color: #fff;
    border: 1px solid #4449ff;
}

.re-registration-section.edit span.ornage a i:hover {
    background: #fd7b10;
    color: #fff;
    border: 1px solid #fd7b10;
}


.re-registration-section.closed span i {
    color: #04ac00;
}

.color-pink {
    color: #ea4c89;
}

.pink i {
    color: #ea4c89;
}

/*.blue i {
    color: #4449ff;
}*/

.orange i {
    color: #fd7b10;
}

.color-green i {
    color: #32bd00;
}

.color-green {
    color: #32bd00 !important;
}

.color-black {
    color: #000;
}

.color-red i {
    color: #f71f07 !important;
    margin-right: 5px;
}

.color-red {
    color: #f71f07 !important;
}

.background-red {
    color: #f71f07 !important;
}

.fade-red {
    background: #f71f07 !important;
}

.fade-green {
    background: var(--secondary-color) !important;
}

.fade-orange {
    background: #fd7b10 !important;
}

.deep-sky-blue {
    color: #00eac5 !important;
}

.sky-blue {
    background: #15b5c5;
}

.purple {
    background: #996ddc;
}

.color-orange {
    color: #fd7b10;
}

.delete {
    color: #f71f07;
    transition: all 0.6s ease;
}

    .delete:hover {
        color: #d21a06;
    }

.edit {
    color: #0094ff;
    transition: all 0.6s ease;
}

    .edit:hover {
        color: #0069b5;
    }



.Re-SendOTP-inactive {
    opacity: 0.5;
}

.terms-condition-title {
    margin-left: 40px;
    font-size: 15px;
    color: #ff7b00;
    font-weight: 700;
    position: relative;
}

    .terms-condition-title::after {
        content: "\f0a4";
        position: absolute;
        left: -37px;
        bottom: -11px;
        font-size: 25px;
        color: #e6c131;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
    }

.custom-form-section ul.terms-condition-list li {
    font-size: 16px;
}

.terms-condition-list li a {
    color: #5c5c5c;
    transition: all 0.6s ease;
    text-decoration: none;
}

    .terms-condition-list li a:hover {
        color: #ff7b00;
    }




/*  Custom Model Popup   */
.gp-model-open {
    overflow: hidden;
}

.gp-model {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    z-index: 1099;
}

    .gp-model.show {
        opacity: 1;
        visibility: visible;
    }

.gp-model-content {
    position: absolute;
    top: -800px;
    transition: all 0.6s ease;
}

.gp-model.show .gp-model-content {
    top: 50px;
}

.gp-model-sm .gp-model-content {
    width: 400px;
    left: calc(50% - 200px);
}

.gp-model-lg .gp-model-content {
    width: 1000px;
    left: calc(50% - 500px);
}








/*------------------ Select Popup Start here -----------------------*/

.select-popup {
    width: 400px;
    position: absolute;
    background: #fff;
    top: 0;
    /*display: none;*/
}

.select-popup-header {
    background: #04ac00;
    padding: 15px 10px;
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.select-popup-body {
    max-height: calc(100vh - 335px);
    overflow: auto;
}

    .select-popup-body ul {
        padding: 0;
        margin: 0;
    }

        .select-popup-body ul li {
            list-style-type: none;
            /*padding: 5px 10px;*/
            border-bottom: 1px solid #e6e6e6;
            transition: all 0.6s ease;
        }

.select-popup-radio-btn label {
    display: inline-block;
    width: 100%;
    padding: 10px;
    margin: 0;
}

.select-popup-radio-btn input[type="radio"] {
    display: none;
}

    .select-popup-radio-btn input[type="radio"]:checked + label {
        background: #f1f1f1;
        color: #3a9bca;
        font-weight: 700;
        position: relative;
    }

        .select-popup-radio-btn input[type="radio"]:checked + label::after {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            position: absolute;
            right: 17px;
            bottom: 9px;
            color: #3a9bca;
            font-size: 15px;
        }

.select-popup-footer {
    padding: 10px 20px;
    background: #eaecef;
    text-align: right;
}

    .select-popup-footer button.select-popup-btn {
        background: #fff;
        padding: 3px 15px;
        border: 1px solid #dbdde4;
        border-radius: 5px;
        font-weight: 600;
        color: #697f97;
        margin-left: 10px;
        transition: all 0.6s ease;
        outline: none !important;
        text-transform: uppercase;
    }

        .select-popup-footer button.select-popup-btn.active {
            background: #ea4c89;
            color: #fff;
            border: 1px solid #ea4c89;
        }

        .select-popup-footer button.select-popup-btn:hover {
            background: #ea4c89;
            color: #fff;
            border: 1px solid #ea4c89;
        }
/*------------------ Select Popup End here -----------------------*/




/*------------------ Re-Registration Request Popup Start here -----------------------*/
.form-popup {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    width: 100%;
    float: left;
    left: 0px;
}

.form-popup-container {
}

.popup-close-btn {
    float: right;
    background: #fff;
    font-size: 18px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 0.6s;
    padding: 2px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -10px;
    box-shadow: 1px 1px 7px #888888;
}

    .popup-close-btn:hover {
        color: #fff;
        background: var(--primary-color);
    }

.custom-form-header {
    padding: 10px 0px;
}

.custom-form-header-left {
    float: left;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
}

.custom-form-header-right {
    float: right;
    /*padding-top: 3px;*/
}

    .custom-form-header-right a {
        color: #fd7b10;
        font-size: 15px;
    }

.color-white {
    color: #FFFFFF;
}

.form-popup-body.re-registration-request-popup .form-popup-body-left {
    float: left;
    padding: 10px;
    width: 270px;
    border: 1px solid #979797;
    border-radius: 30px;
    padding: 20px 10px 20px 10px;
}

.form-popup-body-left-inner {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

.re-registration-group.margin-bottom {
    padding: 10px;
    transition: 0.6s;
}



.form-popup-body-right {
    float: right;
    width: calc(100% - 270px);
    background: #fff;
    padding: 0px 17px 0px 25px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

    .form-popup-body-right .custom-form-header {
        padding: 0;
        margin-bottom: 10px;
    }

        .form-popup-body-right .custom-form-header .custom-form-header-left {
            color: #000;
            font-size: 17px;
        }

        .form-popup-body-right .custom-form-header .custom-form-header-right a {
            color: #5c5c5c;
            font-weight: 700;
        }

.upload-document-section {
    padding: 20px 0;
}

.upload-file-section {
    width: 120px;
    height: 120px;
    background: grey;
    border-radius: 10px;
}

.custom-form-section {
    margin-bottom: 20px;
}

.btn-box-right {
    width: 100%;
    text-align: right;
    margin: 20px 0 20px 0;
    padding: 0;
}

    .btn-box-right .btn {
        margin-left: 10px;
    }

.btn-box-center {
    width: 100%;
    text-align: center;
    margin: 20px 0 20px 0;
    padding: 0;
}

.btn-primary {
    background: #FFF;
    border: 0;
    border-radius: 0;
    transition: all 0.6s ease;
    min-width: 100px;
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    text-transform: inherit !important;
}

    .btn-primary:hover {
        background: var(--secondary-color);
        border: 1px solid var(--primary-color);
    }

.btn {
    padding: 0.36em 0.75rem;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-primary.active {
    background: var(--secondary-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 0;
    transition: all 0.4s ease;
    color: #FFF;
    border-radius: 5px;
    text-transform: unset;
    letter-spacing: 0.5px;
    outline: none !important;
}

    .btn-primary.active:hover {
        background: var(--primary-color) !important;
    }

.btn-primary:focus {
    box-shadow: none !important;
}

.form-checks label input {
    opacity: 0;
}

.form-checks label span.label-text {
    font-size: 14px;
    position: relative;
    left: -17px;
    top: 0;
}

.table tr td .form-checks label span.label-text {
    top: -22px;
}


/*---------------------- Custom Check Box Start Here -----------------------------*/

/* The form-check */
.form-check {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 15px;
    /*top: -13px;
  right: -7px;*/
    padding-left: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
}

    /* Hide the browser's default checkbox */
    .form-check input {
        /*position: absolute;*/
        opacity: 0;
        cursor: pointer;
        height: 0 !important;
        width: 0 !important;
    }

    /* Create a custom checkbox */
    .form-check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #aaa;
        border-radius: 3px;
    }

    .form-check.radio-btn .checkmark {
        border-radius: 50%;
    }
    /* On mouse-over, add a grey background color */
    .form-check:hover input ~ .checkmark {
        background-color: #ccc;
    }

    /* When the checkbox is checked, add a blue background */
    .form-check input:checked ~ .checkmark {
        /*background-color: #04ac00;*/
        background: var(--primary-color);
        border-radius: 3px;
    }

    .form-check.radio-btn input:checked ~ .checkmark {
        border-radius: 50%;
    }
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.form-check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.form-check .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-ceck-section {
    position: relative;
}

table .form-check {
    margin: 0;
}
/*---------------------- Custom Check Box End Here -----------------------------*/

/*File Upload*/
.file-upload {
    z-index: 2;
    position: relative;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 34px;
    cursor: pointer;
    border: 1px solid #ced4da;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .file-upload-wrapper::before {
        content: '\f093';
        position: absolute;
        top: 0;
        right: 0;
        display: inline-block;
        height: 33px;
        background: #636363;
        color: #fff;
        font-weight: 400;
        z-index: 25;
        line-height: 33px;
        padding: 0 8px;
        pointer-events: none;
        cursor: pointer;
        font-weight: 600;
        font-family: "Font Awesome 5 Free";
    }

    .file-upload-wrapper input {
        opacity: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        height: 33px;
        margin: 0;
        padding: 0;
        display: block;
        cursor: pointer;
        width: 100%;
    }

    .file-upload-wrapper::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        background: #f1f1f1;
        padding: 8px 4px;
        display: block;
        width: calc(100% - 30px);
        pointer-events: none;
        z-index: 20;
        height: 32px;
        line-height: 15px;
        color: #999;
        font-weight: 300;
    }

.file-upload-text {
    margin-top: 15px;
    margin: 0;
}

    .file-upload-text h6 {
        font-size: 14px;
        padding: 20px 0 10px 0;
        text-align: left;
    }

        .file-upload-text h6 i {
            padding-right: 5px;
        }



/*    File Upload    */
.file-drag-block {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.file-drag-box {
    padding-right: 15px;
}

.file-drag {
    width: 120px;
    height: 120px;
    border: 1px dashed #aaa;
    position: relative;
    border-radius: 10px;
}

    .file-drag p {
        width: 100%;
        height: 100%;
        text-align: center;
        margin: 0;
        background: #fff;
        border-radius: 15px;
    }

    .file-drag input {
        position: absolute;
        margin: 0;
        padding: 0;
        width: 100%;
        /*height: 100%;*/
        outline: none;
        opacity: 0;
        height: 118px !important;
    }

    .file-drag button {
        margin: 0;
        color: #fff;
        background: #16a085;
        border: none;
        width: 508px;
        height: 35px;
        margin-top: -20px;
        margin-left: -4px;
        border-radius: 4px;
        border-bottom: 4px solid #117A60;
        transition: all .2s ease;
        outline: none;
    }

        .file-drag button:hover {
            background: #149174;
            color: #0C5645;
        }

        .file-drag button:active {
            border: 0;
        }





/*----------------- Scroolbar Start here ------------------------*/

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    visibility: hidden;
}

::-webkit-scrollbar-thumb {
    background: #636363;
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: #F1F1F1;
}


/** {
    overflow-y: auto;
    scrollbar-color: #000000 #959595;
    scrollbar-width: thin;
}*/

select::-webkit-scrollbar {
    width: 3px;
}

/*select {
    scrollbar-width: unset;
}*/
/*----------------- Scroolbar End here ------------------------*/




/*--------------------- News ---------------------------*/
.padding-right-0 {
    padding-right: 0 !important;
}

.form-search {
    width: 250px;
    float: right;
    position: relative;
    /*margin-right: 15px;*/
}

    .form-search input {
        width: 100%;
        padding: 2px 35px 2px 5px;
        border-radius: 4px;
        border: 1px solid #ced4da;
        outline: none !important;
    }

    .form-search button {
        position: absolute;
        right: 1px;
        top: 1px;
        text-align: center;
        width: 30px;
        outline: none !important;
        border: 0;
        border-left: 1px solid #ced4da;
        background: #fff;
        border-radius: 0px 3px 3px 0;
        transition: all 0.6s ease;
        height: 92%;
    }

        .form-search button i {
            font-size: 14px;
        }

        .form-search button:hover {
            background: var(--primary-color);
            color: #fff;
        }

.web-form-title.news {
    color: var(--secondary-color);
}


.web-form-title.news-right {
    float: right;
    color: #fe85a2;
    text-align: left;
    width: 100%;
    /*padding: 0 10px;*/
}

.margin-top {
    margin-top: 10px;
}

.news-group {
    padding: 12px 0;
    cursor: default;
}
/*.news-body{
    height: calc(100vh - 50px);
    overflow-y:auto;
}*/
.news-group-left {
    float: left;
    width: 200px;
    height: 200px;
}

    .news-group-left .news-image {
        width: 100%;
        height: 100%;
        background: #f1f1f1;
        border: 1px solid #ccc;
        border-radius: 15px;
    }

        .news-group-left .news-image img {
            width: 100%;
            height: 100%;
            border-radius: 15px;
            overflow: hidden;
        }

.news-group-right {
    float: right;
    width: calc(100% - 200px);
    padding: 0px 15px 20px 10px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

    .news-group-right h4 {
        color: #000;
    }

    .news-group-right p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        text-align: justify;
    }

.news-group.sub.first-one {
    /*padding-top:0;*/
    margin-top: 0;
}

.news-image.custom {
    /*margin-top: 5px !important;*/
}

.info-footer {
    width: 100%;
    position: absolute;
    bottom: 4px;
    left: 0;
    padding: 0 25px 0 10px;
}

.info-footer-left {
    float: left;
    cursor: pointer;
    font-size: 14px;
}

    .info-footer-left:hover {
        color: var(--secondary-color);
    }

.info-footer-right {
    float: right;
    min-width: 22px;
}
/*---------------------News-Radio-btn Start here--------------------------*/
/* News-Radio-Btn */
.news-radio-btn {
    display: block;
    position: relative;
    /*padding-left: 35px;*/
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: -2px;
}

    /* Hide the browser's default checkbox */
    .news-radio-btn input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.news-checkmark {
    position: absolute;
    font-size: 18px;
}

/* On mouse-over, add a grey background color */
.news-radio-btn:hover input ~ .news-checkmark {
}

/* When the checkbox is checked, add a blue background */
.news-radio-btn input:checked ~ .news-checkmark {
    /*background-color: #2196F3;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.news-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.news-radio-btn input:checked ~ .news-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.news-radio-btn .news-checkmark:after {
    content: "\f004";
    font-family: "Font Awesome 5 Free";
    top: -2px;
    right: -1px;
    color: #fe85a2;
    font-size: 20px;
    font-weight: 700;
}




/*---------------------News-Radio-btn End here--------------------------*/

/*---------------------Radio-btn  Style-1 Start here --------------------------*/

.style-1 {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .style-1 input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #ccc;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.style-1:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.style-1 input:checked ~ .checkmark {
    background-color: var(--secondary-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.style-1 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.style-1 .checkmark:after {
    top: 5px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
}


/*---------------------Radio-btn  Style-1 End here --------------------------*/


/*.info-footer-right button{
    background: transparent;
    border:0;
    outline: none !important;
}
.info-footer-right button:hover i {
    color: #fe85a2;
}*/
.news-group-right.sub {
    padding: 0 5px 17px 0px;
    min-height: 75px !important;
    width: calc(100% - 55px);
}

    .news-group-right.sub h4 {
        font-size: 13px;
        margin: 0;
        font-weight: 600;
        margin: 0px 0 2px 0;
        float: left;
        width: 100%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .news-group-right.sub p {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 14px;
        height: 43px;
        float: left;
        width: 100%;
        text-align: justify;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

.news-group-left.sub {
    margin-left: -20px;
    width: 70px;
    height: 70px;
}

    .news-group-left.sub .news-image {
        height: 100%;
        width: 100%;
        margin-top: 4px;
        /*box-shadow: 0 0 10px #ccc;*/
    }

.news-group-right.sub .info-footer {
    bottom: -2px;
    padding: 0;
}

.info-footer.sub {
    font-size: 10px;
    padding: 0 5px;
    bottom: -3px;
}

.news-radio-btn.sub {
    position: absolute;
    right: 22px;
    bottom: 7px;
}

    .news-radio-btn.sub .news-checkmark {
        font-size: 14px;
    }

        .news-radio-btn.sub .news-checkmark:after {
            font-size: 14px;
            top: 0px;
            right: 0;
        }

.news-group.sub {
    border: 1px solid #e6e6e6;
    padding: 5px 0;
    border-radius: 10px;
    /*margin: 10px 0;*/
    margin-left: 20px;
    cursor: pointer;
    background: #fff;
    min-height: 90px;
    margin-bottom: 5px;
}

    .news-group.sub:hover {
        border: 1px solid #209b60;
        transition: all 0.6s ease;
        background: linear-gradient(to bottom right, #ecf0f6, #ecf0f6);
    }

.data-form-controls.news {
    /*max-height: calc(100vh - 310px);*/
    height: calc(100vh - 245px);
    overflow: hidden;
    /*padding: 0 15px 0 10px;*/
}


/*--------------------- Jobs ---------------------------*/
.left-blocks {
    width: 100%;
}

.left-blocks-left {
    float: left;
    width: 280px;
    padding: 15px 10px 15px 15px;
}

.left-blocks-right {
    float: right;
    width: calc(100% - 280px);
    padding: 15px 15px 15px 10px;
    overflow-y: auto;
    height: calc(100vh - 115px);
}

.custom-title-1 {
    width: 100%;
    color: #000;
    margin-bottom: 10px;
}

.custom-title-1-left {
    float: left;
}

.custom-title-1-right {
    float: right;
    text-align: right;
    padding-left: 10px;
}

.custom-title-1 h2 {
    margin: 0;
}

.custom-title-1 h3 {
    margin: 0;
}

.custom-title-1 h4 {
    margin: 0;
}

.custom-title-1 h5 {
    margin: 0;
}

.custom-title-1 h6 {
    margin: 0;
    font-size: 16px;
}

.custom-title-1.sub .custom-title-1-left {
    width: 50%;
}

.custom-title-1.sub .custom-title-1-right {
    width: 50%;
    font-size: 16px;
}

    .custom-title-1.sub .custom-title-1-right h6 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: right;
    }

    .custom-title-1.sub .custom-title-1-right h6 {
        font-size: 14px;
    }

        .custom-title-1.sub .custom-title-1-right h6 .location-icon {
            float: right;
        }

.data-form-controls.job-form {
    max-height: calc(100vh - 254px);
}

.job-left {
    background: #f4f4f4;
    border-radius: 15px;
    padding: 10px 0px;
}

.jobs-form-header-right .full-time h5 {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 6px;
}

.job-form-inner {
    height: calc(100vh - 165px);
    /*max-height: calc(100vh - 280px);*/
    overflow-y: auto;
    padding: 5px 10px 5px 10px;
}

.no-padding {
    padding: 0 !important;
}

.left-padding-0 {
    padding-left: 0 !important;
}

.padding-10-15 {
    padding: 10px 15px !important;
}

.job-form-controls .form-group {
    margin-bottom: 20px !important;
}

    .job-form-controls .form-group label {
        font-weight: 700;
        color: #000;
    }

.job-form-controls {
    border-bottom: 1px solid #d8d8d8;
    /*padding: 13px 0;*/
    margin-bottom: 12px;
}

.form-control.job {
    background: #fff;
}

/*-------------------- Pop up job-description ----------------------*/

.job-description {
    color: #000;
    max-height: calc(100vh - 254px);
    overflow-y: auto;
}

.job-description-group {
    margin-bottom: 25px;
}

    .job-description-group ul {
        padding-left: 20px;
    }

.job-description h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 12px;
}

.job-sub-header {
    text-align: left;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 10px;
}

.job-description-info-box {
    margin-bottom: 5px;
}

    .job-description-info-box label {
        width: 150px;
        font-size: 14px;
        font-weight: 700;
        color: #000;
        margin-bottom: 0;
    }

    .job-description-info-box span {
        width: calc(100% - 150px);
        font-size: 14px;
    }

.job-description-group button.key-skils-btn {
    padding: 2px 10px;
    border: 1px solid #aaa;
    background: #fff;
    border-radius: 30px;
    margin: 5px 15px 10px 0;
    transition: all 0.6s ease;
}

    .job-description-group button.key-skils-btn:hover {
        border: 1px solid var(--primary-color);
        background: var(--primary-color);
        color: #fff;
    }














/*-------------------- On / Off Swithch ----------------------*/

.slider.round {
    border-radius: 15px;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0;
    background-color: #666;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }


/*-------------------- On / Off Swithch ----------------------*/

.wrapper {
    position: relative;
}

    .wrapper .selected-items-box {
        float: left;
        /*cursor: pointer;*/
        border: solid 1px #ddd;
        padding: 0px 0px;
        width: 100%;
        background-color: #FFF;
        color: #333;
        border-radius: 4px;
        position: relative;
        z-index: 9;
    }

.selected-items {
    float: left;
    width: 100%;
    padding: 6px 18px 6px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 !important;
    min-height: 32px;
    cursor: pointer;
}

.selected-items-box label.selected-items[disabled="disabled"] {
    pointer-events: none;
    color: #969696;
    background-color: #ccc;
    cursor: not-allowed;
}

.wrapper label.selected-items[disabled="disabled"] + .dropdown-icon {
    cursor: not-allowed !important;
    color: #969696;
    background: transparent;
    width: 100%;
    text-align: right;
    height: 33px;
    left: 0;
    top: 0;
    padding: 7px 10px 7px 10px;
}

.dropdown-icon {
    position: absolute;
    top: 7px;
    right: 9px;
}

.wrapper .list {
    display: none;
    width: 220px;
    border-left: solid 1px #C7C6C7;
    border-right: solid 1px #C7C6C7;
    border-top: solid 1px #C7C6C7;
    border-bottom: solid 1px #C7C6C7;
    z-index: 10;
    position: absolute;
    width: 100%;
    top: 35px;
    background: #FFF;
}

    .wrapper .list::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 30px;
        background: transparent;
        left: 0;
        bottom: -30px;
    }

.slide-form.active {
    visibility: visible;
    opacity: 1;
}

.slide-form {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 52, 113, 0.50);
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s ease;
}

.multi-search {
    width: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 4px 5px;
    border-bottom: 1px solid #ccc;
}

    .multi-search .form-control {
        width: calc(100% - 30px);
        height: 25px;
        border-radius: 4px;
        outline: none !important;
    }

.multi-search-close {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    outline: none !important;
    color: #fff;
    background: #e87f00;
    border: 1px solid #c46b00;
    transition: all 0.6s ease;
    margin-left: 5px;
    text-align: center;
    cursor: pointer;
}

    .multi-search-close:hover {
        background: #d67500;
    }

.check-all {
    padding: 5px 5px;
    color: #fff;
    background: #535353;
}

/*.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}*/

.multi-select-check {
    display: block;
    position: relative;
    padding-left: 30px;
    padding-top: 3px;
    margin-bottom: 3px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 !important;
}

    .multi-select-check input:checked ~ .multicheckmark {
        background-color: #209b60;
    }

.check-all .multicheckmark {
    background-color: #FFF;
}

.multi-select-check input {
    position: absolute;
    opacity: 0;
    width: 15px;
    height: 15px;
    top: -1px;
    cursor: pointer;
    width: inherit !important;
}

.multicheckmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 2px;
}

.list .items-list {
    list-style-type: none;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px 0 0 0 !important;
    margin: 0;
}

    .list .items-list li {
        margin: 0;
        width: 100%;
        padding: 0;
        border-bottom: solid 1px #C7C6C7;
        padding: 5px;
        background-color: #fff;
    }

        .list .items-list li:last-child {
            border: none;
        }

.multi-select-check input:checked ~ .multicheckmark:after {
    display: block;
}

.multi-select-check .multicheckmark::after {
    left: 7px;
    top: 2px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.multicheckmark:after {
    content: "";
    position: absolute;
    display: none;
}







.form-group input {
    width: 100%;
    padding: 0 5px;
    font-size: 14px;
    border: 1px solid #adadad !important;
    height: 35px;
    border-radius: 3px;
}

select.form-control {
    display: block;
    width: 100%;
    padding: 0 5px;
    /*background-color: #fff;*/
    height: 35px;
    border-radius: 3px;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #adadad !important;
    -webkit-appearance: button !important;
    -moz-appearance: button !important;
    position: relative;
}

    select.form-control::before {
        content: ">";
        position: absolute;
        top: 4px;
        left: 17px;
        z-index: 11;
        display: block;
        width: 25px;
        height: 25px;
        color: #000;
        background: red;
        border-top: 2px solid #000;
        border-left: 2px solid #000;
    }




.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch {
    float: left;
    position: relative;
    display: inline-block;
    width: 30px;
    height: 12px;
    margin: 0;
    margin-right: 5px;
    margin-top: 5px;
}

.form-group label.switch-label {
    font-weight: 600;
    /* margin: 8px 0 4px 0; */
    letter-spacing: 0.5px;
    font-size: 18px;
    color: #000;
}

.form-group.job-type {
    padding: 10px 0;
    margin-bottom: 0;
}

.slider.round:before {
    border-radius: 50%;
}

.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 1px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.form-group button.job-search-btn {
    background: #ea4c89;
    border: 0;
    color: #fff;
    padding: 5px 40px;
    border-radius: 4px;
    margin: 0 auto;
    display: block;
    transition: all 0.6s ease;
}

    .form-group button.job-search-btn:hover {
        background: #b72960;
    }

.job-form-controls .form-group {
    margin-bottom: 10px;
}

.no-margin {
    margin: 0 !important;
}

.margin-top-0 {
    margin-top: 0 !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.padding-10-0 {
    padding: 10px 0 !important;
}

.padding-top-0 {
    padding-top: 0 !important;
}

.space-bar {
    height: 30px;
}

.jobs-form-header-right {
    float: right;
    text-align: right;
    padding: 2px 0 0 0;
}

    .jobs-form-header-right h6 span.location-icon {
        margin-left: 10px;
        color: var(--primary-color);
        cursor: pointer;
        transition: all 0.6s ease;
    }

        .jobs-form-header-right h6 span.location-icon:hover {
            color: #ad353c;
        }

    .jobs-form-header-right h6 {
        font-size: 15px;
        margin-bottom: 0;
        padding: 4px;
        cursor: pointer;
    }

        .jobs-form-header-right h6:hover {
            color: #000;
            text-decoration: underline;
        }

.jobs-form-body {
    /*padding: 10px 50px 10px 0;*/
    text-align: justify;
}

.job-form-footer-left {
    float: left;
}

.job-form-footer-right {
    float: right;
    padding: 5px 0;
}

.job-form-footer-left button.more-details {
    background: #04ac00;
    border-radius: 4px;
    padding: 4px 10px;
    border: 0;
    color: #FFF;
    outline: none !important;
    transition: all 0.6s ease;
}

    .job-form-footer-left button.more-details:hover {
        background: #0b7708;
    }

.job-form-footer-right p {
    color: #959595;
    font-size: 13px;
    /*font-weight: 700;*/
    margin-bottom: 0;
}

.job-form-container {
    margin-bottom: 20px;
    border-bottom: 1px solid #d8d8d8;
    padding: 0px 0 25px 0;
}

.jobs-form-header {
    color: #000;
    margin-bottom: 8px;
}

.full-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
}

.part-time {
    font-size: 18px;
    font-weight: 700;
    color: #ff8213;
}

.jobs-form-header-left h6.web-form-title {
    font-size: 16px;
}

/*.jobs-form-header-left h5.web-form-title {
    color: #000;
    font-weight: normal;
}*/


/*--------------------- Webinar ---------------------------*/
.web-form-inner-body.webinar {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}


.dashboard-mid-section.webinar {
    padding: 30px 25px 0 0px;
}

.webina-inner-section {
    max-height: calc(100vh - 368px);
    overflow-y: auto;
    padding: 0 18px;
    width: 86%;
}

.web-form-title.webinar {
    color: #000;
}

.webinar-container {
    width: 100%;
}

.webinar-video-section {
    width: 100%;
    height: 250px;
    border: 2px solid #e6e6e6;
    margin-top: 8px;
    border-radius: 15px;
    background: #666;
    overflow: hidden;
    /*margin-bottom: 30px;*/
    position: relative;
}

    .webinar-video-section img {
        width: 100%;
        height: 100%;
        border-radius: 15px;
    }

.video-top-layer {
    position: absolute;
    top: 0;
    left: 17px;
    width: 93%;
    height: 246px;
    margin-top: 8px;
    border-radius: 15px;
    background: transparent;
    padding: 20px 30px;
}

    .video-top-layer.custom {
        width: 100%;
        left: 0;
        top: 0;
        height: auto !important;
        background: rgba(0, 0, 0, 0.8);
        padding: 85px 15px;
    }

        .video-top-layer.custom ul li {
            color: var(--primary-color) !important;
        }

        .video-top-layer.custom .webinar-vidoe-time {
            text-align: center;
        }

.video-footer-left {
    float: left;
}

.video-footer-right {
    float: right;
}

.webinar-vidoe-time.custom-1 {
    text-align: right;
}

    .webinar-vidoe-time.custom-1 ul {
        margin: 0;
    }

        .webinar-vidoe-time.custom-1 ul li {
            color: var(--primary-color) !important;
            font-size: 15px;
            padding: 0;
        }

            .webinar-vidoe-time.custom-1 ul li span {
                color: #000;
                font-size: 10px;
            }



.webinar-vidoe-date {
    font-weight: 700;
    font-size: 22px;
    color: #42bb40;
    margin-bottom: 15px;
}

.webinar-vidoe-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 10px;
}

    .webinar-vidoe-title span {
        font-size: 30px;
    }

.webinar-vidoe-time {
}

    .webinar-vidoe-time ul {
        padding: 0;
    }

        .webinar-vidoe-time ul li {
            list-style-type: none;
            display: inline-block;
            text-align: center;
            font-size: 25px;
            font-weight: bold;
            padding: 0 10px;
        }

            .webinar-vidoe-time ul li span {
                display: block;
                font-size: 15px;
                font-weight: normal;
                color: #fff;
            }

            .webinar-vidoe-time ul li.day {
                color: #e100ff;
            }

            .webinar-vidoe-time ul li.hours {
                color: #ff6a00;
            }

            .webinar-vidoe-time ul li.minutes {
                color: #ec398b;
            }

            .webinar-vidoe-time ul li.seconds {
                color: #f7b205;
            }



    .webinar-vidoe-time.custom {
        margin-top: -34px;
    }

        .webinar-vidoe-time.custom p {
            font-size: 13px;
            text-align: center;
            margin: 0;
        }

        .webinar-vidoe-time.custom ul li span {
            color: #5e5e5e;
        }

        .webinar-vidoe-time.custom ul li {
            font-size: 16px;
            float: left;
        }

            .webinar-vidoe-time.custom ul li span {
                font-size: 10px;
            }

.text-button {
    color: #008000;
    background: none;
    border: 0;
    padding: 0;
    outline: none;
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

    .text-button:hover {
        text-decoration: none;
    }
/*------------- Profile -------------------*/

/*.web-form-header.profile {
    margin-bottom: 20px;
}*/

.profile-tab-section {
}

    .profile-tab-section ul {
        padding: 0;
        padding-left: 10px;
    }

        .profile-tab-section ul li {
            display: block;
            transition: all 0.6s ease;
            background: #f5f5f5;
            border-bottom: 4px solid #FFFFFF;
        }

            .profile-tab-section ul li a {
                color: #8f8f8f;
                text-decoration: none;
                font-size: 15px;
                font-weight: 500;
                cursor: pointer;
                padding: 4px;
                transition: all 0.6s ease;
                width: 100%;
                display: block;
            }

                .profile-tab-section ul li a:hover {
                    color: #3a9bca;
                    position: relative;
                    transition: all 0.6s ease;
                }

                    .profile-tab-section ul li a:hover:after {
                        content: "";
                        position: absolute;
                        height: 28px;
                        width: 4px;
                        background: var(--secondary-color);
                        left: -8px;
                        bottom: 1px;
                    }

                .profile-tab-section ul li a.active {
                    background: var(--secondary-color);
                    color: #FFFFFF;
                    position: relative;
                    font-weight: 600;
                }

                    .profile-tab-section ul li a.active:hover {
                        color: #FFFFFF;
                    }

                    .profile-tab-section ul li a.active:after {
                        content: "";
                        position: absolute;
                        height: 28px;
                        width: 4px;
                        background: var(--secondary-color);
                        left: -8px;
                        bottom: 1px;
                    }

.profile-tab-section-group {
    height: calc(100vh - 157px);
    padding: 0 15px 0 0;
    position: relative;
    overflow: hidden;
}

    .profile-tab-section-group .profile-info {
        height: calc(100vh - 157px);
    }

.profile-info {
    border: 1px solid #e7e7e7;
    padding: 5px;
    /*margin-bottom: 25px;*/
    height: calc(100vh - 245px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

    .profile-info .web-form-header {
        padding: 0 10px;
        border-radius: 0;
        padding: 8px 10px;
    }

.vertical-slide-tab {
    position: absolute;
    width: 100%;
    top: 0;
    height: calc(400vh - 960px);
    transition: all 0.6s ease;
}

.section-0 .vertical-slide-tab {
    top: 0%;
}

.section-1 .vertical-slide-tab {
    top: -100%;
}

.section-2 .vertical-slide-tab {
    top: -200%;
}

.section-3 .vertical-slide-tab {
    top: -300%;
}

.static-label {
    font-weight: 700;
    margin: 0;
}

.dynamic-label {
    display: block;
    word-wrap: break-word;
}

.profile-info-group {
    padding: 20px 10px;
    display: block;
    float: left;
    width: 100%;
}

    .profile-info-group.has-btns {
        height: calc(100vh - 251px);
        overflow-y: auto;
        padding-right: 15px;
    }


.profile-info-left {
    padding: 10px;
    float: left;
    width: 190px;
}

.profile-pitcure {
    width: 100px;
    height: 100px;
    background: #8f8f8f;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 10px;
}

    .profile-pitcure img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden;
    }

.profile-info-btn {
    background: #3b865d;
    color: #fff;
    letter-spacing: 0.5px;
    border-radius: 5px;
    border: 0;
    padding: 4px 15px;
    display: block;
    margin: 0 auto;
    outline: none !important;
    transition: all 0.6s ease;
    font-weight: 700;
    font-size: 14px;
}

    .profile-info-btn:hover {
        background: #337450;
    }

.profile-info-right {
    float: right;
    width: calc(100% - 190px);
    border-left: 2px solid #e7e7e7;
    /*padding: 10px 30px 0px 35px;*/
    padding: 10px 0px 0px 30px;
}

    .profile-info-right .bar-code .qr-code-scan div {
        margin-left: -10px;
    }

.form-group .profile-qr-code {
    /*width: 60px;
    height: 60px;*/
    background: #e6e6e6;
    float: left;
    margin-right: 20px;
    border-radius: 3px;
}

    .form-group .profile-qr-code img {
        width: 100%;
        height: 100%;
        cursor: pointer;
        border-radius: 3px;
    }

.contact-details a {
    font-size: 20px;
    padding-bottom: 10px;
}



.profile-button-section {
    position: absolute;
    padding: 10px;
    background: #f5f5f5;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e7e7e7;
}

.profile-info-group label {
    font-size: 14px;
}



/*------------ Notification Start Here --------------*/

.notification-box {
    width: 250px;
    height: 265px;
    padding: 20px 0px 0px 0px;
    background: transparent;
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: none;
}

.notification-box-inner {
    width: 100%;
    height: 100%;
    background: #313449;
    border-radius: 25px 0 25px 0;
    padding: 0px 10px 10px 10px;
    text-align: center;
    color: #fff;
}

    .notification-box-inner label {
        width: 100px;
        height: 40px;
        background: #8f8f8f;
        border-radius: 4px;
        margin-top: -20px;
        margin-bottom: 15px;
    }

        .notification-box-inner label img {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

    .notification-box-inner h4 {
        margin-bottom: 15px;
    }

    .notification-box-inner p {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 25px;
    }

    .notification-box-inner button {
        background: none;
        border: 0;
        font-size: 20px;
        color: #ff8213;
        cursor: pointer;
        outline: none !important;
    }

































/*For Modal Popup Start*/
/*.modal.fade:not(.show) {
    opacity: 1 !important;
}*/

.fade.in {
    opacity: 1;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.7;
}

body > .modal.fade + .modal-backdrop {
    z-index: 1060 !important;
}

body > .modal.fade {
    z-index: 1070 !important;
}

.modal .modal-content.top-0 {
    top: 0 !important;
}

.modal .modal-content {
    top: 50px !important;
    border-radius: 0;
}

.modal .modal-lg .modal-content, .modal .modal-xxl .modal-content, .modal .modal-md .modal-content {
    top: 0px !important;
    border-radius: 30px !important;
}

.modal-md {
    max-width: 600px;
}

.modal-lg {
    max-width: 1100px;
}

.modal-xxl {
    max-width: 1300px !important;
    padding: 0 10px !important;
}


.alert-popup {
    box-shadow: 0 0 10px #fff;
}

.alert-popup-header {
    /*background: linear-gradient(to right, #F15C5E, #A185BF);*/
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 10px;
}

    .alert-popup-header h3 {
        font-size: 16px;
    }

.alert-popup-body {
    padding: 25px 10px;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    text-align: center;
}

    .alert-popup-body p {
        font-size: 15px;
        color: #04ac00;
        margin-bottom: 0;
    }

    .alert-popup-body span {
        display: block;
        font-size: 30px;
        text-align: center;
    }

    .alert-popup-body img {
        max-width: 100%;
    }

.alert-popup-footer {
    padding: 7px 10px;
    text-align: right;
}

.alert-popup-btn {
    border: 1px solid var(--primary-color);
    padding: 5px 35px;
    border-radius: 5px;
    outline: none !important;
    color: #fff;
    background: var(--secondary-color);
}

    .alert-popup-btn:hover {
        background: #fff;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        /*box-shadow: 0 0 10px #1a3561;*/
    }

.error p {
    color: #1a3561;
}

.confirmation-msg p {
    color: #F15C5E;
}


/*  HTML Letter   */
.popup-letter {
    position: relative;
    height: calc(100vh - 144px);
    padding: 20px;
    overflow-y: auto;
    color: #000;
}

.popup-letter-btns {
    position: relative;
    height: 52px;
    padding: 10px 20px;
    overflow: hidden;
    text-align: center;
    background: #f1f1f1;
}

.popup-letter table {
    width: 100%;
}

.leater-header {
    font-size: 18px;
    text-align: center;
    width: 100%;
    color: #000;
    font-weight: bold;
}

.popup-letter table table td, .popup-letter table table th, .cell-padding {
    padding: 4px;
    border-color: #666;
}

.popup-letter table table th {
    background: #333;
    color: #ddd;
    border-color: #666;
}

.popup-letter .letter-table tr:nth-child(odd) {
    background: #eee;
}

.popup-letter .letter-table.background-color-none tr:nth-child(odd) {
    background: none;
}

.popup-registration-footer {
    color: #116644;
}

.popup-letter table {
    padding: 0;
    font-weight: 400;
    color: #000;
}

.letter-title {
    font-weight: 600;
    background: #000;
    color: #FFF;
    font-size: 18px;
    text-transform: uppercase;
    padding: 6px;
}

    .letter-title h4 {
        font-size: 18px;
        margin: 0;
    }

.letter-sub-title {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.letter-bold {
    font-weight: 600;
}

.tr-border {
    border-top: 1px solid #000;
}

.custom-bottom-margin .data-table-section {
    margin-bottom: 20px !important;
}



/*For Modal Popup End*/

/*---------------- Map Popup Form Start Here ------------------*/

.map-popup-form {
    padding: 10px 20px 20px 20px;
    background: #fff;
    border-radius: 10px !important;
}

.map-container {
}

.map-popup-left {
    float: left;
    width: calc(100% - 400px);
    height: calc(100vh - 135px);
    overflow-y: auto;
}

.map-popup-right {
    float: right;
    width: 400px;
    color: #000;
    height: calc(100vh - 135px);
    overflow-y: auto;
    padding: 0 10px;
}




/*---------------- Map Popup Form End Here ------------------*/


.highlightedText {
    background: yellow;
}








.web-form-inner-header.custom {
    padding: 0;
    /*padding-bottom: 20px;*/
}

    .web-form-inner-header.custom .filter-information {
        float: left;
        /*padding: 10px 0 10px 0;*/
    }

        .web-form-inner-header.custom .filter-information ul li {
            padding: 5px 15px 5px 0px;
        }

.subjects-group {
}

    .subjects-group ul {
        margin: 0;
        padding: 10px 0 0 0;
    }

        .subjects-group ul li {
            float: left;
            vertical-align: top;
            width: 25%;
            padding: 0px 10px 10px 0px;
            list-style: none;
        }


.status-bg-pass {
    background: #cdeecc !important;
    border: 1px solid #228C22 !important;
}

.status-bg-failed {
    background: #ffcccc !important;
    border: 1px solid #FF0000 !important;
}

.status-bg-absent {
    /*background: rgba(255, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 0, 0, 0.5) !important;*/
    background: #ffe4b2 !important;
    border: 1px solid #FFA500 !important;
}

.status-bg-1 {
    background: #ccf !important;
    border: 1px solid #5252ff !important;
}

.status-bg-2 {
    background: #e8d5f9 !important;
    border: 1px solid #8A2BE2 !important;
}

.status-bg-3 {
    background: #dfecec !important;
    border: 1px solid #5F9EA0 !important;
}

.status-bg-4 {
    background: #ffef99 !important;
    border: 1px solid #d2b205 !important;
}

.status-bg-5 {
    background: #dabbbb !important;
    border: 1px solid #A52A2A !important;
}

.status-bg-6 {
    background: #cdf6f6 !important;
    border: 1px solid #04d0d0 !important;
}

.status-bg-7 {
    background: #eadab5 !important;
    border: 1px solid #B8860B !important;
}

.status-bg-8 {
    background: #d7feb2 !important;
    border: 1px solid #75e607 !important;
}

.status-bg-9 {
    background: #ffccff !important;
    border: 1px solid #FF00FF !important;
}

.status-bg-10 {
    background: #d9d9d9 !important;
    border: 1px solid #C0C0C0 !important;
}















.subject-section {
    border: 1px solid #ccc;
    width: 100%;
    min-height: 180px;
    padding: 6px;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    background: #afffd9;
    border-radius: 5px;
    cursor: pointer;
}

    .subject-section p {
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 600;
    }

    .subject-section h5 i {
        font-size: 10px;
        padding-right: 5px;
    }

.yellow-box {
    background: #fed96f;
}
/*.subject-section.pass::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid var(--secondary-color);
    border-left: 20px solid transparent;
    right: 0;
    top: 0;
}*/
.subject-section h3 {
    color: #000;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}

.subject-section-date {
    position: absolute;
    bottom: 0;
    padding: 5px 0;
}

    .subject-section-date p {
        font-size: 14px;
        margin: 0;
    }

.subject-section h5 {
    font-size: 13px;
    padding: 10px 0;
    color: #409fcc;
}

    .subject-section h5 i {
        color: #409fcc;
    }

.course-details-left {
    float: left;
    width: calc(100% - 216px);
    padding: 0 20px 0 0;
    /*width: 75%;*/
    /*background: grey;*/
}

.course-details-right {
    float: right;
    width: 216px;
    /*width: 25%;*/
    padding: 35px 10px 10px 10px;
}

    /*.course-details-left.query-form {
    width: 80%;
}*/

    .course-details-right.query-form {
        width: 20%;
    }


.exam-details-form {
    /*padding: 0 10px 0px 0;*/
}

.exam-details-group p {
    margin-bottom: 5px;
}

.exam-details-group label {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.exam-details-section {
    border: 1px solid #ccc;
    padding: 5px 7px;
    margin-bottom: 10px;
    border-radius: 4px;
    cursor: default;
}
    /*.exam-details-section:last-child{
    margin-bottom: 0;
}*/

    .exam-details-section h6 {
        margin: 0 0 10px 0;
        font-size: 14px;
    }

    .exam-details-section p {
        font-size: 14px;
        line-height: 18px;
        margin: 0;
    }

    .exam-details-section .location-icon {
        float: right;
        padding: 15px 5px 5px 5px;
        cursor: pointer;
        color: #04ac00;
    }

.custom-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .custom-flex .exam-details-section .location-icon {
        font-size: 15px;
        padding: 5px 0px 3px 5px;
    }

.exam-details-section button {
    /*padding:0px 10px;*/
    background: #649aff;
    font-size: 14px;
    border: 0;
    color: #fff;
    border-radius: 3px;
    outline: none !important;
}

.exam-details-section .btn-green {
    background: #04ac00;
    outline: none !important;
}

.exam-details-section ul.exam-dates {
    padding: 0;
    margin: 0;
}

.exam-details-section > ul.exam-dates > li {
    display: inline-block;
    list-style-type: none;
    font-size: 14px;
    padding: 0 10px 0 0;
    font-weight: 700;
}

    .exam-details-section > ul.exam-dates > li > span {
        color: var(--secondary-color);
        display: block;
    }

.course-details-left-inner {
    /*max-height: calc(100vh - 295px);
    overflow-y: auto;*/
}

.exam-dates p a {
    font-size: 14px;
    font-weight: 600;
}

.discount-btn {
    padding: 2px 6px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.6s ease;
}


/*-------------- Subject Popup start here -----------------*/
.subject-popup {
    position: absolute;
    width: 100%;
    background: #FFF;
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
    /*padding: 15px 0 15px 10px;*/
    display: none;
}

    .subject-popup.active {
        display: block;
    }

.subject-popup-inner {
    height: calc(100vh - 106px);
    overflow-y: auto;
    padding: 0 15px 35px 15px;
}

.subject-popup .top-header {
    /*padding: 4px 10px;*/
    /*background: #f1f1f1;*/
}

.subject-popup-header {
    height: 40px;
    padding: 8px 15px 5px 15px;
    overflow: hidden;
}

.subject-popup-header-left {
    float: left;
}

.subject-popup-header-right {
    float: right;
}

.subject-popup-header .title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.subject-popup-close {
    background: var(--primary-color);
    color: #fff !important;
    padding: 1px 5px 1px 5px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    outline: none !important;
    text-decoration: none;
}

    .subject-popup-close:hover {
        color: #fff;
        background: #3b865d;
    }

.popup-left {
    float: left;
}

    .popup-left .title {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.8px;
        color: var(--primary-color);
    }

.popup-right a.subject {
    color: #000;
    cursor: pointer;
}

    .popup-right a.subject i {
        font-size: 17px;
        margin-right: 10px;
    }

.popup-right {
    float: right;
    /*padding-top: 2px;*/
}

    .popup-right p {
        margin: 0;
        font-size: 11px;
    }

        .popup-right p span {
            font-weight: 700;
        }

    .popup-right button {
        padding: 2px 6px;
        background: var(--primary-color);
        border: 1px solid var(--primary-color);
        color: #fff;
        font-size: 15px;
        border-radius: 4px;
        transition: all 0.6s ease;
    }

        .popup-right button:hover {
            box-shadow: 0 0 10px var(--primary-color);
        }






.main-header {
    padding: 6px 8px;
    background: var(--secondary-color);
    color: #fff;
    cursor: default;
}

    .main-header .popup-left h5 {
        font-size: 15px;
        margin-bottom: 5px;
    }

.popup-right.custom-popup-head-btn {
    padding: 25px 15px;
}

    .popup-right.custom-popup-head-btn i {
        font-size: 22px;
    }

    .popup-right.custom-popup-head-btn a i {
        color: #fff;
    }


.header-bottom {
    background: #eef3f9;
    padding: 5px 10px;
    cursor: default;
}

.persentage-section {
    padding: 0;
    margin: 0;
    color: #000;
    display: flex;
}

    .persentage-section li {
        display: inline-block;
        list-style-type: none;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
    }

.top-header.table-header {
    padding: 6px 0;
}

    .top-header.table-header p {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    .top-header.table-header .popup-right button {
        background: none;
        border: 1px solid #ccc;
    }

.assignment-box {
    float: left;
    width: 100%;
    border: 1px solid #ccc;
    /*height: 90px;*/
    margin-bottom: 20px;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

    .assignment-box:hover {
        background: #f5f5f5;
    }

.box-one ul {
    padding: 0;
    margin: 0;
    display: flex;
}

    .box-one ul li {
        display: inline-block;
        width: 25%;
        padding: 4px 5px;
        vertical-align: top;
        border-right: 1px solid #ccc;
    }

        .box-one ul li:last-child {
            border: none;
        }

        .box-one ul li p {
            font-size: 14px;
            min-height: unset !important;
            font-weight: 600;
        }

            .box-one ul li p span {
                display: block;
                padding: 0;
            }

.custom-li-width ul li:nth-child(4n-2) {
    width: 30% !important;
}

.custom-li-width ul li:nth-child(4n) {
    width: 20% !important;
}

.box-one {
    float: left;
    border-bottom: 1px solid #ccc;
    width: 100%;
    background: #f5f5f5;
    /*justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;*/
}

.box-one-inner {
    float: left;
    padding: 10px 10px 5px 10px;
}

    .box-one-inner label {
        margin: 0;
    }

    .box-one-inner .title {
        font-size: 15px;
        color: #000;
        font-weight: 600;
        float: left;
        padding: 3px 0 7px 0;
    }

.box-one-inner-right {
    float: right;
}

    .box-one-inner-right .dropdown-menu {
        width: 250px;
        left: -200px !important;
        top: 34px !important;
        transform: inherit !important;
    }

.dropdown-menu a.dropdown-item {
    width: 100%;
    white-space: inherit !important;
    line-height: 20px;
    padding: 4px 10px;
}

.box-one-inner-right .box-one-inner .dropdown button {
    border-radius: 5px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

    .box-one-inner-right .box-one-inner .dropdown button:focus {
        box-shadow: 0 0 20px var(--primary-color) !important;
    }

.box-one-inner-right .box-one-inner .dropdown .dropdown-menu {
    z-index: 1;
}

    .box-one-inner-right .box-one-inner .dropdown .dropdown-menu a {
        transition: all 0.4s ease;
    }

        .box-one-inner-right .box-one-inner .dropdown .dropdown-menu a:hover {
            background: var(--primary-color);
            color: #fff;
        }

            .box-one-inner-right .box-one-inner .dropdown .dropdown-menu a:hover i {
                color: #fff !important;
            }

        .box-one-inner-right .box-one-inner .dropdown .dropdown-menu a:active {
            background: var(--primary-color);
        }

.box-one p {
    margin: 0;
    /*text-align: center;*/
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.box-one-inner p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0;
}

    .box-one-inner p span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.box-one p span {
    /*display:block;*/
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0 5px;
}

.box-one-inner.border-right {
    border-right: 1px solid #ccc;
    padding-bottom: 11px;
}

.box-two {
    /*padding: 5px 10px 10px 10px;*/
    float: left;
    width: 100%;
}

    .box-two.full-width {
        width: 100% !important;
        border-right: 0 !important;
    }

/*.box-two .title{
    font-size:18px;
    color: #000;
    font-weight: 600;
    float: left;
    padding: 0px 0 10px 0;
}*/

.custom-title {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 10px;
}

.title.sub-title {
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
}

    .title.sub-title a {
        color: var(--primary-color);
    }

        .title.sub-title a i {
            font-size: 14px;
        }

.box-two ul {
    padding: 0;
    margin: 0;
}

    .box-two ul li {
        list-style-type: none;
        display: inline-block;
        /*padding-right: 25px;*/
        vertical-align: top;
        /*width: 25%;*/
        width: 19%;
        /*float: left;*/
    }

        .box-two ul li p {
            margin: 0;
            text-align: left;
            color: var(--secondary-color);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0;
            /*border-top: 1px solid #ccc;*/
            padding: 10px;
            min-height: 57px;
            cursor: default;
        }

            .box-two ul li p span {
                display: block;
                color: #000;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

                .box-two ul li p span.upload {
                    color: #67cc64;
                }

                .box-two ul li p span.pending {
                    color: var(--secondary-color);
                }

.box-two.custom ul li {
    height: auto;
    width: 25%;
}

 .row-6 ul li{
        width: 16.66% !important;
}
.nowrap-text ul li p {
    white-space: inherit;
    /*overflow: auto;*/
    text-overflow: inherit;
    min-height: 70px;
}

    .nowrap-text ul li p span {
        white-space: inherit;
        /*overflow: auto;*/
        text-overflow: inherit;
        line-height: 15px;
        font-size: 11px;
    }

.custom-width {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-three {
    float: right;
    padding: 30px 20px;
    font-size: 20px;
    /*border-left: 1px solid #ccc;*/
    height: 100%;
    width: 55px;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
}

    .box-three a i {
        color: #000;
    }
/*.box-four{
    float: right;
    padding: 27px 20px;
    font-size: 25px;
    border-left: 1px solid #ccc;
    height: 100%;
    width: 55px;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
}
.box-four a i{
    color: #000;
}*/
.re-sub {
    color: #dc81ee !important;
}

.marks-view-box .box-two ul li {
    width: 25%;
    height: 57px;
    overflow: hidden;
}

    .marks-view-box .box-two ul li p {
        padding: 5px;
    }

/*---------------------------- add form -------------------------------*/
.add-form {
    position: fixed;
    width: 350px;
    background: #fff;
    border-radius: 15px 0 0 15px;
    right: -390px;
    top: 0;
    box-shadow: 0px 0px 9px #888888;
    z-index: 111;
    transition: all 0.6s ease;
}

    .add-form.m {
        width: 600px !important;
        right: -630px;
    }

    .add-form.xl {
        width: 1000px !important;
        right: -1030px;
        z-index: 999;
        padding-left: 0 !important;
    }

    .add-form.xxl {
        width: calc(100% - 380px) !important;
        right: -100%;
    }

    .add-form.xxxl {
        width: 90% !important;
        right: -100%;
    }

.add-form-header {
    padding: 10px 10px 10px 40px;
    background: #f2f2f2;
    cursor: default;
    border-bottom: 1px solid #ccc;
}

.sub-header {
    color: #FFFFFF;
    padding: 4px 10px;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.add-form.active, .add-form.show {
    right: 0px;
}

.add-form-close-btn {
    position: absolute;
    background: var(--secondary-color);
    border: 0;
    top: 0px;
    left: -20px;
    font-size: 16px;
    color: #fff;
    padding: 6px 15px;
    border-radius: 15px 0px 15px 0px;
    outline: none !important;
    cursor: pointer;
}

    .add-form-close-btn:hover {
        background: #19774a;
    }

.add-form-header h4 {
    margin: 0;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.add-form-body {
    padding: 15px 15px;
    height: calc(100vh - 88px);
    /*height: calc(100vh - 88px);*/
    overflow-y: auto;
}
.add-form-body.confirm-section-active{
    height: calc(100vh - 168px);
}

.confirm-section {
  height: 80px;
  padding: 20px;
  display: flex;
  align-items: center;
}
.add-form-group {
    padding: 10px 0 15px 0;
}

    .add-form-group label {
        font-size: 13px;
        font-weight: 600;
        color: var(--secondary-color);
    }

    .add-form-group p {
        margin: 0;
        font-size: 15px;
    }

        .add-form-group p span {
            display: block;
            color: var(--secondary-color);
            margin-bottom: 6px;
            font-size: 13px;
            font-weight: 600;
        }

    .add-form-group ul {
        padding: 0;
        margin: 0;
    }

        .add-form-group ul li {
            list-style-type: none;
            display: inline-block;
            width: 32%;
        }

    .add-form-group textarea {
        width: 100%;
        padding: 10px;
    }
/*.updload-div{
    width: 150px;
    height: 140px;
    border: 1px solid #ccc;
    background: #f1f1f1;
}*/

.add-form-footer {
    padding: 8px 15px;
    text-align: right;
    color: #fff;
    background: #f2f2f2;
    border-top: 1px solid #ccc;
    border-radius: 0 0 0 15px;
}

    .add-form-footer button {
        margin-left: 10px;
        border-radius: 5px;
    }

    /*.add-form-footer button{
    background: none;
    width: 100%;
    border: 0;
    color: #fff;
    outline: none;
}*/
    .add-form-footer h5 {
        font-weight: normal;
        margin: 0;
    }

.web-form-inner-header.custom .filter-information ul li span {
    font-size: 16px;
}

.web-form-inner {
    height: calc(100vh - 114px);
    /*height: calc(100vh - 126px);*/
    /*max-height: calc(100vh - 183px);*/
    /*max-height: calc(100vh - 235px);*/
    overflow-y: auto;
    padding: 10px 15px 10px 15px;
}

.web-form-inner-1 {
    height: calc(100vh - 168px);
    overflow-y: auto;
    padding: 10px 15px 10px 15px;
}

.web-form-inner-3 {
    float: left;
    width: 100%;
    padding: 10px 15px 10px 15px;
}

.web-form-header {
    padding: 11px 15px 10px 15px;
    /* height: 45px; */
    overflow: hidden;
    float: left;
    width: 100%;
    background: #f1f1f1;
    border-radius: 20px 20px 0px 0px;
}

.web-form-inner-full {
    float: left;
    width: 100%;
    height: calc(100vh - 115px);
    overflow-y: auto;
}

.web-form-inner-full-left {
    float: left;
    width: calc(100% - 230px);
}

.web-form-inner-full-left-inner {
    padding: 0 15px;
    overflow-y: auto;
    height: calc(100vh - 115px);
}

.web-form-inner-full-right {
    float: right;
    width: 230px;
}

.web-form-inner-full-right-inner {
    padding: 0 15px 0 15px;
    overflow-y: auto;
    height: calc(100vh - 115px);
    background: #f5f5f5;
    border-top: 2px solid var(--secondary-color);
    padding-top: 10px;
}
















.click-to-msg {
    position: fixed;
    bottom: 6px;
    right: 6px;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}

    .click-to-msg button {
        background: var(--primary-color);
        border: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        outline: none !important;
        color: #fff;
        font-size: 18px;
    }

        .click-to-msg button:hover {
            box-shadow: 0px 0px 3px #000;
        }

        .click-to-msg button img {
            width: 100%;
            height: 100%;
            border-radius: 25px;
        }

    .click-to-msg.two {
        right: 8px;
    }

/*-------------  Request form start here  -------------*/

.portal-table .assignment-box .box-two {
    width: calc(100% - 70px);
    height: 100%;
    overflow: hidden;
    border-right: 1px solid #ccc;
}

.portal-table .assignment-box .box-three {
    float: right;
    padding: 12px 0;
    height: 100%;
    /*border-left: 1px solid #ccc;*/
}

.portal-table .assignment-box .box-two ul li p {
    padding: 10px 10px;
}







.assignment-box.request {
    /*height: 65px;*/
    font-size: 14px;
}

    .assignment-box.request .box-one {
        width: 55px;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .assignment-box.request .box-two ul {
        margin: 0;
        padding: 0;
        /*display: flex;*/
    }

        .assignment-box.request .box-two ul li {
            font-size: 13px;
            padding: 0;
            /* padding-right: 20px; */
            /*width: 50%;*/
        }

.top-header.request {
    padding: 0 0 10px 0;
    width: 100%;
    float: left;
    cursor: default;
}

    .top-header.request ul {
        float: left;
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .top-header.request ul li {
            padding: 0;
            font-size: 14px;
            width: 25%;
            padding: 0 2% 10px 0;
            float: left;
            list-style-type: none;
        }

            .top-header.request ul li:last-child {
                padding-right: 0;
            }

            .top-header.request ul li select:focus {
                outline: none !important;
            }

            .top-header.request ul li span {
                display: block;
                color: #333;
                margin-bottom: 5px;
            }

            .top-header.request ul li select {
                width: 100%;
                padding: 3px 0;
                border: 1px solid #adadad;
                border-radius: 4px;
            }

            .top-header.request ul li.left-align button.new-request {
                float: none;
            }

.assignment-box.request .box-three {
    width: 70px;
    /*width: calc(100% - 686px)*/;
    /*white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.box-three ul.buttons-section {
    padding: 0;
    margin: 0;
    text-align: center;
}

    .box-three ul.buttons-section li {
        display: inline-block;
        padding: 0 5px;
    }

        .box-three ul.buttons-section li button {
            background: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            border: 1px solid #ccc;
            font-size: 15px;
            outline: none;
        }

.assignment-box.request .box-three.single-btn {
    /*width: calc(100% - 780px);*/
    padding: 15px 0px;
}

.exam-details-section.requests {
    padding: 0;
    border: none;
}

    .exam-details-section.requests button {
        width: 100% !important;
        padding: 15px;
        text-align: center;
        background: none;
    }

        .exam-details-section.requests button h6 {
            font-size: 14px;
        }

            .exam-details-section.requests button h6 span {
                display: block;
                padding: 10px 0 0 0;
                font-size: 20px;
            }

.exam-details-section select {
    font-size: 10px;
    width: 47%;
    border-radius: 3px;
    border: 1px solid #ccc;
}

    .exam-details-section select:focus {
        outline: none !important;
    }

.exam-details-section button.save {
    background: none;
    font-size: 15px;
    outline: none !important;
}

.exam-details-section p.coming-soon {
    font-size: 14px;
    font-weight: 600;
}

.course-details {
    width: calc(100% - 230px);
}

.course-details-right.request {
    padding: 10px;
    width: 216px;
    background: #ddd;
    min-height: calc(100vh - 135px);
}

.course-details-left.request {
    /*width: 80%;*/
    width: calc(100% - 216px);
}

.course-details-right.request .course-details-left-inner .exam-details-form {
    padding: 0;
}

.header-left {
    float: left;
}

.header-right {
    float: right;
    text-align: right;
}

    .header-right .web-form-title {
        font-size: 18px;
    }

    .header-right.drop-down {
        width: 170px;
    }

        .header-right.drop-down select {
            width: 100%;
        }

    .header-right .requests-btn {
        padding-left: 15px;
    }

        .header-right .requests-btn button {
            /*border-radius:30px;*/
            border: 1px solid #ccc;
            outline: none !important;
            padding: 0 10px;
        }

.buttons-section .re-open {
    border-radius: 4px !important;
    width: 75px !important;
}

.clear-filters {
    border: 0;
    outline: none !important;
    background: none;
    font-size: 15px;
    font-weight: 700;
    color: #898989;
}

/*--------------------------- No Request Screen --------------------------------*/
.no-request-section {
    cursor: default;
    float: left;
    width: 100%;
}

.no-request-screen {
    background: url(../Images/registration-notyet.jpg);
    background-repeat: no-repeat;
    width: 100%;
    float: left;
    min-height: 200px;
    background-size: contain;
    background-position: center;
}

.no-data-found {
    background: url(../Images/no-data-found.jpg);
    background-repeat: no-repeat;
    width: 100%;
    float: left;
    min-height: 300px;
    background-size: contain;
    background-position: center;
}

.no-request-screen-text {
    text-align: center;
    width: 100%;
    float: left;
    padding: 10px;
}

    .no-request-screen-text h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .no-request-screen-text p {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 0;
    }

/*--------------------- Academic Documents -------------------------*/
.academic-document-group {
}

    .academic-document-group ul {
        padding: 0;
        margin: 0;
    }

        .academic-document-group ul li {
            display: inline-block;
            width: 25%;
            padding: 0px 10px 10px 0px;
        }




.academic-documents-grid-btn {
    background: none;
    border: 0;
    font-size: 15px;
    font-weight: 600;
    outline: none !important;
}

.academic-documents {
    border: 2px solid #f1f1f1;
    border-radius: 5px;
    padding: 5px;
    position: relative;
    width: 100%;
    min-height: 200px;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    cursor: default;
    vertical-align: top;
    display: inline-flex;
    overflow: hidden;
    background: url(../Images/book-label.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    color: #fff;
    cursor: pointer;
    transition: all 0.6s ease;
}

    .academic-documents:hover {
        background-size: 130% 130%;
        background-position: -30px -30px;
    }

    .academic-documents h6 {
        position: relative;
        width: 100%;
        word-break: break-word;
        padding: 5px;
        background: rgba(0,0,0,0.3);
        font-size: 13px;
    }

    .academic-documents::before {
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.4);
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

.documents-btn-section {
    position: absolute;
    bottom: -50px;
    width: 100%;
    left: 0;
    border-radius: 0 0px 3px 3px;
    background: var(--secondary-color);
    padding: 10px 3px;
    text-align: center;
    transition: all 0.6s ease;
}

    .documents-btn-section button {
        border: none;
        background: rgba(255,255,255,0.7);
        color: var(--secondary-color);
        font-size: 14px;
        border-radius: 0px;
        padding: 5px 10px;
        font-weight: 500;
        transition: all 0.6s ease;
        outline: none !important;
        /*margin: 0 5px;*/
    }

        .documents-btn-section button:hover {
            color: var(--secondary-color);
            background: rgba(255,255,255,1);
        }

.academic-documents:hover .documents-btn-section {
    bottom: 0px;
}

.academic-document-group {
    padding: 15px 0 0 0;
}

.academic-document-section {
    background: #f4f4f4;
    padding: 10px;
    margin-bottom: 20px;
    cursor: default;
}

    .academic-document-section ul {
    }

        .academic-document-section ul li {
            list-style: none;
            display: block;
            width: 100%;
            padding: 5px 0;
        }

            .academic-document-section ul li label {
                margin: 0;
            }

    .academic-document-section select {
        width: 100%;
        margin-bottom: 20px;
        outline: none !important;
        border-color: #adadad;
        border-radius: 4px;
    }


.re-reg-request {
    width: 100%;
}


/*   loader css     */
.loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
}

    .loader-wrapper.active {
        display: block;
    }

.loader {
    position: absolute;
    width: 100px;
    top: calc(50vh - 50px);
    left: calc(50vw - 50px);
}

    .loader:before {
        content: '';
        display: block;
        padding-top: 100%;
    }

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }

    40% {
        stroke: #0057e7;
    }

    66% {
        stroke: #008744;
    }

    80%, 90% {
        stroke: #ffa700;
    }
}

/*--------------------- Assignment Submission ---------------------------*/

.assesment-info {
    position: relative;
    height: 100%;
}

    .assesment-info button {
        height: 100%;
        outline: none !important;
    }

        .assesment-info button p {
            text-align: left;
            font-size: 15px !important;
            color: #fff;
        }

            .assesment-info button p span {
                float: right;
                padding-right: 10px;
                font-weight: 600;
                font-size: 18px;
                color: #fff;
            }

.file-upload-text {
    margin-top: 65px;
    padding: 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    float: left;
    margin-right: 20px;
}

    .file-upload-text h6 {
        font-size: 14px;
    }

    .file-upload-text p {
        font-size: 14px;
    }

        .file-upload-text p span {
            display: inline-block;
            padding-left: 5px;
            font-size: 14px;
            color: #666;
        }

    .file-upload-text button {
        background: none;
        border: 1px solid var(--secondary-color);
        font-size: 15px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.6s ease;
        outline: none !important;
    }

        .file-upload-text button:hover {
            color: #fff;
            background: var(--secondary-color);
        }

/*------------------- New Style Error message start Here----------------------*/



.error-box-latest .message .alert {
    position: relative;
    color: #fff;
    font-size: 35px;
    text-align: center;
    margin: 0 auto;
    padding: 6px 0;
}

.ModalAlertPopUp .modal-dialog .modal-content {
    background: none;
    border: 0;
}

.error-box-latest {
    width: 300px;
    min-height: 280px;
    padding: 15px 10px;
    /*right: 12%;*/
    background: linear-gradient(to bottom left, #EF8D9C 10%, #FFC39E 100%);
    border-radius: 20px;
    box-shadow: 1px 1px 7px #cbcdd3;
    margin: 0 auto;
    word-wrap: break-word;
    cursor: default;
}

    .error-box-latest .face2 {
        position: absolute;
        width: 50px;
        height: 50px;
        background: #FCFCFC;
        border-radius: 50%;
        border: 1px solid #777777;
        margin-top: 5px;
        /*top: 10%;
        left: 39%;*/
        z-index: 2;
        animation: roll 3s ease-in-out infinite;
    }

.eye {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #777777;
    border-radius: 50%;
    top: 40%;
    left: 20%;
}

.right {
    left: 68%;
}

.mouth {
    position: absolute;
    top: 43%;
    left: 41%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.sad {
    top: 49%;
    border: 2px solid;
    border-color: #777777 transparent transparent #777777;
    transform: rotate(45deg);
}

.error-box-latest .shadow {
    position: absolute;
    width: 50px;
    height: 8px;
    opacity: .5;
    background: #777777;
    /*left: 39%;*/
    top: 80px;
    border-radius: 50%;
    z-index: 1;
}

.scale {
    animation: scale 1s ease-in infinite;
}

.move {
    animation: move 3s ease-in-out infinite;
}

.error-box-latest .message {
    /*position: relative;*/
    width: 100%;
    text-align: center;
    margin-top: 30%;
}

.message h1.alert {
    margin-bottom: 0;
}

.message p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

/*Latest Warning Popup Strat Here*/
.warning-box-latest {
    background: linear-gradient(to bottom left, #ea832f 10%, #fbc330 100%);
}

    .warning-box-latest .shadow {
        background: #ccc;
    }

    .warning-box-latest .button-box {
        color: #ea832f !important;
    }
/*Latest Warning Popup End Here*/

.error-box-latest .button-box {
    /*position: relative;*/
    background: #FCFCFC;
    color: #ff657d;
    width: 50%;
    border-radius: 20px;
    /*top: 42%;*/
    margin: 0 auto;
    outline: 0;
    border: none;
    box-shadow: 2px 2px 10px rgba(119, 119, 119, 0.5);
    transition: all .5s ease-in-out;
    text-align: center;
    display: block;
    padding: 10px 0px;
    letter-spacing: 1px;
}

    .error-box-latest .button-box:hover {
        background: #efefef;
        transform: scale(1.05);
        transition: all .3s ease-in-out;
    }

@keyframes bounce {
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scale {
    50% {
        transform: scale(0.9);
    }
}

@keyframes roll {
    0% {
        transform: rotate(0deg);
        left: 25%;
    }

    50% {
        left: 60%;
        transform: rotate(168deg);
    }

    100% {
        transform: rotate(0deg);
        left: 25%;
    }
}

@keyframes move {
    0% {
        left: 25%;
    }

    50% {
        left: 60%;
    }

    100% {
        left: 25%;
    }
}

/*-------------------- New model Success Ppoup --------------------------*/

.success-box-latest button.button-box {
    font-size: 16px;
    color: #4ec07d;
    outline: none !important;
    padding: 7px;
}

/*.red {
        color: #e96075;
    }*/

.alert {
    font-weight: 700;
    letter-spacing: 5px;
}

/*p {
    margin-top: -5px;
    font-size: 0.5em;
    font-weight: 100;
    color: #5e5e5e;
}*/



.success-box-latest {
    width: 300px;
    min-height: 280px;
    padding: 10px 10px 15px 10px;
    background: linear-gradient(to bottom right, #B0DB7D 40%, #99DBB4 100%);
    border-radius: 20px;
    box-shadow: 1px 1px 30px #cbcdd3;
    perspective: 40px;
    margin: 0 auto;
    text-align: center;
    cursor: default;
}

    .success-box-latest .message .alert {
        color: #fff;
        font-size: 35px;
        text-align: center;
        padding: 6px 0;
    }

.ModalAlertPopUp .modal-dialog .modal-content {
    background: none;
    border: 0;
}




/*#error-box {
        position: absolute;
        width: 35%;
        height: 100%;
        right: 12%;
        background: linear-gradient(to bottom left, #EF8D9C 10%, #FFC39E 100%);
        border-radius: 20px;
        box-shadow: 5px 5px 20px #cbcdd3;
    }*/

.success-box-latest .face {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 20px;
    background: #FCFCFC;
    border-radius: 50%;
    border: 1px solid #777777;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    animation: bounce 0.8s ease-in infinite;
}

/*.face2 {
        position: absolute;
        width: 22%;
        height: 22%;
        background: #FCFCFC;
        border-radius: 50%;
        border: 1px solid #777777;
        top: 21%;
        left: 37.5%;
        z-index: 2;
        animation: roll 3s ease-in-out infinite;
    }*/

.eye {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #777777;
    border-radius: 50%;
    top: 40%;
    left: 20%;
}

.right {
    left: 68%;
}

.mouth {
    position: absolute;
    top: 43%;
    left: 41%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.happy {
    border: 2px solid;
    border-color: transparent #777777 #777777 transparent;
    transform: rotate(45deg);
}


.success-box-latest .shadow {
    position: absolute;
    width: 50px;
    height: 8px;
    opacity: .5;
    background: #777777;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 80px;
    border-radius: 50%;
    z-index: 1;
}

.scale {
    animation: scale 0.8s ease-in infinite;
}

.move {
    animation: move 3s ease-in-out infinite;
}

.success-box-latest .message {
    /*position: absolute;*/
    width: 100%;
    text-align: center;
    /*height: 40%;*/
    margin-top: 33%;
}

.message h1.alert {
    margin-bottom: 0;
}

.message p {
    color: #fff;
    font-size: 15px;
    line-height: 17px;
    font-weight: 600;
}

.success-box-latest .button-box {
    /*position: absolute;*/
    background: #FCFCFC;
    color: #4ec07d;
    width: 50%;
    border-radius: 20px;
    /*top: 73%;*/
    /*left: 25%;*/
    margin: 0 auto;
    outline: 0;
    border: none;
    box-shadow: 2px 2px 10px rgba(119, 119, 119, 0.5);
    transition: all .5s ease-in-out;
    letter-spacing: 1px;
}

    .success-box-latest .button-box:hover {
        background: #efefef;
        transform: scale(1.05);
        transition: all .3s ease-in-out;
    }

@keyframes bounce {
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scale {
    50% {
        transform: scale(0.9);
    }
}

@keyframes roll {
    0% {
        transform: rotate(0deg);
        left: 25%;
    }

    50% {
        left: 60%;
        transform: rotate(168deg);
    }

    100% {
        transform: rotate(0deg);
        left: 25%;
    }
}

@keyframes move {
    0% {
        left: 25%;
    }

    50% {
        left: 60%;
    }

    100% {
        left: 25%;
    }
}



/*----------------------- New Model AccessDenied popup -------------------------------*/

.ModalAlertPopUp .modal-dialog .modal-content {
    background: none;
}

.access-denied-popup {
    width: 100%;
}

.access-denied-inner {
    background: #000;
    border: 2px solid #00ffff;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 0 20px #00ffff;
    overflow: hidden;
    transition: all .5s;
}

.access-denied-header {
    /*float: left;*/
}

    .access-denied-header button {
        background: #ffff00;
        outline: none !important;
        padding: 0px 20px;
        font-weight: 600;
        border-radius: 17px 0 0 0;
        font-size: 17px;
        letter-spacing: 1px;
        border: 2px solid #000;
    }

        .access-denied-header button.close-btn {
            float: right;
            color: #00ffff;
            font-size: 14px;
            background: none;
            width: 10px;
            padding-top: 5px;
        }

.access-denied-body {
    padding: 20px 15px 10px 15px;
    color: #fff;
}

    .access-denied-body p {
        font-size: 15px;
        color: #fff;
    }

.add-footer-single-btn {
    font-size: 16px;
    border: 0;
    color: #303030;
    letter-spacing: 0.4px;
    text-align: center;
    background: none;
    font-weight: 600;
    width: 100%;
    outline: none !important;
    width: 100%;
    padding: 10px;
}






























/*--------------------------------------------- Chat Application Start Here ----------------------------------------------------*/


.chat-web-form {
    float: left;
    width: calc(100% - 20px);
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 3px #fff;
}

.chat-web-form-inner {
    min-height: calc(100vh - 100px);
}

.chat-application-body {
}

.chat-sections {
    background: #fff;
    display: block;
    float: left;
    transition: all 0.6s ease;
}

    .chat-sections.one {
        width: 50px;
        background: #1b2b3a;
        padding: 0px 0 0 0;
        min-height: calc(100vh - 65px);
        display: block;
        overflow: hidden;
        border-radius: 20px 0 0 0;
        transition: all 0.6s ease;
    }

        .chat-sections.one ul {
            padding: 0;
            margin: 0;
            text-align: center;
        }

            .chat-sections.one ul li {
                list-style-type: none;
                font-size: 22px;
                padding: 10px 0;
                transition: all 0.6s ease;
            }

                .chat-sections.one ul li:hover {
                    background: #000;
                }

                .chat-sections.one ul li.active {
                    background: #000;
                }

                .chat-sections.one ul li a {
                    font-size: 16px;
                    display: block;
                    width: 30px;
                    height: 30px;
                    margin: 0 auto;
                    line-height: 30px;
                    color: #fff;
                    border-radius: 50%;
                    background: linear-gradient(to top, #20b9e3 0%, #3782e1 100%);
                    position: relative;
                }

                    .chat-sections.one ul li a.active {
                        background: linear-gradient(to right, #f38663 0%, #fda041 100%);
                    }


    .chat-sections.users {
        background: #eef3f9;
        width: 250px;
        /*padding: 0px 0px 10px 0px;*/
        min-height: calc(100vh - 65px);
    }

.chat-users-header {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.chat-sections-left {
    float: left;
}

.chat-title {
    text-transform: uppercase;
    padding: 3px 0;
}

    .chat-title h3 {
        font-size: 22px;
        margin: 0;
        font-weight: 600;
        color: #000;
    }

.chat-sections-right {
    float: right;
    position: relative;
}

.chat-menu {
    background: #00663b;
    padding: 2px 6px;
    color: #fff;
    cursor: pointer;
    border: 0;
    border-radius: 3px;
    outline: none !important;
    transition: all 0.6s ease;
    border: 1px solid #00663b;
}

    .chat-menu:hover {
        color: #00663b;
        background: #fff;
        border: 1px solid #00663b;
    }

.filter-pop {
    background: #FFF;
    padding: 20px;
    width: 250px;
    position: absolute;
    border-radius: 10px;
    right: -260px;
    top: 0;
    display: none;
    box-shadow: 0 0 5px;
    z-index: 100;
}

    .filter-pop.filter-active {
        display: block;
    }





.chat-user-search {
    width: 100%;
    padding: 22px 0 10px 0;
}

    .chat-user-search input {
        width: 100%;
        padding: 5px;
        border-radius: 4px;
        border: 1px solid #ccc;
        outline: none !important;
    }

        .chat-user-search input:focus {
            border: 1px solid #996ddc;
        }

.chat-user-body {
    overflow-y: auto;
    max-height: calc(100vh - 184px);
}

    .chat-user-body ul {
        padding: 0;
        margin: 0;
        width: 100%;
    }

        .chat-user-body ul li {
            list-style-type: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border-bottom: 1px solid #dedddd;
        }

            .chat-user-body ul li:hover {
                background: #ccc;
            }

            .chat-user-body ul li.active {
                background: #ccc;
            }

.chat-users {
    padding: 5px 6px;
}

.chat-user-img {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #1b2b3a;
    position: relative;
}

    .chat-user-img img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

.chat-user-name {
    float: left;
    width: calc(100% - 40px);
    padding-left: 6px;
    padding-top: 8px;
    font-size: 15px;
    line-height: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    position: relative;
}

.user-profile-block {
    float: right;
    width: 210px;
    background: #212226;
    border-radius: 0 20px 0 0;
    word-wrap: break-word;
    border-right: 1px solid #212226;
}

.chat-profile-section {
    padding: 10px 10px 10px 10px;
    height: 160px;
}

.user-profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
}

.profile-name {
    padding: 10px 0px 0px 0px;
    text-align: center;
    color: #fff;
    cursor: default;
}

    .profile-name h6 {
        font-size: 13px;
        line-height: 15px;
        margin-bottom: 4px;
        max-height: 30px;
        overflow: hidden;
    }

    .profile-name p {
        color: #fff;
        font-size: 14px;
        line-height: 13px;
        margin: 0;
        max-height: 26px;
        overflow: hidden;
    }


.profile-avatar-body {
    background: #303338;
    width: 100%;
    height: calc(100vh - 225px);
    overflow-y: auto;
}

    .profile-avatar-body ul {
        padding: 0;
        margin: 0;
    }

        .profile-avatar-body ul li {
            list-style-type: none;
        }

.profile-avatar-details {
    padding: 5px 10px 5px 10px;
    cursor: default;
}

    .profile-avatar-details label {
        display: block;
        color: #75797f;
        font-size: 14px;
        margin: 0;
    }

    .profile-avatar-details span {
        display: block;
        color: #fff;
        font-size: 13px;
        line-height: 15px;
    }

.no-chat-result {
    float: left;
    width: 100%;
    color: var(--primary-color);
    padding: 15px;
    font-weight: 600;
    text-align: center;
    transition: all 0.6s ease;
}

.chat-window {
    float: right;
    width: calc(100% - 510px);
    /*padding: 5px;*/
}

.chat-wall-msg-content {
    float: left;
    width: 100%;
    height: calc(100vh - 115px);
    overflow-y: auto;
    margin-top: 0px;
    padding: 10px 5px 5px 5px;
}

.chat-wall-left-msg-text {
    float: left;
}

.chat-wall-left-msg-text, .chat-wall-right-msg-text {
    width: 80%;
    clear: both;
    padding: 5px;
}

.chat-wall-user-left {
    float: left;
}

.chat-wall-user-left, .chat-wall-user-right {
    width: 100%;
    margin: 0 0 10px 0;
    line-height: 38px;
}

.chat-wall-user-left-icon, .chat-wall-user-right-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: grey;
}

    .chat-wall-user-left-icon img, .chat-wall-user-right-icon img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        float: left;
    }

.chat-wall-text-left, .chat-wall-text-right {
    float: left;
    min-width: 50px;
    border-radius: 4px;
    color: #000;
    background: #eef3f9;
    max-width: 100%;
    word-wrap: break-word;
    /*box-shadow: 0 0 5px #bbb;*/
    /*margin-left: 20px;*/
    padding: 0 10px;
}

.chat-wall-text-left {
    position: relative;
    max-width: calc(100% - 50px);
    margin-left: 10px;
    padding: 4px 8px;
}

    .chat-wall-text-left::after {
        content: "";
        position: absolute;
        left: -10px;
        top: 8px;
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-right: 10px solid #eef3f9;
        border-bottom: 4px solid transparent;
    }

.chat-wall-text-left-time {
    width: 100%;
    float: left;
    font-size: 14px;
    padding: 0 0 0 60px;
    overflow: hidden;
}

.chat-wall-text-right-time {
    width: 100%;
    float: right;
    font-size: 14px;
    padding: 0 60px 0 0;
    overflow: hidden;
}

/*.chat-wall-text-right {
    color: #fff !important;
}*/

.chat-wall-right-msg-text {
    float: right;
}

.chat-wall-left-msg-text, .chat-wall-right-msg-text {
    width: 90%;
    clear: both;
    /*padding: 5px 0 5px 5px;*/
    padding: 0;
}

.chat-wall-user-right {
    float: right;
    text-align: left;
}

.chat-wall-user-left, .chat-wall-user-right {
    width: 100%;
    margin: 0 0 10px 0;
    /*white-space: nowrap;*/
    line-height: 17px;
    /*font-weight: 600;*/
    /*overflow: hidden;
    text-overflow: ellipsis;*/
    cursor: default;
}

.chat-wall-user-right-icon {
    text-align: right;
    float: right;
}

    .chat-wall-user-left-icon img, .chat-wall-user-right-icon img {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        overflow: hidden;
        background: #ccc;
    }

.chat-wall-text-right {
    float: right;
    background: #996ddc;
    margin-right: 15px;
    padding: 4px 8px;
    position: relative;
    color: #fff;
    max-width: calc(100% - 75px);
}

    .chat-wall-text-right::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 8px;
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-left: 10px solid #996ddc;
        border-bottom: 4px solid transparent;
    }

.chat-user-attachment a {
    color: #FFF;
}

    .chat-user-attachment a:hover {
        color: #f1f1f1;
    }

.chat-wall-text-left .chat-user-attachment a {
    color: #333;
    text-decoration: underline;
}

    .chat-wall-text-left .chat-user-attachment a:hover {
        color: #000;
    }

.chat-wall-controls {
    float: left;
    width: 100%;
    /*padding: 10px 15px 10px 30px;*/
    position: relative;
    box-shadow: 0 0 8px #ccc;
    padding: 0 5px;
}

.wall-chat-attachment {
    position: absolute;
    top: 12px;
    left: 38px;
    z-index: 2;
    color: #999;
    cursor: pointer;
    font-size: 17px;
}

.chat-wall-text-area {
    float: left;
    width: calc(100% - 50px);
}

.emojionearea.chat-wall-text-area {
    width: 100%;
    float: left;
    height: 45px;
    position: relative;
    border: 1px solid #ccc;
}

.chat-wall-text-area {
    float: left;
    width: calc(100% - 50px);
}

/*.emojionearea.chat-wall-text-area .emojionearea-editor {
    padding: 5px 46px 5px 60px;
}*/
.emojionearea .emojionearea-editor {
    line-height: 15px !important;
    min-height: 42px !important;
    padding: 11px 5px 8px 58px !important;
    overflow-y: auto;
    overflow-x: hidden;
    width: calc(100% - 42px);
    word-wrap: break-word;
}

.emojionearea.chat-wall-text-area .emojionearea-button {
    top: 12px;
    left: 4px;
}

.emojionearea .emojionearea-picker.emojionearea-picker-position-top {
    left: 0 !important;
}

.emojionearea-wrapper::after {
    left: 5px !important;
}
/*.emojionearea.chat-wall-text-area::before {
    position: absolute;
    content: "";
    top: 0;
    left: 36px;
    width: 1px;
    height: 100%;
    background: #CCC;
}*/

/*.emojionearea .emojionearea-editor {
    min-height: 43px;
    height: 55px;
    padding:  5px 46px 5px 60px;
    overflow: hidden;
    word-wrap: break-word;
}*/

.emojionearea .emojionearea-button {
    left: 3px;
    top: 17px;
    width: 24px;
    height: 24px;
}

.wall-send-btn {
    width: 36px;
    height: 34px;
    border-radius: 5px;
    border: none;
    background: #ffa500;
    cursor: pointer;
    outline: none !important;
    position: absolute;
    right: 0;
    top: 6px;
    right: 10px;
    transition: all 0.3s ease;
}

    .wall-send-btn img {
        width: 21px;
    }

    .wall-send-btn:hover {
        background: #dc8f03;
    }

.applicant-details-form {
    width: 100%;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #e2e0e0;
}

.data-table-section {
    float: left;
    width: 100%;
    /*border: 1px solid #ddd;*/
    background: #FFF;
    margin-bottom: 20px;
    position: relative;
}

.data-table {
    background: #FFF;
    /*border: 1px solid #B8BCBE;*/
    margin-bottom: 0;
    float: left;
    width: 100%;
    overflow-x: auto;
    box-shadow: 0 0 3px #ccc;
    font-size: 13px;
}

    .data-table table {
        border-collapse: collapse;
        margin: 0;
        cursor: default;
    }

        .data-table table tr th {
            color: #fff;
            background: #636363;
            border-bottom: 1px solid #ccc !important;
            vertical-align: middle;
            line-height: 14px;
            padding: 10px 5px;
        }

data-table table tr td {
    padding: 10px 5px !important;
}

.chat-alert {
    position: absolute;
    bottom: 20px;
    right: 10px;
}

    .chat-alert.open {
        display: block;
    }

.chat-alert-inner {
    width: 500px;
    position: relative;
    text-overflow: ellipsis;
    background: linear-gradient(to bottom, #fd7a6a 0%, #fa4971 100%);
    margin-bottom: 10px;
    box-shadow: 0 0 8px #ddd;
    padding: 20px 30px 20px 10px;
    color: #fff;
    border-radius: 5px;
}

    .chat-alert-inner img {
        border-radius: 30px;
        margin: 0 auto;
        display: block;
    }

.chat-alert-user {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    margin-bottom: 5px;
}

.chat-alert-msg {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    white-space: nowrap;
    padding: 0 5px;
    border-radius: 3px;
}

.chat-alert-close {
    position: absolute;
    top: 6px;
    right: 12px;
    color: #fff;
    cursor: pointer;
    z-index: 11;
}

.chats-number {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #04ac00;
    border-radius: 50%;
    top: -8px;
    right: -8px;
    font-size: 10px;
    text-align: center;
    padding-top: 3px;
    box-shadow: 0 0 2px #000;
}

    .chats-number:empty {
        display: none;
    }

.active-user {
    position: absolute;
    width: 20px;
    height: 20px;
    color: #04ac00;
    border-radius: 50%;
    top: -8px;
    right: -8px;
    font-size: 14px;
    text-align: center;
    padding-top: 3px;
}

    .active-user i {
        color: #04ac00;
    }

.chat-count {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #FFF;
    border-radius: 50%;
    top: 8px;
    right: 2px;
    font-size: 10px;
    text-align: center;
    padding-top: 0px;
    box-shadow: 0 0 2px #000;
}

    .chat-count:empty {
        display: none;
    }

.emojionearea.chat-wall-text-area .emojionearea, .emojionearea.form-control {
    border-top: 2px solid #ccc;
    border: 0;
}








/*--------------------------------------------- Chat Application End Here ----------------------------------------------------*/


/*---------------------------------------------------- Admin-Dashboard Css Start Here ---------------------------------------------------*/


.admin-dashboard {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url(../Images/BG-Image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: 200;
}

    .admin-dashboard::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 50%;
        background: #0062f8;
        left: 0;
        bottom: 0;
        z-index: -2;
    }

.admin-dashboard-header {
    padding: 30px 20px 20px 20px;
}

    .admin-dashboard-header .header-left .logo {
        width: 200px;
    }

        .admin-dashboard-header .header-left .logo img {
            width: 100%;
            cursor: pointer;
        }

.admin-profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ccc;
    float: right;
    overflow: hidden;
}

    .admin-profile img {
        width: 100%;
        overflow: hidden;
    }

.admin-dashboard-header .header-right .logout {
    float: right;
    padding: 5px 20px;
}

    .admin-dashboard-header .header-right .logout a {
        cursor: pointer;
    }

.admin-dashboard-header .header-right .admin-Cacel-btn {
    float: right;
    padding: 11px 20px 10px 10px;
}

    .admin-dashboard-header .header-right .admin-Cacel-btn button {
        font-size: 15px;
        border: 0;
        color: #000 !important;
        background: #ffb700;
        padding: 4px 10px;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.6s ease;
        outline: none !important;
    }

        .admin-dashboard-header .header-right .admin-Cacel-btn button:hover {
            background: #e2c375;
            box-shadow: 0 0 10px #ccc;
        }

        .admin-dashboard-header .header-right .admin-Cacel-btn button i:hover {
            color: #000 !important;
        }

.serch-form {
    width: 500px;
    position: relative;
}

.admin-dashboard-body h2 {
    text-align: center;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.admin-dashboard-body .search-section {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: -30px;
}

.serch-form input {
    width: 100%;
    padding: 10px 115px 10px 15px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-size: 17px;
    outline: none !important;
}

.serch-form button {
    position: absolute;
    right: 4px;
    top: 5px;
    border: 0;
    padding: 8px 20px;
    background: #ffb700;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    outline: none !important;
    transition: all 0.6s ease;
    letter-spacing: 1px;
}

    .serch-form button:hover {
        background: #e3b540;
    }

.search-section .serch-form .search-result {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

    .search-section .serch-form .search-result ul.list-group {
        max-height: calc(100vh - 350px);
        overflow: auto;
    }

.admin-dashboard-body .search-section .serch-form span.text-danger {
    position: absolute;
    background: #fff;
    width: 100%;
    text-align: center;
    padding: 10px;
    display: block;
    border-radius: 30px;
    border: 1px solid red;
    margin-top: 10px;
    font-weight: 600;
}

.admin-dashboard-body .search-section .serch-form span:empty {
    display: none;
}

.admin-dashboard-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 20px;
}

.footer-left {
    float: left;
}

.footer-right {
    float: right;
}

.footer-left p {
    font-size: 15px;
    color: #fff;
}

    .footer-left p a {
        color: #fff;
    }

.footer-right p {
    font-size: 15px;
    color: #fff;
}



/*Check box*/
input[type="checkbox"] + .label-text::before {
    content: "\f0c8";
    font-family: "Font Awesome 5 Free";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    color: #999;
}

.form-check {
    margin-bottom: 0;
    display: inherit;
}

    .form-check label {
        margin-bottom: 0;
    }

    .form-check.bottom-space {
        margin-bottom: 15px;
    }

.label-text {
    font-size: 14px;
    position: absolute;
    left: 0;
}

input[type="checkbox"]:checked + .label-text:before {
    content: "\f14a";
    color: #3b865d;
    animation: effect 250ms ease-in;
}

input[type="checkbox"]:disabled + .label-text {
    color: #aaa;
}

    input[type="checkbox"]:disabled + .label-text:before {
        /*content: "\f14a";*/
        color: #999;
    }

input[type="checkbox"]:checked[disabled] + .label-text:before {
    content: "\f14a";
}

.check-box-disabled {
    pointer-events: none;
}

/*Radio box*/

input[type="radio"] + .label-text:before {
    content: "\f192";
    font-family: "Font Awesome 5 Free";
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 5px;
    font-weight: 900;
    color: #aaa;
}

input[type="radio"]:checked + .label-text:before {
    content: "\f192";
    color: #3b865d;
    animation: effect 250ms ease-in;
    font-weight: 100;
}

input[type="radio"]:disabled + .label-text {
    color: #aaa;
}

    input[type="radio"]:disabled + .label-text:before {
        content: "\f111";
        color: #ccc;
    }
/*Radio Toggle*/

.toggle input[type="radio"] + .label-text:before {
    content: "\f204";
    font-family: "Font Awesome 5 Free";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 10px;
}

.toggle input[type="radio"]:checked + .label-text:before {
    content: "\f205";
    color: #d6394f;
    animation: effect 250ms ease-in;
}

.toggle input[type="radio"]:disabled + .label-text {
    color: #aaa;
}

    .toggle input[type="radio"]:disabled + .label-text:before {
        content: "\f204";
        color: #ccc;
    }

@keyframes effect {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(1.3);
    }

    75% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}
/*   checkbox   big  */
.check-box-box, .radio-box-box {
    background: #FFF url(../images/type-checked-icon.svg) 10px 14px no-repeat;
    background-size: auto 15px;
    padding: 10px 40px;
    text-align: left;
    width: calc(100% - 10px) !important;
    margin: 0 0px 15px 0;
    cursor: pointer;
    /*box-shadow: 0 0 5px #666;*/
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    position: relative;
    transition: all 0.9s ease;
    box-shadow: 0 0 5px #AAA;
}

.radio-box-box {
    background: url(../images/radio-button-off.svg) 10px 9px no-repeat;
    background-size: auto 15px;
    transition: all 0.9s ease;
}

.check-box-box.active {
    background: #036D41 url(../images/type-checked-icon.svg) 10px 14px no-repeat;
    background-size: auto 15px;
    color: #fff;
    border: 1px solid #036D41;
}

.radio-box-box.active {
    background: #d6394f url(../images/radio-button-on.svg) 10px 9px no-repeat;
    background-size: auto 15px;
    color: #fff;
}

.check-box-box input[type="checkbox"], .check-box-box input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}



/*----------------------------------- Calender Css Start Here -------------------------------------------*/

/*-------------------- Date Header Start Here -------------------------*/
.uib-datepicker-popup {
    padding: 0;
    /*box-shadow: 0 0 5px #53b2e1 !important;*/
    border: 1px solid #2b6143 !important;
    font-size: 14px;
    font-weight: 600;
}

.uib-daypicker {
    outline: none !important;
}

    .uib-daypicker button {
        box-shadow: none !important;
    }

    .uib-daypicker .btn-info {
        color: #fff;
        background-color: #2b6143 !important;
        border-color: #2b6143 !important;
    }

        .uib-daypicker .btn-info span {
            color: #fff !important;
        }

.uib-monthpicker {
    outline: none !important;
}

.uib-yearpicker {
    outline: none !important;
}

.uib-datepicker-popup li {
    outline: none !important;
    box-shadow: 0 0 5px #fff;
}

    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table {
        outline: none !important;
        /*box-shadow: 0 0 5px #fff !important;*/
    }

        .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr {
            background: linear-gradient(to right, #2b6143 0%, #209b60 100%);
            color: #fff;
        }

            .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr:nth-child(2) {
                background: #bcdece;
                color: #000;
            }

            .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button {
                font-size: 13px;
                color: #fff;
                padding: 1px;
                outline: none !important;
                box-shadow: none !important;
            }

                .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-left {
                    position: relative;
                    padding: 12px 5px;
                }

                    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-left:hover {
                        background: #dbe5f1;
                    }

                        .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-left:hover::after {
                            color: #2b6143;
                        }

                    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-left::after {
                        position: absolute;
                        content: "\f0d9";
                        left: 7px;
                        bottom: 0px;
                        font-size: 16px;
                        color: #fff;
                        font-family: "Font Awesome 5 Free";
                        font-weight: 900;
                    }

                .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-right {
                    position: relative;
                    padding: 12px 5px;
                }

                    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-right:hover {
                        background: #dbe5f1;
                    }

                        .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-right:hover::after {
                            color: #2b6143;
                        }

                    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table thead tr th button.pull-right::after {
                        position: absolute;
                        content: "\f0da";
                        right: 7px;
                        bottom: 0px;
                        font-size: 16px;
                        color: #fff;
                        font-family: "Font Awesome 5 Free";
                        font-weight: 900;
                    }

.uib-daypicker table tbody {
    font-size: 14px;
}
/*-------------- Month Header Start here --------------------*/

.uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr {
    background: linear-gradient(to right, #2b6143 0%, #209b60 100%);
    color: #fff;
}

    .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button {
        font-size: 13px;
        color: #fff;
        padding: 1px;
        outline: none !important;
    }

        .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-left {
            position: relative;
            padding: 12px 5px;
            width: 30px;
            float: left;
        }

            .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-left:hover {
                background: #dbe5f1;
            }

                .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-left:hover::after {
                    color: #2b6143;
                }

            .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-left::after {
                position: absolute;
                content: "\f0d9";
                left: 10px;
                bottom: 0px;
                font-size: 16px;
                color: #fff;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
            }

        .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-right {
            position: relative;
            padding: 12px 5px;
            width: 30px;
            float: right;
        }

            .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-right:hover {
                background: #dbe5f1;
            }

                .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-right:hover::after {
                    color: #2b6143;
                }

            .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table thead tr th button.pull-right::after {
                position: absolute;
                content: "\f0da";
                right: 10px;
                bottom: 0px;
                font-size: 16px;
                color: #fff;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
            }
/*-------------- Year Header Start here --------------------*/
.uib-yearpicker table {
    width: 100%;
}

.uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr {
    background: linear-gradient(to right, #2b6143 0%, #209b60 100%);
    color: #fff;
}

    .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button {
        font-size: 13px;
        color: #fff;
        padding: 1px;
        outline: none !important;
    }

        .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-left {
            position: relative;
            padding: 12px 5px;
            width: 23px;
            float: left;
        }

            .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-left:hover {
                background: #dbe5f1;
            }

                .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-left:hover::after {
                    color: #2b6143;
                }

            .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-left::after {
                position: absolute;
                content: "\f0d9";
                left: 6px;
                bottom: 0px;
                font-size: 16px;
                color: #fff;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
            }

        .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-right {
            position: relative;
            padding: 12px 5px;
            width: 23px;
            float: right;
        }

            .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-right:hover {
                background: #dbe5f1;
            }

                .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-right:hover::after {
                    color: #2b6143;
                }

            .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table thead tr th button.pull-right::after {
                position: absolute;
                content: "\f0da";
                right: 6px;
                bottom: 0px;
                font-size: 16px;
                color: #fff;
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
            }

/*-------------------- Date Body Start Here -------------------------*/

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
    background: linear-gradient(to top, #3998c7 0%, #1d477a 100%);
    font-weight: 700;
}

    .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle:hover {
        background: #2b6143 !important;
        border-color: #2b6143 !important;
        outline: none !important;
        box-shadow: none;
    }

.uib-datepicker-popup li .uib-datepicker .uib-daypicker table tbody tr td button {
    font-size: 14px;
    border: 1px solid #f5f5f5;
    padding: 0px 4px;
}

    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table tbody tr td button.btn-info.active span.text-info {
        color: #fff !important;
    }

    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table tbody tr td button.btn-default span.text-info {
        font-weight: 700 !important;
    }
    /*.uib-datepicker-popup li .uib-datepicker .uib-daypicker table tbody tr td button.btn-default.btn-default span.text-info:active {
    background: red;
}*/
    .uib-datepicker-popup li .uib-datepicker .uib-daypicker table tbody tr td button.btn-default {
        transition: all 0.6s ease;
    }

        .uib-datepicker-popup li .uib-datepicker .uib-daypicker table tbody tr td button.btn-default:hover {
            background: #dbe5f1;
        }


/*-------------------- Month Body Start Here -------------------------*/
.uib-datepicker-popup li .uib-datepicker .uib-monthpicker table tbody tr td button {
    border: 1px solid #f5f5f5;
    padding: 2px 4px;
    font-size: 11px;
}

    .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table tbody tr td button.btn-info.active span.text-info {
        color: #fff !important;
    }

    .uib-datepicker-popup li .uib-datepicker .uib-monthpicker table tbody tr td button.btn-default.btn-default span.text-info {
        font-weight: 700 !important;
    }



/*-------------------- Year Body Start Here -------------------------*/
.uib-datepicker-popup li .uib-datepicker .uib-yearpicker table tbody tr td button {
    border: 1px solid #f5f5f5;
    font-size: 11px;
    padding: 4px 4px;
}

    .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table tbody tr td button.btn-info.active span.text-info {
        color: #fff !important;
    }

    .uib-datepicker-popup li .uib-datepicker .uib-yearpicker table tbody tr td button.btn-default.btn-default span.text-info {
        font-weight: 700 !important;
    }


/*-------------------- Fotter Buttons Start Here -------------------------*/

.uib-button-bar {
    border-top: 1px solid #ccc;
}

    .uib-button-bar span.btn-group.pull-left {
        width: 67% !important;
        float: left;
    }

        .uib-button-bar span.btn-group.pull-left button {
            color: #fff;
            /*margin-bottom: 7px;*/
            border: 0;
        }

        .uib-button-bar span.btn-group.pull-left .btn-info {
            font-size: 11px;
            padding: 4px 5px;
            cursor: pointer;
            outline: none !important;
            box-shadow: none !important;
            border-radius: 4px 0 0 4px;
            background: #209b60;
        }

            .uib-button-bar span.btn-group.pull-left .btn-info:hover {
                background: #2b6143;
            }

        .uib-button-bar span.btn-group.pull-left .uib-clear {
            font-size: 11px;
            padding: 4px 5px;
            border-radius: 0;
            cursor: pointer;
            outline: none !important;
            box-shadow: none !important;
            background: #da8d00;
        }

            .uib-button-bar span.btn-group.pull-left .uib-clear:hover {
                background: #c17e02;
            }

    .uib-button-bar .uib-close {
        background: #f54949;
        border-color: #f54949;
        cursor: pointer;
        outline: none !important;
        box-shadow: none !important;
        transition: all 0.6s ease;
    }

        .uib-button-bar .uib-close:hover {
            background: #d03e3e;
        }

    .uib-button-bar .btn-success {
        font-size: 11px;
        width: calc(100% - 67%);
        border-radius: 0 4px 4px 0;
        padding: 3px;
        outline: none !important;
    }

.uib-button-bar {
    padding: 5px 10px 5px 10px !important;
}

    .uib-button-bar button:focus {
        box-shadow: none !important;
    }



/*----------------------------------- Calender Css End Here -------------------------------------------*/




/*---------------------------- Articilation form css start here --------------------------------------*/
/*  Enquiry Form Custom  */
.enquiry-form {
    float: left;
    width: 100%;
    /*height: calc(100vh - 97px);*/
    /*height: calc(100vh - 145px);*/
    /*padding: 15px;*/
    /*background: #F1F1F1;*/
    display: flex;
}

.enquiry-profile {
    background: #F5F5F5;
    border: 2px solid #FFF;
    float: left;
    width: 200px;
    box-shadow: 0px 0 5px #aaa;
}

.enquiry-profile-img {
    float: left;
    width: 100%;
    text-align: center;
    background: #FFF;
    padding: 20px 0;
}

    .enquiry-profile-img img {
        width: 120px;
        border-radius: 50%;
        text-align: center;
    }

.enquiry-profile-info {
    float: left;
    width: 100%;
    padding: 15px;
    /*text-align:center;*/
}

    .enquiry-profile-info h4 {
        float: left;
        width: 100%;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #d6394f;
        margin-bottom: 15px;
    }




.enquiry-form-tabs {
    /*background: #FFF;*/
    float: right;
    width: 100%;
    overflow: hidden;
}

.enquiry-tab-item-btns {
    clear: both;
    padding: 4px 30px 4px 60px;
    margin: 0;
    text-align: left;
}

.enquiry-inner-btn-group {
    float: left;
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
}

.enquiry-inner-btn {
    background: none;
    border: none;
    color: #ff462b;
    padding: 5px 10px;
    cursor: pointer;
    outline: none !important;
    border: 1px solid #ff462b;
    transition: all 1s ease;
}

    .enquiry-inner-btn:hover {
        background: #ff462b;
        color: #fff;
    }

/*   Form tabs   */
.form-tab-container {
    float: left;
    width: 100%;
    padding-left: 15px;
    display: flex;
    height: 100%;
}

.form-tab-link-container {
    float: left;
    width: 40px;
    position: relative;
    background: #f1f1f1;
    z-index: 20;
    border-radius: 10px;
}

.form-tab-link-group {
    /*float: left;*/
    display: flex;
    position: relative;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
    height: calc(100% - 50px);
}

    .form-tab-link-group::after {
        position: absolute;
        top: 0px;
        left: 19px;
        content: "";
        width: 2px;
        height: calc(100% - 0px);
        background: var(--primary-color);
    }

.form-tab-link {
    position: relative;
    text-align: center;
    padding: 0px;
    display: block;
    text-align: center;
}

    .form-tab-link span.label {
        position: absolute;
        background: #0d161a;
        top: -10px;
        left: 40px;
        z-index: 25;
        white-space: nowrap;
        visibility: hidden;
        text-align: center;
        padding: 8px 0px 8px 0px;
        color: #FFF;
        cursor: pointer;
        /*box-shadow: 0 0 5px #666;*/
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        max-width: 0px;
        transition: all 1s ease;
        overflow: hidden;
    }

    .form-tab-link:hover span.label {
        opacity: 1;
        visibility: visible;
        padding: 8px 20px 8px 20px;
        max-width: 1000px;
    }

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    display: block;
    position: absolute;
    left: 13.5px;
    cursor: pointer;
    z-index: 30;
}

.form-tab-link.active .dot::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -4px;
    left: -4px;
    border: var(--primary-color) 2px solid;
}

/*.form-tab-link.done span.label {
    background: #003471;
    box-shadow: 0 0 5px #003471;
}*/

/*.form-tab-link.active span.label {
    background: #d6394f;
    box-shadow: 0 0 5px #d6394f;
}*/

.form-tab-link span.label::after {
    position: absolute;
    content: "";
    top: calc(50% - 8px);
    width: 0px;
    left: -5px;
    border-bottom: 1px solid #0d161a;
    border-right: 1px solid #0d161a;
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.form-tab-link:hover span.label::after {
    width: 10px;
    opacity: 1;
    border-bottom: 15px solid #0d161a;
    border-right: 15px solid #0d161a;
}

/*.form-tab-link:hover span.label {
    display: block;
}*/

.form-tab-item-group {
    float: right;
    width: calc(100% - 40px);
    margin: 0;
}

.form-tab-item {
    float: left;
    width: 100%;
    height: calc(100vh - 106px);
    padding: 15px;
    /*padding: 20px 30px 0px 30px;*/
    /*border-radius: 6px;*/
    display: none;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

    .form-tab-item.active {
        display: block;
    }

.form-tab-item-title {
    float: left;
    width: 100%;
    font-size: 16px;
    padding: 0 0 5px 0;
    font-weight: 600;
    color: #003471;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.form-tab-form {
    float: left;
    width: 100%;
    /*height: calc(100vh - 250px);
    overflow-x: hidden;
    overflow-y: auto;*/
}

.form-tab-item-btns {
    clear: both;
    background: #666;
    padding: 5px 10px;
    margin: 0;
    text-align: right;
}

/*---------------------------- Articilation form css End here --------------------------------------*/

/*---------------------------- SupervisorDashboard form css Start here --------------------------------------*/

.supervisor-box-inner {
    text-align: center;
    color: #fff;
    overflow: hidden;
    text-decoration: none;
}

    .supervisor-box-inner h2 {
        font-size: 23px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 23px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .supervisor-box-inner p {
        font-size: 15px;
        line-height: 20px;
        color: #fff;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.dashboard-top-box a:hover {
    text-decoration: none;
}

.supervisor-db {
    width: 78%;
}

.notice-group {
}

.notice-box {
    /*border: 1px solid #ccc;*/
    margin-bottom: 20px;
    padding: 5px;
}

    .notice-box h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .notice-box p {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .notice-box a {
        color: #f7b74c;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s ease;
    }

        .notice-box a:hover {
            color: #e1961a;
        }

.supervisor-register .side-wedge-name .progress-box {
    width: 100%;
    height: 200px;
    background: #ccc;
}

.supervisor-register .side-wedge-name span i {
    font-size: 8px;
}

.side-wedge-name.supervisor {
}

.highcharts-data-label-connector {
    display: none;
}

/*---------------------------- SupervisorDashboard form css End here --------------------------------------*/

/*---------------------------- supervisor to student css Start here --------------------------------------*/
.supervisortostudent-left {
    float: left;
    width: 250px;
}

.supervisortostudent-right {
    float: right;
    width: calc(100% - 250px);
}

.supervisortostudent-right-inner {
    padding: 15px;
    height: calc(100vh - 66px);
    border-radius: 0 28px 0 0;
}

.supervisortostudent-profile-block {
    /*float: left;*/
    width: 100%;
    background: #212226;
    border-radius: 20px 0 0 0;
}

.supervisortostudent-section {
    height: 170px;
    padding: 20px 10px 10px 10px;
}

.supervisortostudent-profile-name {
    padding: 20px 5px 10px 5px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .supervisortostudent-profile-name h6 {
        font-size: 16px;
        margin: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .supervisortostudent-profile-name p {
        color: #fff;
        font-size: 14px;
        margin: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.supervisortostudent-compose-section {
    background: #7b828e;
    padding: 15px 10px;
    text-align: center;
}

    .supervisortostudent-compose-section button {
        font-size: 18px;
        border: 0;
        border-radius: 30px;
        padding: 5px 15px;
        transition: all 0.4s ease;
    }

        .supervisortostudent-compose-section button i {
            padding-right: 10px;
        }

        .supervisortostudent-compose-section button:hover {
            background: linear-gradient(to top, #20b9e3 0%, #3782e1 100%);
            background: var(--secondary-color);
            color: #fff;
            box-shadow: 0 0 10px #fff;
        }

.supervisortostudent-profile-body {
    background: #303338;
    width: 100%;
    height: calc(100vh - 303px);
    overflow-y: auto;
    padding: 15px 0;
}

    .supervisortostudent-profile-body ul {
        padding: 0;
        margin: 0;
    }

        .supervisortostudent-profile-body ul li {
            list-style-type: none;
        }

.supervisortostudent-profile-details {
    padding: 10px 10px 5px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .supervisortostudent-profile-details label {
        display: block;
        color: #75797f;
        font-size: 17px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin: 0;
    }

    .supervisortostudent-profile-details span {
        display: block;
        color: #fff;
        font-size: 15px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

.supervisortostudent-gridbtn-section {
    float: right;
}

    .supervisortostudent-gridbtn-section button {
        border: 0;
    }

.supervisortostudent-right-inner .dashboard-tab-link-group {
    border-bottom: 1px solid #ccc;
}

.supervisortostudent-tab-item-inner {
    padding: 10px 10px 10px 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.subject-info-group {
    margin-bottom: 20px;
}

.subject-info-header {
    margin-bottom: 5px;
}

    .subject-info-header .title {
        float: left;
        font-size: 17px;
        font-weight: 600;
    }

    .subject-info-header .subject-info-more {
        float: right;
    }

        .subject-info-header .subject-info-more label {
            margin: 0;
            padding-right: 10px;
            font-size: 15px;
        }

        .subject-info-header .subject-info-more span button {
            border: 0;
            background: none;
            font-size: 14px;
            /*outline: none !important;*/
        }

.subject-info-box {
    border: 1px solid #ccc;
    padding: 0px;
    margin-bottom: 5px;
    transition: all 0.6s ease;
}

    .subject-info-box:hover {
        background: #f5f5f5;
    }

.subject-info-box-1 {
    float: left;
    padding: 5px;
}

    .subject-info-box-1.icon {
        font-size: 15px;
    }

.new-subject {
    font-size: 15px;
    color: var(--primary-color);
    background: #ffe4dd;
    padding: 0 5px;
    border-radius: 4px;
}

.subject-info-box-1.subject-name {
    padding: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 125px);
}

    .subject-info-box-1.subject-name p {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
    }

        .subject-info-box-1.subject-name p span {
            font-weight: 600;
            color: #000;
            padding-right: 5px;
        }

.subject-info-box-time {
    float: right;
    color: #000;
    font-size: 15px;
    padding: 5px;
}

/*---------------------------- supervisor to student css End here --------------------------------------*/

/*---------------------------- Graduation Seats css Start here --------------------------------------*/
.seat-container {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.seat-row {
    display: flex;
    width: 100%;
}

.seat-item {
    width: 40px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    overflow: hidden;
}

    .seat-item:first-child {
        width: 100px;
        text-align: left;
        word-wrap: break-word;
    }
/* Graduation Seat check box */
.graduation-seats {
    display: block;
    position: relative;
    padding-left: 21px;
    margin-bottom: 10px;
    padding-bottom: 21px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .graduation-seats input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        left: 0;
        top: 0;
        z-index: 100;
        width: 20px;
        height: 20px;
    }

    /* Create a Graduation Seat custom checkbox */
    .graduation-seats .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        padding: 10px;
        background: none !important;
    }

    /* On mouse-over, add a grey background color */
    .graduation-seats:hover input ~ .checkmark {
        /*background-color: #ccc;*/
    }

    /* When the checkbox is checked, add a blue background */
    .graduation-seats input:checked ~ .checkmark {
        padding: 10px;
    }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.graduation-seats input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.graduation-seats .checkmark:after {
    content: "\f6c0";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 0;
    left: 2px;
    font-size: 18px;
    color: var(--secondary-color);
}

.graduation-seats .checkmark::before {
    content: "\f6c0";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 0;
    left: 2px;
    font-size: 18px;
    color: #c5c5c5;
}

.graduation-seats input:disabled ~ .checkmark::before {
    color: #010101;
}


.graduation-seats label {
    margin: 3px 0 0 0;
}

.popup-body {
    height: calc(100vh - 200px);
    overflow-y: auto;
    padding: 0 15px 15px 15px;
}

.modal-body .popup-body .date-list .title {
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}




.seats-section {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

    .seats-section table {
        width: 100%;
        border-collapse: collapse;
    }

        .seats-section table th {
            text-align: center;
            padding: 10px;
        }

            .seats-section table th:first-child {
                font-weight: 600;
                text-align: left;
            }

        .seats-section table td {
            text-align: center;
            padding: 10px;
        }

            .seats-section table td:first-child {
                font-weight: 600;
                text-align: left;
            }

    .seats-section .graduation-seats {
        width: 15px;
        margin: 0 auto;
    }

/*---------------------------- Graduation Seats css End here --------------------------------------*/

/*---------------------------- Main Popup Start here --------------------------------------*/
#TermsConditions {
    background: rgba(0,0,0,0.5);
}

.main-popup {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.main-popup-header {
    padding: 8px 15px;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
    /*border-bottom: 1px solid #999;*/
}

.main-popup-header-left {
    float: left;
}

.main-popup-header-right {
    float: right;
}

.main-popup-header-left .title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.main-popup-header-right button {
    font-size: 18px;
    line-height: 18px;
    padding: 0;
    color: #fff;
    background: none;
    height: 20px;
    outline: none !important;
    transition: all 0.3s ease;
    text-shadow: none;
    opacity: 1;
    border: none !important;
    margin-top: 5px;
    cursor: pointer;
    box-shadow: none !important;
}

    .main-popup-header-right button:hover {
        color: #ccc;
    }

.main-popup-body {
    padding: 10px 15px 10px 15px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    min-height: 200px;
    word-wrap: break-word;
}

.min-height {
    min-height: 350px !important;
}

.poup-inner-header {
    text-align: center;
}

    .poup-inner-header img {
        margin-bottom: 7px;
    }

    .poup-inner-header .title {
        font-size: 20px;
    }

.main-popup-footer {
    padding: 10px 15px;
    border-top: 1px solid #999;
    text-align: right;
    background: #f1f1f1;
}

    .main-popup-footer .btn-primary {
        padding: 2px 15px !important;
        min-width: inherit;
    }

    .main-popup-footer.center {
        text-align: center !important;
    }

.bg-grey {
    background: #f1f1f1;
}

.bg-grey-1 {
    background: #f9f9f9;
}

.popup-btn {
    font-size: 14px;
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.6s ease;
    padding: 2px 10px;
    letter-spacing: 0.5px;
    cursor: pointer;
    outline: none !important;
}

    .popup-btn:hover {
        /*background: #dc6557;*/
        background: var(--primary-color) !important;
        color: #fff !important;
    }

    .popup-btn.active {
        background: var(--secondary-color);
        color: #fff;
    }

        .popup-btn.active:hover {
            background: #1c8855;
        }

.main-popup-body table {
    width: 100%;
}
/*table tr td{
        padding: 4px;
    }*/

.no-data {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 30px;
    cursor: default;
}

    .no-data span {
        border: 1px solid #ccc;
        padding: 10px 15px;
        text-align: center;
        font-weight: 600;
        transition: all 0.6s ease;
        display: block;
    }

        .no-data span:hover {
            background: #f4f4f4;
        }
/*---------------------------- Main Popup End here --------------------------------------*/

.letter-title {
    background: #000;
    padding: 4px 10px;
}

    .letter-title h5 {
        color: #fff;
        margin: 0;
    }

.HRTag-Bold {
    border: 1px solid;
}



/*---------------------------- Articulation contact form css Start here --------------------------------------*/

.step-tab-item-title {
    padding: 20px 0 13px 0;
}

    .step-tab-item-title h6 {
        margin: 0;
    }

.contact-table-box {
    float: left;
    width: 100%;
    background: #FFFFFF;
    border: 2px solid #FFF;
    padding: 15px 15px 15px 15px;
    box-shadow: 0 0 5px #ccc;
    position: relative;
    min-height: 275px;
    margin-bottom: 20px;
    z-index: 0;
}

    .contact-table-box.add-address {
        background: #F5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.add-address-btn {
    background: #F5f5f5;
    /*border: 2px solid #d6394f;*/
    border: 2px solid var(--primary-color);
    padding: 10px;
    /*color: #d6394f;*/
    color: var(--secondary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.6s ease;
}

    .add-address-btn:hover {
        /*background: #d6394f;*/
        background: var(--primary-color) !important;
        border: 2px solid #fff;
        padding: 10px;
        font-size: 18px;
        cursor: pointer;
        color: #FFF;
    }


.contact-info-table {
    float: left;
    width: 100%;
    padding: 0 0 10px 0;
    overflow-x: auto;
}

.contact-info-box-header {
    float: left;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 15px;
}

.contact-info-box-title {
    float: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    /*width: calc(100% - 80px);*/
}

    .contact-info-box-title.country {
        float: right;
        width: 45%;
    }

.width-adjustment {
    max-width: 150px;
}

.contact-info-add {
    float: right;
    width: 80px;
    color: #d6394f;
    text-align: right;
    cursor: pointer;
}

    .contact-info-add i {
        margin-left: 5px;
    }

.contact-info-table table {
    float: left;
    width: 100%;
}

.contact-email-email {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-info-table table td {
    padding: 8px 4px;
}

    .contact-info-table table td:last-child {
        padding-right: 0;
    }

    .contact-info-table table td:first-child {
        padding-left: 0;
    }

    .contact-info-table table td .edit {
        width: 100%;
        text-align: center;
        display: block;
        color: #00B39D;
    }

    .contact-info-table table td .done {
        background: #00B39D;
        border-radius: 20px;
        font-size: 14px;
        text-transform: uppercase;
        color: #FFF;
        border: none;
        width: 100%;
        cursor: pointer;
        outline: none;
        transition: all 0.6s ease;
    }

        .contact-info-table table td .done:hover {
            background: #07907f;
        }

.contact-info-table select, .contact-info-table input {
    width: 100%;
    float: left;
    /*border: 0px solid #ccc;
    border-bottom: 1px solid #ccc;*/
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
}

.place-holder {
    color: #999;
}

.contact-info-table .contact-info-form select, .contact-info-table .contact-info-form input {
    margin-bottom: 10px;
}

.contact-box label {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}

.fa-circle {
    cursor: pointer;
    font-size: 14px;
    color: #999;
    cursor: pointer;
}

    .fa-circle.active {
        color: #00b652;
    }

.remove, .delete-item {
    color: #d6394f;
    cursor: pointer;
}

    .delete-item.del-inactive {
        color: #666;
        pointer-events: none;
    }

.text-link {
    color: #d6394f;
    font-weight: 300;
    cursor: pointer;
}

.grid-custom-btn {
    font-size: 14px;
    line-height: 16px;
    color: #059f05 !important;
    display: inline-block !important;
    cursor: pointer;
    letter-spacing: 0.5px;
    outline: none !important;
    text-decoration: underline;
}

    .grid-custom-btn:hover {
        text-decoration: none;
    }


/*   plain tab container     */
.plain-tab-container {
    float: left;
    width: 100%;
    padding: 0px;
}

.plain-tab-link-group {
    float: left;
    width: calc(100% - 30px);
    margin: 0 15px;
    border-bottom: 1px #bbb solid;
}

.plain-tab-link {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .plain-tab-link li {
        display: inline-block;
        margin: 0;
        padding: 0px 20px 5px 20px;
        font-weight: 400;
        font-size: 14px;
        border-bottom: 4px rgba(0,0,0,0) solid;
        color: #888;
        cursor: pointer;
    }

        .plain-tab-link li.active {
            border-bottom: 4px #4b2fe3 solid;
            color: #4b2fe3;
        }

.plain-tab-group {
    float: left;
    width: 100%;
}

.plain-tab-item {
    display: none;
    float: left;
    padding: 10px 15px 15px 15px;
    position: relative;
    height: calc(100vh - 190px);
    width: 100%;
    /*margin:0 15px;*/
    overflow-y: auto;
}

    .plain-tab-item.active {
        display: block;
    }

    .plain-tab-item .plain-tab-info-box.no-padding .step-tab-item-title {
        margin-bottom: 0;
        padding: 10px;
    }

.plain-tab-btn-sticky {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 100px;
}

.plain-tab-btn {
    float: right;
    padding: 3px 15px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #aaa;
    cursor: pointer;
    background: #FFF;
    border-radius: 20px;
    min-width: 100px;
    white-space: nowrap;
}

.plain-tab-sub-title {
    width: 100%;
    float: left;
    font-weight: 400;
    color: #1c1c1c;
    font-size: 16px;
    margin: 10px 0;
    padding: 0px;
}

.tab-info-box {
    float: left;
    width: 100%;
    padding: 0 10px;
}

.plain-tab-info-box {
    background: #FFF;
    float: left;
    width: 100%;
    box-shadow: 0 0 5px #aaa;
    padding: 22px 15px 7px 15px;
    margin-bottom: 20px;
}

    .plain-tab-info-box .form-group {
        margin-bottom: 15px;
    }

.contact-info-box {
    padding: 0px 15px 15px 15px;
    float: left;
    width: 100%;
    margin-bottom: 20px;
    line-height: 30px;
}

.box-sub-title {
    float: left;
    width: 100%;
    padding: 0 0 15px 0;
    font-weight: 600;
}


/*    plain tab collaps panel */
.plain-tab-collaps-panel {
    float: left;
    width: 100%;
}

.plain-tab-collaps-item {
    float: left;
    width: 100%;
    padding: 0 0 0px 0;
    transition: all 0.6s ease;
}

    .plain-tab-collaps-item.active .plain-tab-collaps-item {
        padding: 0 0 15px 0;
    }

.plain-tab-collaps-item-title {
    float: left;
    width: 100%;
    font-size: 14px;
    padding: 10px 15px 7px 15px;
    font-weight: 600;
    color: #434d52;
    background: #f9f9f9;
    text-transform: uppercase;
    margin-bottom: 0px;
    cursor: pointer;
    transition: all 0.6s ease;
    position: relative;
}

    .plain-tab-collaps-item-title::after {
        position: absolute;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        top: 9px;
        right: 10px;
        transform: rotate(0deg);
        transition: all 0.6s ease;
    }

.plain-tab-collaps-item.active .plain-tab-collaps-item-title::after {
    transform: rotate(180deg);
}

.plain-tab-collaps-item.active .plain-tab-collaps-item-title {
    margin-bottom: 15px;
}

.plain-tab-collaps-item-title.back.collapse-tab {
    background: #142127;
    color: rgba(255,255,255,1);
}

.plain-tab-collaps-item-content {
    float: left;
    width: 100%;
    padding: 0px 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.plain-tab-collaps-item.active .plain-tab-collaps-item-content {
    max-height: 1000px;
    padding: 5px 15px;
}

.data-search-box {
    width: 100%;
    margin-bottom: 10px;
}

    .data-search-box .form-group {
        margin-bottom: 10px;
    }

        .data-search-box .form-group label {
            font-size: 14px;
            line-height: 14px;
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .data-search-box .form-group select, input {
            width: 100%;
            padding: 3px;
            border: 1px solid #adadad;
            border-radius: 4px;
        }

        .data-search-box .form-group input {
            width: 100%;
            padding: 3px;
            border-color: #adadad;
            border-radius: 4px;
            height: 30px;
            outline: none !important;
        }

        .data-search-box .form-group button {
            margin-top: 25px;
        }

    .data-search-box select:focus {
        outline: none !important;
    }


/*Notification popup Start Here*/


.dropdown.show .dropdown-noti-right {
    width: 300px;
    top: 25px !important;
    left: -275px !important;
    padding: 0;
    overflow: hidden;
}

.noti-list {
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.noti-title {
    position: fixed;
    float: left;
    width: 100%;
    font-weight: 400;
    padding: 6px 10px 6px 10px;
    font-size: 16px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(to bottom, var(--primary-color) 40%, var(--secondary-color));
    color: #FFF;
}

.noti-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .noti-list ul li:first-child {
        height: 40px;
    }

    .noti-list ul li {
        padding: 0;
    }

        .noti-list ul li a .btn-circle {
            float: left;
            width: 40px;
            padding: 0;
            overflow: hidden;
        }

        .noti-list ul li a img {
            height: 40px;
            width: auto;
            max-height: 100%;
        }

        .noti-list ul li a .noti-contnet {
            float: right;
            width: calc(100% - 40px);
            padding: 0 5px;
        }

.noti-contnet h5 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 5px;
}

.noti-contnet {
    font-size: 14px;
    line-height: 14px;
    display: block;
}


.noti-list ul li a {
    float: left;
    border-bottom: 1px solid #e9ecef;
    display: block;
    text-decoration: none;
    /*padding: 9px 0px;*/
    color: #444;
}

    .noti-list ul li a:hover {
        background: #F9F9F9;
    }

    .noti-list ul li a span {
        font-size: 14px;
    }

/*--------------------------- Fixed Table header --------------------------*/
.fixed-header-table {
    float: left;
    width: 100%;
    max-height: 350px;
    overflow: auto;
    position: relative;
}

    .fixed-header-table th {
        position: sticky;
        top: -2px;
        z-index: 10;
        transition: all 0.6s ease;
        background: #fff;
        white-space: nowrap;
    }

/*------------------------*/

.fixed-header-table-1 {
    float: left;
    width: 100%;
    max-height: calc(100vh - 125px);
    overflow: auto;
    position: relative;
}

    .fixed-header-table-1 th {
        position: sticky;
        top: -2px;
        z-index: 10;
        transition: all 0.6s ease;
        background: #fff;
        white-space: nowrap;
    }

/*------------------------*/

.fixed-header-table-3 {
    float: left;
    width: 100%;
    max-height: 400px;
    overflow: auto;
    position: relative;
}

    .fixed-header-table-3 thead {
        position: sticky;
        top: -0px;
        z-index: 10;
        transition: all 0.6s ease;
        background: #fff;
        white-space: nowrap;
    }

    .fixed-header-table-3 table {
        border-collapse: collapse;
    }

.fixed-header-table-4 {
    float: left;
    width: 100%;
    overflow: auto;
    position: relative;
    height: calc(100vh - 230px);
}

    .fixed-header-table-4 thead {
        position: sticky;
        top: -1px;
        z-index: 10;
        transition: all 0.6s ease;
        background: #fff;
        white-space: nowrap;
    }

    .fixed-header-table-4 table {
        border-collapse: collapse;
    }

.has-table-borders {
    border-collapse: collapse;
}

    .has-table-borders th {
        border-right: 1px solid #ccc !important;
    }

    .has-table-borders td {
        border: 1px solid #ccc !important;
    }

        .has-table-borders td input {
            padding: 2px 6px !important;
        }

.table-style-1 {
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
}

    .table-style-1 th {
        color: #fff;
        background: #636363;
        padding: 5px;
        border: 1px solid #fff !important;
        box-shadow: 0 0 2px #fff !important;
    }

    .table-style-1 td {
        padding: 5px;
        border: 1px solid #ccc;
    }
/*--------------------------- Fixed Table header --------------------------*/

.popup-message-text {
    font-size: 13px;
    line-height: 15px;
    text-align: left !important;
}

    .popup-message-text h6 {
        font-size: 14px;
        color: #1d477a;
        margin-bottom: 5px;
        font-weight: 600;
    }

.title-bar h6 {
    margin-bottom: 5px;
    cursor: default;
}



.q-tab-container {
    float: left;
    width: 100%;
}

.q-tab-header {
    float: left;
    width: 100%;
    background: #f1f1f1;
    padding: 5px 10px;
}

.q-tab-nav-title {
    float: left;
    padding-top: 5px;
}

.q-tab-nav {
    float: left;
    padding: 5px;
}

.q-tab-nav-group {
    margin: 0;
}

    .q-tab-nav-group li {
        display: inline-block;
        list-style: none;
    }

        .q-tab-nav-group li a {
            padding: 5px 10px;
            border: 1px solid #cccccc;
            border-right: 0;
            color: var(--primary-color);
            text-decoration: none;
        }

        .q-tab-nav-group li:last-child a {
            border-right: 1px solid #cccccc;
        }

        .q-tab-nav-group li a.active-link {
            background: var(--primary-color);
            color: #FFFFFF;
            border: 1px solid var(--primary-color);
        }

.q-tab-time {
    float: right;
    padding-top: 5px;
    margin-left: 10px;
}

.q-tab-status {
    float: right;
    padding-top: 5px;
    margin-left: 10px;
}

.q-tab-body {
    float: left;
    width: 100%;
    min-height: 400px;
    border: 1px solid #cccccc;
    display: flex;
}

.q-tab-group {
    float: left;
    width: calc(100% - 200px);
    padding: 20px;
    overflow-y: auto;
    height: calc(100vh - 217px);
}

.q-tab-side-bar {
    float: left;
    width: 200px;
    padding: 20px;
    background: #F1f1f1;
}

.q-tab-item {
    float: left;
    width: 100%;
    display: none;
}

    .q-tab-item.active {
        display: block;
    }

.q-tab-btns {
    width: 100%;
    text-align: right;
    padding: 6px 0;
}

.question-group label {
    margin: 0;
}

.question-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

    .question-section li {
        list-style: none;
        width: 100%;
        float: left;
        display: flex;
        align-items: center;
        vertical-align: middle;
        padding: 4px 0;
    }

        .question-section li .form-check {
            float: left;
            padding-left: 0;
            /*width: 25px;*/
            /*margin-top: -17px;*/
        }

            .question-section li .form-check .checkmark p {
                margin: 0;
                margin-left: 50px;
                margin-top: -3px;
            }

        .question-section li .count-text {
            float: left;
            margin-left: 30px;
            margin-bottom: 0;
            margin-top: -2px;
        }

        .question-section li .check-box-text {
            margin-left: 10px;
            margin-top: -2px;
        }

            .question-section li .check-box-text p {
                margin: 0;
            }

.table-control {
    height: 23px;
    border-radius: 2px !important;
    outline: none !important;
    outline: none !important;
    border: 1px solid #adadad !important;
}

.width-50 {
    width: 50px;
}

.width-200 {
    width: 200px !important;
}

/*----------- Common Chart CSS Start Here -----------*/
.portal-chat-window {
    position: fixed;
    right: 0;
    top: 0;
    padding: 15px;
    height: 100vh;
    text-align: right;
    background: #fff;
    z-index: 111;
}

.chat-window-close {
    color: #e02020;
    border: 2px solid #e02020;
    outline: none !important;
    transition: all 0.6s ease;
    border-radius: 4px;
}

    .chat-window-close:hover {
        color: #fff;
        background: #e02020;
    }

.click-chat-window {
    position: fixed;
    height: calc(100vh - 60px);
    top: 60px;
    background: #FFF;
    padding: 10px;
    box-shadow: 0 0 5px #aaaaaa;
    transition: all 0.6s ease-in-out;
    z-index: 9;
    width: 0;
    right: -80px;
}

    .click-chat-window.active {
        width: auto;
        right: 0;
    }

.click-chat-window-close {
    position: absolute;
    left: -31px;
    top: 0px;
    font-size: 20px;
    padding: 0px 8px;
    color: #fff;
    background: #e02020;
    cursor: pointer;
    border: 1px solid #e02020;
    border-radius: 4px 0 0 4px;
    outline: none !important;
    transition: all 0.4s ease;
}

    .click-chat-window-close:hover {
        color: #e02020;
        background: #f5f5f5;
    }

.db-chat-form {
    float: left;
    position: relative;
    /*left: 15px;
    top: 15px;*/
    height: calc(100% - 0px);
    width: 350px;
    background: #fff;
    border: 1px solid #ccc;
    /*margin-right:15px;*/
    /*transition: all 0.6s ease;*/
    overflow: hidden;
    opacity: 1;
}

    .db-chat-form .chat-header {
        background: linear-gradient(to right, #1d402c 50%, var(--primary-color) 100%);
        padding: 4px 8px;
    }

        .db-chat-form .chat-header .title {
            float: left;
            color: #fff;
            font-size: 15px;
            /*padding-top: 4px;*/
            font-weight: 600;
            text-transform: uppercase;
        }

.chat-nav {
    width: 100%;
    padding: 4px;
    border-bottom: 1px solid #ccc;
}

    .chat-nav ul {
        padding: 0;
        margin: 0;
        float: left;
        text-align: left;
        width: calc(100% - 30px);
    }

    .chat-nav .chat-nav-right {
        float: right;
        width: 30px;
        text-align: right;
        position: relative;
    }

        .chat-nav .chat-nav-right .filter-pop {
            padding: 10px;
            right: 0;
            top: 27px;
            text-align: left;
            background: #f1f1f1;
            box-shadow: none;
            border: 1px solid #999;
        }

    .chat-nav .filter-pop .form-group {
        margin-bottom: 10px;
    }

    .chat-nav .filter-pop .form-control {
        height: 30px;
    }

    .chat-nav ul li {
        list-style-type: none;
        display: inline-block;
        font-size: 14px;
        line-height: 16px;
        font-weight: 600;
        margin-right: 20px;
        cursor: pointer;
        padding: 5px 15px;
        text-align: center;
        transition: all 0.6s ease;
    }

        .chat-nav ul li:last-child {
            margin-right: 0;
        }

        .chat-nav ul li.active {
            color: #fff;
            background: #00663b;
        }

    .chat-nav .filter-pop-btn-group {
        width: 100%;
        text-align: center;
    }

.chat-filter-section {
    padding: 4px;
    display: flex;
}

    .chat-filter-section .custom-btn-checkbox {
        width: 100%;
    }

        .chat-filter-section .custom-btn-checkbox:last-child {
            margin-right: 0px !important;
        }

.db-chat-form .filter-btn {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    outline: none !important;
    transition: 0.6s ease;
    margin-left: 4px;
}

    .db-chat-form .filter-btn:hover {
        color: #fff;
        background: var(--primary-color);
    }

/*---------- Custom button Check box ------------*/

.custom-btn-checkbox {
    float: left;
    min-width: 100px;
    margin-right: 4px;
}

.inputGroup {
    background-color: #fff;
    display: block;
    /*margin: 10px 0;*/
    position: relative;
}

    .inputGroup label {
        padding: 2px 4px;
        margin: 0;
        width: 100%;
        display: block;
        text-align: left;
        color: #3c454c;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: color 200ms ease-in;
        overflow: hidden;
        border: 1px solid #CCC;
        box-shadow: 0 0 3px #aaa;
        border: 1px solid #CCC;
        box-shadow: 0 0 3px #aaa;
        text-align: center;
        font-weight: 400;
        font-size: 14px;
    }

        .inputGroup label:hover {
            background: #eee;
        }

        .inputGroup label:before {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            content: "";
            background-color: var(--primary-color);
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transform: translate(-50%, -50%) scale3d(1, 1, 1);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            z-index: -1;
        }

    .inputGroup input:checked ~ label {
        color: #fff;
    }

        .inputGroup input:checked ~ label:before {
            -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
            transform: translate(-50%, -50%) scale3d(56, 56, 1);
            opacity: 1;
        }

        .inputGroup input:checked ~ label:after {
            background-color: #54e0c7;
            border-color: #54e0c7;
        }

    .inputGroup input {
        width: 32px;
        height: 32px;
        order: 1;
        z-index: 2;
        position: absolute;
        right: 30px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        cursor: pointer;
        visibility: hidden;
    }
/*-------------------------------*/

.chat-bottom-header.custom {
    display: flex;
    padding: 4px;
    border-bottom: 1px solid #ccc;
}

    .chat-bottom-header.custom input {
        padding: 0 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        height: calc(1.2em + 0.75rem + 2px);
    }

        .chat-bottom-header.custom input:focus {
            box-shadow: none !important;
        }

.chat-search-btn {
    font-size: 14px;
    padding: 4px 10px;
    color: #fca041;
    background: #fff;
    border: 1px solid #fca041;
    border-radius: 4px;
    cursor: pointer;
    outline: none !important;
    transition: all 0.6s ease;
    margin: 0px 0px 1px 5px;
}

    .chat-search-btn.active, .chat-search-btn:hover {
        color: #fff;
        background: #fca041;
    }

        .chat-search-btn.active:hover {
            background: #da8936;
        }

.click-chat-window .db-chat-form {
    height: calc(100vh - 80px);
}

.click-chat-window .chat-body {
    /*padding: 4px 15px;*/
    overflow-y: auto;
    height: calc(100vh - 189px);
}

.db-chat-form .chat-body {
    /*padding: 4px 15px;*/
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 172px);
    position: relative;
}

.more-loader {
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 2px 0;
    color: #209b60;
}

.more-loader-1 {
    position: absolute;
    top: 40%;
    left: 35%;
}

.uder-about {
    text-align: center;
}

.chat-users {
    display: flex;
    padding: 4px 5px;
    vertical-align: middle;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    transition: all 0.4s ease;
    word-wrap: break-word;
}

    .chat-users:hover {
        background: #f4f4f4;
    }

.chat-client {
    float: left;
    /*position: relative;*/
    right: 15px;
    top: 15px;
    width: 350px;
    height: calc(100% - 0px);
    background: #fff;
    border: 1px solid #ccc;
    margin-left: 15px;
}

.chat-users .chat-users1 {
    position: relative;
}

    .chat-users .chat-users1 .user-img-box {
        width: 35px;
        height: 35px;
        background: #ccc;
        border-radius: 50%;
        overflow: hidden;
    }

    .chat-users .chat-users1 img {
        width: auto;
        height: 35px;
        max-width: 100%;
    }

.chat-users .chat-users2 {
    width: calc(100% - 35px);
    padding: 0 0px 0 6px;
    position: relative;
}

.chat-users2 .uder-name {
    float: left;
    width: 100%;
    text-align: left;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
}

.new-msg {
    font-size: 14px;
    line-height: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.chat-users2 .uder-name label {
    float: left;
    width: calc(100% - 55px);
    margin: 0;
}

.chat-users2 .uder-name span {
    float: right;
    text-align: right;
    width: 55px;
    font-weight: normal;
    line-height: 13px;
    font-size: 11px;
}

.uder-about {
    font-size: 14px;
    line-height: 14px;
    text-align: left;
}

.chat-client .chat-client-header {
    padding: 4px 8px;
    background: linear-gradient(to right, #1d402c 50%, var(--primary-color) 100%);
    color: #fff;
    display: flex;
    align-items: center;
}

    .chat-client .chat-client-header .header-left {
        float: left;
        text-align: left;
        display: flex;
        align-items: center;
        vertical-align: middle;
        width: calc(100% - 105px);
        word-wrap: break-word;
        overflow: hidden;
    }

.client-chat-profile {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    overflow: hidden;
    margin-right: 4px;
    display: inline-table;
}

    .client-chat-profile img {
        width: auto;
        height: 40px;
        max-width: 100%;
    }

.client-chat-name {
    font-size: 13px;
    line-height: 15px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.2px;
    float: right;
    width: calc(100% - 40px);
    overflow: hidden;
}

.chat-client-header .header-right {
    width: 105px;
    padding: 0px 0px 0 2px;
    float: right;
    text-align: right;
    /*display: flex;*/
}

.client-info-btn {
    width: 30px;
    height: 30px;
    /*margin-left: 4px;*/
    font-size: 15px;
    color: #fff;
    border: 0;
    outline: none !important;
    background: #009c4c;
    border-radius: 50%;
    transition: all 0.6s ease;
}

    .client-info-btn.close-btn {
        background: #fca041 !important;
    }

    .client-info-btn:hover {
        color: #009c4c;
        background: #fff;
        box-shadow: 0 0 8px #000;
    }

    .client-info-btn.close-btn:hover {
        color: #fca041;
        background: #fff !important;
        box-shadow: 0 0 2px #fca041 !important;
    }

.chat-client-body {
    padding: 10px;
    height: calc(100vh - 132px);
    overflow-y: auto;
    position: relative;
}

    .chat-client-body .chat-users {
        border-bottom: 0;
    }

    .chat-client-body .chat-users2 {
        width: 100%;
    }

    .chat-client-body .chat-users:hover {
        background: #fff;
    }

    .chat-client-body .uder-about {
        font-size: 14px;
        text-align: center;
    }


.chat-date-select {
    background: #F1F1F1;
    font-weight: 600;
    padding: 2px 5px;
    text-align: center;
    float: left;
    width: 100%;
    margin-bottom: 5px;
    box-shadow: 0 0 1px #000;
}

.user-chat-text-box {
    text-align: right;
    display: flex;
    align-items: flex-start;
    vertical-align: middle;
}

.user-chat-text {
    width: 100%;
}

    .user-chat-text p {
        font-size: 14px;
        width: 100%;
        margin-bottom: 4px;
        color: #9e9e9e;
    }

        .user-chat-text p img {
            width: 100%;
            height: auto;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .user-chat-text p span {
            font-size: 14px;
            line-height: 16px;
            color: #fff;
            padding: 7px 8px 5px 15px;
            border-radius: 30px 4px 4px 30px;
            background: #2a5f42;
            display: inline-block;
        }

.chat-time {
    margin-top: -5px;
}

.client-chat-text-box {
    text-align: left;
    display: flex;
    align-items: flex-start;
    vertical-align: middle;
}

.client-chat-text-box-left {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ccc;
    margin-right: 8px;
}

    .client-chat-text-box-left img {
        width: 100%;
        height: auto;
    }

.client-chat-text-box-right {
    width: calc(100% - 30px);
}

    .client-chat-text-box-right p {
        font-size: 14px;
        width: 100%;
        margin-bottom: 4px;
        color: #9e9e9e;
    }

        .client-chat-text-box-right p img {
            width: 100%;
            height: auto;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .client-chat-text-box-right p span {
            font-size: 14px;
            line-height: 16px;
            color: #000;
            padding: 7px 15px 5px 8px;
            border-radius: 4px 30px 30px 4px;
            background: #f1f1f1;
            display: inline-block;
        }

.chat-client-footer {
    padding: 6px 6px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    border-top: 1px solid #ccc;
    position: relative;
}

.add-chat-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 5px;
    outline: none !important;
    transition: all 0.6s ease;
}

    .add-chat-btn:hover {
        color: #fff;
        background: linear-gradient(to right, #1d402c 50%, var(--primary-color) 100%);
    }

.chat-field-box {
    width: calc(100% - 40px);
    position: relative;
}

    .chat-field-box textarea {
        border-radius: 10px;
        background: #f4f4f4;
        border: 1px solid #ccc;
        padding: 2px 30px 2px 4px;
        height: 40px;
        font-size: 14px;
        line-height: 18px;
        overflow-y: hidden;
    }

    .chat-field-box input {
        border-radius: 30px;
        background: #f4f4f4;
        border: 1px solid #ccc;
        padding: 8px 35px 8px 10px;
    }

    .chat-field-box textarea:focus {
        box-shadow: none !important;
        border: 1px solid #001e57;
    }

    .chat-field-box input:focus {
        box-shadow: none !important;
        border: 1px solid #001e57;
    }

    .chat-field-box .send-btn {
        font-size: 18px;
        background: none;
        border: 0;
        color: #e97f00;
        position: absolute;
        right: 3px;
        top: 6px;
        outline: none !important;
    }
/*chat-added-image*/
.chat-added-image {
    width: 100px;
    /*max-height: 50px;*/
    border: 1px solid #000;
    margin: 0 10px 4px 0;
    position: absolute;
    bottom: 0px;
    left: 5px;
}

    .chat-added-image:hover {
        box-shadow: 0 0 3px #00663b;
    }

    .chat-added-image img {
        width: 100%;
        height: auto;
    }

.chat-added-image-close {
    font-size: 15px;
    color: #000;
    position: absolute;
    top: -16px;
    right: -16px;
    background: none;
    border: 0;
    outline: none !important;
}

.video-audio-frame {
    float: left;
    position: relative;
    /*left: 380px;*/
    height: calc(100% - 30px);
    width: calc(100vw - 795px);
    margin-left: 15px;
}

    .video-audio-frame.full-width {
        padding: 30px;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 2;
        background: #fff;
    }

        .video-audio-frame.full-width > .video-audio-display {
            height: calc(100vh - 165px);
        }

            .video-audio-frame.full-width > .video-audio-display > video {
                width: 100%;
                height: inherit;
                margin: 0;
            }

.chat-list-hide .video-audio-frame {
    /*width: calc(100vw - 850px);*/
}

.video-audio-display {
    float: left;
    position: relative;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 20px;
    overflow: hidden;
    /*height: calc(100vh - 250px);*/
    height: calc(100vh - 230px);
    position: relative;
}

    .video-audio-display img {
        max-width: 100%;
        width: 100%;
        height: 100%;
    }


.call-connect-text {
    color: #FFF;
    position: absolute;
    width: 100%;
    padding: 8px 10px;
    transition: all 0.6s ease;
    background: #f7b500;
}

.call-time {
    position: absolute;
    bottom: 30px;
    z-index: 10;
    left: calc(50% - 35px);
    width: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f7b500;
    background: #f7b500;
    text-align: center;
    font-weight: 500;
}

.self-video {
    position: absolute;
    top: calc(50% - 40px);
    z-index: 10;
    right: 15px;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #FFFFFF;
}

    .self-video > video {
        margin: 0;
        width: 100%;
        height: auto;
    }

.video-audio-title {
    float: left;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #000000;
}

.video-audio-controls {
    float: left;
    width: 100%;
    border: 1px solid #444444;
    background: #444444;
    border-radius: 15px;
    text-align: center;
    padding: 10px;
    position: relative;
}

.video-audio-controls-group {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-audio-controls .icon-btn {
    width: 40px;
    height: 40px;
    /*float:left;*/
    background: #FFF;
    padding: 10px;
    color: #000000;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

    .video-audio-controls .icon-btn:hover {
        background: #cacaca;
    }

    .video-audio-controls .icon-btn.call-btn {
        border-radius: 10px !important;
        background: #e02020;
        color: #FFF;
        width: 45px;
        height: 45px;
        padding: 9px 5px;
        font-size: 20px;
        cursor: pointer;
        transition: all 0.4s ease;
    }

        .video-audio-controls .icon-btn.call-btn:hover {
            background: #b31a1a;
        }

.video-audio-controls .chat-collaps-trigger {
    position: absolute;
    left: 5px;
    width: 40px;
    height: 40px;
    background: #00663b;
    padding: 10px;
    color: #FFFFFF;
    margin: 0 10px;
    border-radius: 10px;
    top: 13px;
    box-shadow: 0 0 5px #000000;
    border: 1px solid #00663b;
    transition: all 0.4s ease;
    cursor: pointer;
}

    .video-audio-controls .chat-collaps-trigger:hover {
        background: #024e2e;
    }

.video-audio-controls .user-chat-collaps-trigger {
    position: absolute;
    right: 5px;
    width: 40px;
    height: 40px;
    background: #00663b;
    padding: 10px;
    color: #FFFFFF;
    margin: 0 10px;
    border-radius: 10px;
    top: 13px;
    box-shadow: 0 0 5px #000000;
    border: 1px solid #00663b;
    transition: all 0.4s ease;
    cursor: pointer;
}

    .video-audio-controls .user-chat-collaps-trigger:hover {
        background: #024e2e;
    }

.user-video {
    width: 100%;
    margin: 0;
    height: 100%;
    display: block;
}

/*Chat More Loader*/

/*.more-loader {
    font-size: 14px;
    color: #00984f;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.more-loader-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgb(0 0 0 / 0.3);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.loader-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
}*/

.database-list-grid {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow: hidden;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: all 0.6s ease;
}

    .database-list-grid:hover {
        border-color: #999;
    }

    .database-list-grid .form-group {
        margin-bottom: 5px;
    }

.database-logo img {
    max-width: 100px;
}

.database-list-grid h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.database-list-grid p {
    font-size: 13px;
    margin: 0;
}

.text-btn {
    font-size: 14px;
    font-weight: 600;
    background: none;
    border: none;
    outline: none !important;
    color: var(--primary-color) !important;
    cursor: pointer;
}

.database-list-grid-left {
    float: left;
    width: calc(100% - 120px);
}

.database-list-grid-right {
    float: right;
    width: 120px;
    text-align: center;
    padding-left: 10px;
}


/*Bottom Popup Start Here*/
.survey-popup-wrapper {
    position: fixed;
    right: -800px;
    top: 0;
    width: 100%;
    background: rgb(0 0 0 / 50%);
    transition: all 0.6s ease-in-out;
    z-index: 111;
    display: block;
}

    .survey-popup-wrapper.active {
        right: 0;
        height: 100vh;
    }

.survey-popup {
    width: 800px;
    position: absolute;
    top: 0px;
    right: 0px;
    color: #000;
    background: #fff;
    border-left: 1px solid #ccc;
}

.survey-pop-trigger {
    position: absolute;
    left: -29px;
    top: 50px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    padding: 10px 5px;
    border-radius: 4px 0 0 4px;
    color: #fff;
    background: rgb(0 0 0 / 70%);
    outline: none !important;
    border: 1px solid #000;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: -1px 0 4px #ccc;
    writing-mode: vertical-lr !important;
    text-orientation: upright;
    transition: all 0.6s ease;
}

    .survey-pop-trigger:hover {
        background: #000;
    }

.survey-popup-header {
    padding: 10px 15px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: #116644;
    text-align: center;
    border-bottom: 1px solid #ccc;
    letter-spacing: 0.6px;
}

.survey-popup-body {
    padding: 10px 15px;
    overflow-y: auto;
    height: calc(100vh - 84px);
}

.survey-popup .gates-preview-item {
    margin-bottom: 10px;
}

.survey-popup .fancy-checkbox.custom-color-green input[type="checkbox"]:checked + span:before {
    border-color: #1d5230;
}

.survey-popup-footer {
    padding: 10px 15px;
    border-top: 1px solid #ccc;
}

.survey-pop-btn {
    float: right;
    cursor: pointer;
    padding: 2px 12px;
    color: #fff;
    background: #1c8955;
    border: 1px solid #209b60;
    border-radius: 4px;
    outline: none !important;
    font-weight: 600;
    transition: all 0.6s ease;
}

    .survey-pop-btn:hover {
        background: #15653f;
    }

.survey-pop-btn-1 {
    float: left;
    color: #000;
    cursor: pointer;
    padding: 2px 10px 2px 0;
    outline: none !important;
    border-radius: 4px;
    background: none;
    font-weight: 600;
    transition: all 0.6s ease;
}

    .survey-pop-btn-1:hover {
        color: #6c6c6c;
    }

.survey-popup .fancy-checkbox.custom-color-green input[type="checkbox"]:checked + span:before {
    background-color: #318850;
}





/* IDMS Custom collaps Panel */
.idms-collaps-panel {
    float: left;
    width: 100%;
    padding: 15px;
}

.idms-collaps-item {
    float: left;
    width: 100%;
    margin-bottom: 5px;
}

.idms-collaps-item-title {
    float: left;
    position: relative;
    width: 100%;
    padding: 8px 10px;
    background: #f1f1f1;
    color: #333;
    cursor: pointer;
    border: 1px solid #d1d1d1;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.6s ease;
}

    .idms-collaps-item-title.active {
        background: #666;
        color: #FFF;
    }

    .idms-collaps-item-title::after {
        position: absolute;
        right: 0px;
        top: 0px;
        height: 100%;
        vertical-align: middle;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-size: 16px;
        font-weight: 900;
        color: #222;
        transition: all 0.6s ease;
        padding: 8px 20px;
        transform: rotate(0deg);
    }

    .idms-collaps-item-title.active::after {
        transform: rotate(180deg);
        color: #FFF;
        top: 2px;
    }

.idms-collaps-item-content {
    float: left;
    width: 100%;
    padding: 0px 10px;
    max-height: 0;
    transition: all 0.6s ease;
    border: 0px solid #ddd;
    overflow: hidden;
}

.idms-collaps-item.collaps-active .idms-collaps-item-content {
    padding: 10px 10px;
    max-height: 12000px;
    border: 1px solid #ddd;
    overflow: inherit;
}
/*   gates movements  */

.gates-custom-container {
    float: left;
    width: 100%;
}

.gates-item-block {
    float: left;
    width: 100%;
}

.gates-preview-item {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    /*padding: 0 15px;*/
}

.category-preview-item {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.gares-category-title {
    float: left;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #CCC;
    font-size: 16px;
    text-transform: uppercase;
}

.gates-item-controls {
    float: left;
    width: 100%;
    padding: 10px 0 0 0;
}


.gates-date-btn {
    float: right;
    margin: -0px 0 0 0;
    position: relative;
    z-index: 4;
    border-radius: 0;
}

    .gates-date-btn .btn {
        font-size: 14px;
        border: 1px solid #adadad;
        border-left: 0;
        padding: 6px 10px;
        border-radius: 0 5px 5px 0;
    }

.gates-btn {
    width: 100%;
    text-align: center;
    padding: 4px 15px;
    color: #000;
    border: 1px solid #ddd;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none !important;
    box-shadow: none !important;
    background: #f1f1f1;
    margin-bottom: 5px;
}

.smartfield {
    display: none;
}

/*    fancy checkbox    */
.fancy-checkbox {
    margin-right: 10px;
}

.cust-fancy-checkbox {
    margin-right: 0px;
    margin-bottom: 0px;
}

.fancy-checkbox,
.fancy-checkbox label {
    font-weight: normal;
}

    .fancy-checkbox input[type="checkbox"] {
        display: none;
    }

        .fancy-checkbox input[type="checkbox"] + span {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            cursor: pointer;
            position: relative;
        }

            .fancy-checkbox input[type="checkbox"] + span:before {
                display: inline-block;
                vertical-align: middle;
                *vertical-align: auto;
                *zoom: 1;
                *display: inline;
                position: relative;
                bottom: 1px;
                width: 24px;
                height: 24px;
                margin-right: 10px;
                content: "";
                border: 1px solid #ccc;
                border-radius: 3px;
            }

.cust-fancy-checkbox input[type="checkbox"] + span:before {
    width: 16px;
    height: 16px;
    margin-right: 3px;
    border: 2px solid #666;
}

.fancy-checkbox input[type="checkbox"]:checked + span:before {
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 24px;
    font-weight: 900;
}

.cust-fancy-checkbox input[type="checkbox"]:checked + span:before {
    line-height: 16px;
    font-size: 10px;
}

.fancy-checkbox.custom-color-green input[type="checkbox"]:checked + span:before {
    color: #FFF;
    background-color: #1d402c;
    border-color: #1d402c;
}

.fancy-checkbox.cust-fancy-checkbox input[type="checkbox"]:checked + span:before {
    color: #FFF;
    background-color: #001e57;
    border-color: #001e57;
}

/*   fancy radio   */

.fancy-radio {
    margin-right: 10px;
}

    .fancy-radio,
    .fancy-radio label {
        font-weight: normal;
    }

        .fancy-radio input[type="radio"] {
            display: none;
        }

            .fancy-radio input[type="radio"] + span {
                display: block;
                cursor: pointer;
                position: relative;
            }

                .fancy-radio input[type="radio"] + span i {
                    display: inline-block;
                    vertical-align: middle;
                    *vertical-align: auto;
                    *zoom: 1;
                    *display: inline;
                    -webkit-border-radius: 8px;
                    -moz-border-radius: 8px;
                    border-radius: 8px;
                    position: relative;
                    bottom: 1px;
                    content: "";
                    border: 1px solid #ccc;
                    width: 18px;
                    height: 18px;
                    margin-right: 5px;
                }

            .fancy-radio input[type="radio"]:checked + span i:after {
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                border-radius: 50%;
                display: block;
                position: relative;
                top: 3px;
                left: 3px;
                content: '';
                width: 10px;
                height: 10px;
                background-color: #7b848c;
            }

        .fancy-radio.custom-color-green input[type="radio"]:checked + span i:after {
            background-color: #53D76A;
        }

        .fancy-radio.custom-bgcolor-green input[type="radio"]:checked + span i {
            background-color: #53D76A;
        }

            .fancy-radio.custom-bgcolor-green input[type="radio"]:checked + span i:after {
                background-color: #fff;
            }

.input-group-addon .fancy-radio,
.input-group-addon .fancy-checkbox {
    margin: 0;
    position: relative;
    top: 1px;
}

    .input-group-addon .fancy-radio input[type="radio"] + span i,
    .input-group-addon .fancy-checkbox input[type="checkbox"] + span {
        margin: 0;
    }

        .input-group-addon .fancy-radio input[type="radio"] + span i:before,
        .input-group-addon .fancy-checkbox input[type="checkbox"] + span:before {
            margin: 0;
        }


.range-slider {
    width: 100%; /*#07a2df*/
}
/*   Range Slider   */
.range-slide-container {
    width: 100%;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 12px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .range-slider:hover {
        opacity: 1;
    }

    .range-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        background: #07a2df;
        cursor: pointer;
        border: 1px solid #001e57;
        box-shadow: 0 0 5px #999;
        border-radius: 50%;
    }

    .range-slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #E48444;
        cursor: pointer;
        border: 1px solid #E48444;
        box-shadow: 0 0 5px #999;
    }

.left-bar ~ * select:focus .left-bar ~ select:focus {
    display: none;
}
/*custom-file-upload*/
.custom-file-upload {
}

    .custom-file-upload .file-upload-button {
        float: right;
        width: 78px;
        border: 0;
        padding: 4px;
        background: #888;
        color: #fff;
        padding: 7px 15px;
        outline: none !important;
        border-radius: 0 3px 3px 0;
    }

    .custom-file-upload input {
        float: left;
        width: calc(100% - 78px);
        background: #f1f1f1;
        border: 1px solid #ced4da;
        padding: 10px;
        border-radius: 3px 0 0px 3px;
    }
/*added ruby hari end*/


.signBox {
    width: 310px;
    overflow: hidden;
    text-align: right;
}

.signBox-inner {
    text-align: left;
    border: 1px solid #ccc;
    margin-bottom: 5px;
}


.signBox-btn {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #C51F30;
    border: 1px solid #C51F30;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .signBox-btn:hover {
        background: #b31c2c;
    }




/*--------------- Web Pdf css Start here ------------------------*/

.pdf-editor-section {
}

.pdf-editor-header {
    padding: 0px 15px;
    border-bottom: 1px solid #636363;
}

.pdf-editor-header-box {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.header-box-1 {
    width: 100% !important;
    padding: 4px 8px 4px 0;
}

    .header-box-1 .flex-box {
        font-weight: 600;
        padding-right: 15px;
    }

.main-title {
    font-size: 16px;
    line-height: 18px;
    padding-bottom: 4px;
    color: #006c3e;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pdf-tools {
    width: 52px;
    height: calc(100vh - 173px);
    padding: 4px 8px 4px 8px;
    float: left;
    text-align: center;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #636363;
}

.pdf-body {
    width: 100%;
    float: left;
}

.pdf-emb-code {
    height: calc(100vh - 122px);
}

.pdf-editor-box {
    float: left;
    width: 100%;
}

.pdf-editor-content-box {
    width: calc(100% - 52px);
    height: calc(100vh - 174px) !important;
    overflow-y: auto;
    /*overflow-x: auto;*/
    /*padding: 10px*/;
    /*background: #ccc;*/
    float: left;
    position: relative;
    z-index: 1;
}

.pdf-doc-editor {
    width: 100%;
    height: calc(100vh - 174px) !important;
    overflow-y: auto;
    /*margin-left: 200px;
    margin: 10px auto;*/
    overflow-x: hidden;
    /*position:relative;
    z-index: 9;*/
}

.delete-tool {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px;
    color: #FF0000;
    max-width: 60px;
    border: 1px solid #ff0000;
    background: rgba(255, 0, 0, 0.03);
    font-size: 22px;
    text-align: center;
    z-index: 99;
}

.page-each {
    position: relative;
    margin-bottom: 40px;
    float: left;
    display: none;
}

    .page-each.current-page {
        display: inline;
    }

.canvas-edit {
    border: 1px solid black;
    position: absolute;
    /*background: rgba(0,0,0,0.1);*/
    width: 100%;
    height: 100% !important;
    left: 0;
    top: 0;
}

.pdf-tool-bar {
    padding: 10px 15px;
    background: #f5f5f5;
}

.display-flex {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.page-nav {
    width: 100%;
    display: flex;
    vertical-align: middle;
    align-items: center;
}

    .page-nav input {
        width: 70px;
        outline: none !important;
        border: 1px solid #adadad;
    }
/*.pages-counter .flex-box {
    padding: 2px 10px;
    color: #999;
}*/

/*.pages-counter .flex-box i {
        font-size: 20px;
        line-height: 23px;
        display: flex;
    }*/
/*.pages-counter .flex-box:hover{
	background: #f1f1f1;
}*/
.flex-box-1 {
    padding: 4px;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 35px;
    height: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    transition: all 0.6s ease;
    background: #fff;
}

    .flex-box-1:hover {
        background: #f1f1f1;
    }

.flex-box-2 {
    padding: 4px;
    color: #999;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 23px;
    float: right;
    transition: all 0.6s ease;
    cursor: pointer;
    position: relative;
}

    .flex-box-2:hover {
        background: #f1f1f1;
    }

.flex-box-dropdown {
    position: absolute;
    left: 40px;
    background: #FFFFFF;
    width: 110px;
    padding: 10px 10px 0 10px;
    z-index: 99;
    top: 0px;
    box-shadow: 2px 0 3px #aaaaaa;
}

.oval {
    transform: scale(1,0.7);
}

.flex-box p {
    margin: 0;
}

.flex-box-2 select {
    padding: 4px 2px !important;
    height: 25px !important;
}

.pages-counter {
    width: 170px;
    margin: 0 auto !important;
    font-size: 16px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ccc;
    margin: 0 10px;
    background: #fff;
}

    .pages-counter .flex-box {
        border-right: 1px solid #ccc;
    }

        .pages-counter .flex-box:last-child {
            border-right: 0;
        }

.pdf-tool-bar-left {
    float: left;
}

.pdf-tool-bar-right {
    float: right;
}

.pdf-tool-bar-left .flex-box-1 {
    margin-right: 10px;
}

.tool-boxes {
    float: right;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
    width: 32px;
}

    .tool-boxes .flex-box-2 {
        border-bottom: 1px solid #ccc;
        position: relative;
    }


        .tool-boxes .flex-box-2:last-child {
            border-bottom: 0;
        }

.tool-boxes-dropdown {
    position: absolute;
    background: #f5f5f5;
    top: 0;
    left: 34px;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 22;
}

    .tool-boxes-dropdown ul {
        padding: 0;
        margin: 0;
    }

        .tool-boxes-dropdown ul li {
            list-style-type: none;
            border-bottom: 1px solid #ccc;
        }

            .tool-boxes-dropdown ul li:last-child {
                border-bottom: 0;
            }

.tool-items {
    display: flex;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
}

.tool-item-1 {
    font-size: 14px;
    line-height: 15px;
    color: #000;
    width: 30px;
    padding: 6px 4px;
    transition: all 0.3s ease;
}

    .tool-item-1:hover {
        background: #ccc;
    }


.pdf-editor-right {
    float: right;
    width: 400px;
    position: fixed;
    top: 65px;
    right: -400px;
    padding: 15px;
    overflow-y: auto;
    height: calc(100vh - 55px);
    background: #f5f5f5;
    border-left: 1px solid #ccc;
    transition: ease-in-out 0.6s all;
}

.submit-box {
    padding: 10px;
    width: 100%;
    background: #c6f6ce;
}

    .submit-box p {
        margin: 0;
        font-size: 16px;
    }

.upload-doc-section {
    padding: 15px 0;
}

    .upload-doc-section h6 {
        color: #006c3e;
    }

.doc-time {
    text-align: right;
    font-size: 14px;
}

.grade-view {
    padding: 0 0 20px 0;
}

    .grade-view a {
        color: #006c3e;
        font-weight: 600;
        text-decoration: none;
    }


.grade-section {
    border: 1px solid #999;
    padding: 15px;
}

.grade-header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

    .grade-header p {
        float: left;
        margin: 0;
    }

    .grade-header span {
        float: right;
    }

.grade-box {
    padding: 8px 0px;
    border-bottom: 1px solid #ccc;
}

.grade-box-left {
    float: left;
    width: 50%;
}

    .grade-box-left h6 {
        margin: 0;
    }

    .grade-box-left p {
        margin: 0;
        font-size: 14px;
    }

.grade-box-right p {
    margin: 0;
    text-align: right;
    font-size: 14px;
    line-height: 16px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.pdf-editor-footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ccc;
}

.footer-check-box {
}

.primary-btn {
    font-size: 15px;
    color: #333;
    background: #ccc;
    border: 1px solid #ccc;
    padding: 2px 10px;
    transition: all 0.6s ease;
    cursor: pointer;
    outline: none !important;
}

    .primary-btn:hover {
        background: #abaaaa;
    }

    .primary-btn.active {
        color: #fff;
        background: #1E656D;
        border: 1px solid #1E656D;
    }

        .primary-btn.active:hover {
            box-shadow: 0 0 8px #1E656D;
        }

.mask {
    position: absolute;
    top: 120px;
    left: 1px;
    width: calc(100% - 67px);
    margin-left: 49px;
    height: calc(100vh - 119px);
    border: 3px solid #73AD21;
}

#myCanvas {
    position: relative;
    display: block;
    background-color: rgba(58, 154, 221, 0.3);
    height: calc(100vh - 125px) !important;
}

.WrongBtn {
    position: absolute;
    left: 43%;
    top: 247px;
    margin: 0 auto;
}

.RightBtn {
    position: absolute;
    left: 58%;
    top: 247px;
    margin: 0 auto;
}

.EraseBtn {
    position: absolute;
    right: 50%;
    top: 247px;
    margin: 0 auto;
}

.EraseBtn1 {
    position: absolute;
    left: 50%;
    top: 247px;
    margin: 0 auto;
}

#ImageTickmarkid {
    position: absolute;
    left: 50%;
    top: 247px;
    margin: 0 auto;
}

.Imgclass {
    position: absolute;
    top: 247px;
    margin: 0 auto;
    color: #218838;
}

.ImgWrongclass {
    position: absolute;
    top: 247px;
    margin: 0 auto;
    color: #218838;
}

.CircleBtn {
    position: absolute;
    left: 80%;
    top: 247px;
    margin: 0 auto;
}

.RectBtn {
    position: absolute;
    left: 70%;
    top: 247px;
    margin: 0 auto;
}
/*--------------- hanburge menu css start here --------------*/
.hamburge-menu {
    width: 36px;
    height: 35px;
    padding: 4px;
    position: absolute;
    left: -20px;
    top: 7px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    background: #f5f5f5;
}


.bar1, .bar2, .bar3 {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-3px, 6px);
    transform: rotate(-45deg) translate(-3px, 6px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-4px, -7px);
    transform: rotate(45deg) translate(-4px, -7px);
}
/*--------------- hanburge menu End css --------------*/

.commet-input {
    position: absolute !important;
    padding: 8px;
    background: #5a5a5a;
    z-index: 1000 !important;
    border-radius: 8px;
    margin-top: -40px;
    transition: all 0.6s ease;
    width: 30px;
    height: 30px;
}

    .commet-input:hover {
        margin-top: -110px !important;
        width: 250px;
        height: 100px !important;
    }

    .commet-input::after {
        content: "";
        position: absolute;
        left: 9px;
        bottom: -9px;
        width: 0;
        height: 0;
        border-top: 10px solid #5a5a5a;
        border-right: 13px solid transparent;
    }

    .commet-input::before {
        content: "";
        position: absolute;
        left: 9px;
        bottom: -12px;
        width: 0;
        height: 0;
        border-top: 13px solid #5a5a5a;
        border-right: 15px solid transparent;
    }

    .commet-input textarea {
        position: relative;
        border: 0 !important;
        display: block;
        border-radius: 8px;
        padding: 6px;
        background: #5a5a5a;
        color: #fff;
        width: 100% !important;
        height: 100% !important;
        opacity: 0;
        transition: all 0.6s ease;
    }

    .commet-input:hover textarea {
        opacity: 1;
    }

    .commet-input textarea:focus {
        outline: none !important;
    }
/*--------------- Web Pdf css End here ------------------------*/

/*-------------------------  Marks Preview box start------------------------------*/
.validate-form-block {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s ease;
}

    .validate-form-block.validate-show {
        visibility: visible;
        opacity: 1;
    }

.validate-form-container {
    position: absolute;
    top: 50px;
    left: calc(50% - 300px);
    background: #FFF;
    width: 600px;
    box-shadow: 0 0 5px #000;
    border-radius: 6px;
}

.validate-form-title {
    padding: 10px;
    background: #f1f1f1;
    color: #218838;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 0 2px #000;
    border-radius: 6px 6px 0px 0px;
}

.validate-form {
    float: left;
    width: 100%;
    padding: 15px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
}

    .validate-form ol {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .validate-form ol ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .validate-form ol > li:first-child {
            margin-bottom: 20px;
        }

        .validate-form ol > li:last-child {
            margin-top: 20px;
        }

/*.validation-table {
    width: 100%;
}
.validation-table th{

}
    .validation-table td,  {
        padding: 4px;
    }*/

.validate-form-btns {
    float: left;
    width: 100%;
    padding: 5px 10px;
    background: #f1f1f1;
    color: #218838;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0 2px #000;
}

.validate-btn {
    border: none;
    background: #218838;
    padding: 4px 10px;
    color: #FFF;
    border-radius: 4px;
    color: #FFF !important;
    cursor: pointer;
    font-size: 14px;
}
/*-------------------------  Marks Preview box end------------------------------*/


.fc-more-popover .ui-widget-header {
    background-color: var(--primary-color) !important;
}

.fc .fc-button-group > * {
    margin: 0 0 0 4px !important;
}

.alert-warning {
    padding: 4px 8px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}


.hideHeaderNslideBar {
    display: none;
}

.showHeaderNslideBar {
    display: inline;
}

.control-group {
    width: 100%;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    word-wrap: break-word;
    border: 1px solid #ccc;
}

.warning-icon {
    font-size: 40px;
    text-align: center;
    width: 100%;
    display: block;
    color: #ff8c00;
}

.sso-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 100;
    top: 0;
    left: 0;
}

.sso-error-block {
    float: left;
    width: 100%;
    padding: 100px 0;
}

.sso-error-img {
    float: left;
    width: 100%;
    max-height: calc(100vh - 200px);
    text-align: center;
}

    .sso-error-img img {
        max-height: calc(100vh - 300px);
        max-width: 100%;
    }

.sso-error-msg {
    float: left;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

    .sso-error-msg h4 {
        color: #ff0000;
        font-size: 28px;
        font-weight: 600;
    }

    .sso-error-msg p {
        color: #000000;
        font-size: 14px;
        font-weight: 400;
    }

.moodle-connecect {
    position: fixed;
    font-size: 12px;
    top: 50px;
    right: 35px;
    color: #666666;
    padding: 0px 10px 2px 10px;
    background: #FFF;
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
}

.color-1 {
    color: #209b60;
}

.news-group.sub.custom {
    margin-left: 0;
    margin-bottom: 25px;
}

    .news-group.sub.custom .news-group-right.sub {
        width: 100%;
        padding: 12px 6px 17px 6px;
        /*margin: 0 auto;*/
    }

    .news-group.sub.custom .news-group-left.sub {
        margin: 0 auto;
        float: none;
        width: 100px;
        height: 100px;
    }

    .news-group.sub.custom .info-footer {
        padding: 0 6px;
    }

    .news-group.sub.custom .news-group-left .news-image {
        border: none;
        background: none;
    }

.otp-form .form-group {
    margin-bottom: 10px;
}





/*  Red and Yellow */

.subject-section {
    background: rgba(241, 206, 0, 0.4);
}

.qr-code-scan p span.download a {
    color: var(--secondary-color);
}

.color-1 {
    color: var(--secondary-color);
}

.main-popup-header {
    background: linear-gradient(to bottom, #ac0000 0%, var(--secondary-color) 100%);
}

.exam-details-section .btn-green {
    background: var(--secondary-color);
}

.add-form-close-btn:hover {
    background: rgba(241, 206, 0, 1);
}

.popup-btn.active:hover {
    background: rgba(241, 206, 0, 1);
}

.subject-popup-close:hover {
    background: var(--secondary-color);
}

.new-request:hover {
    border: 1px solid rgba(241, 206, 0, 1);
    background: rgba(241, 206, 0, 1);
}

.form-box-info {
    float: left;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #DDD;
    padding: 15px 15px 5px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    word-break: break-word;
}

.step-tab-check-btn {
    float: left;
    width: 100%;
}

table .row-validate, .data-table .row-validate td {
    background: #ffb9b9 !important;
}

/*  polls design start */

.polls-wrapper {
    position: fixed;
    bottom: -400px;
    right: 100px;
    height: 400px;
    width: 400px;
    background: #FFF;
    transition: all 0.6s ease;
    z-index: 99;
    box-shadow: 0 0 5px #999;
    display: none;
}

    .polls-wrapper.active {
        bottom: 0;
    }

.polls-trigger {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 30px;
    height: 30px;
    background: #ff0000;
    color: #FFF;
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.polls-wrapper.active .polls-trigger {
    right: 5px;
    top: 5px;
}

.polls-inner {
    float: left;
    width: 100%;
}

.polls-header {
    float: left;
    width: 100%;
    padding: 5px 10px;
    background: #333;
    color: #FFF;
    font-size: 20px;
}

.polls-body {
    float: left;
    width: 100%;
    padding: 15px;
}

/*  polls design end */





.grid-style-1 {
    width: 100%;
    display: block;
    padding: 0 0 4px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 16px;
}

.grid-box {
    width: 100%;
    padding: 5px;
    background: #f6f6f6;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    min-height: 60px;
    transition: all 0.3s ease;
}

    .grid-box:hover {
        background: #f2f2f2;
        border-color: #b7b4b4;
    }

    .grid-box label {
        font-weight: 600;
        margin-bottom: 3px;
        color: var(--secondary-color);
    }

    .grid-box span {
        width: 100%;
        display: block;
        min-height: 32px;
    }

.download-active {
    color: #07c307;
    cursor: pointer;
    outline: none !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .download-active:hover {
        color: #06b106;
    }

.download-inactive {
    color: #999999;
    cursor: not-allowed;
}


table .tooltip {
    position: absolute;
    z-index: 10;
}

table tr td {
    position: relative;
    z-index: 2;
}


.form-content-holder {
    float: left;
    width: 100%;
    padding: 20px;
    background: #FFF;
    font-size: 16px;
}

.form-content-top {
    float: left;
    width: 100%;
    background: #FFF;
}

.form-content-display {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.two-col-display {
    display: flex;
    margin-bottom: 10px;
}

    .two-col-display div:first-child {
        padding-right: 40px;
        width: 400px;
    }
/* ----------- Collaps table Css Start Here --------------*/

.collaps-panel {
    float: left;
    width: 100%;
    padding: 0;
}

.collaps-item {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.collaps-item-title {
    float: left;
    width: 100%;
    background: #10af75;
    color: #FFFFFF;
    padding: 5px 35px 5px 15px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    /*align-items: center;*/
    line-height: 30px;
}

    .collaps-item-title::after {
        content: '\f0dd';
        position: absolute;
        color: #fff;
        font-size: 18px;
        top: calc(50% - 17px);
        right: 15px;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        transition: all 0.6s ease;
    }

.collaps-item-content {
    float: left;
    width: 100%;
    background: #fbfbfb;
    padding: 0px 15px;
    max-height: 0;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
    transition: all 0.6s ease;
}

    .collaps-item-content a {
        color: #00aa36;
        text-decoration: none;
        font-weight: 600;
    }

.collaps-item.active > .collaps-item-content {
    padding: 15px;
    max-height: 2000px;
    overflow-y: auto;
    border: 1px solid #ccc;
}

.collaps-item.active .collaps-item-title::after {
    top: calc(50% - 9px);
    right: 20px;
    transform: rotate(-90deg);
}

.collaps-item-content .dynamic-data {
    background: #ececec !important;
}

    .collaps-item-content .dynamic-data:hover {
        background: #e3e1e1 !important;
    }
/* ----------- Collaps table Css End Here --------------*/


.collaps-content-list li {
    padding: 0 0 10px 0;
}

.collaps-content-list > li > ul > li {
    list-style: circle;
}

.rsvp-fields-group {
    float: left;
    width: 100%;
    padding: 20px;
    background: #f1f1f1;
    margin-top: 30px;
}

.rsvp-fields-title {
    color: #04ac00;
    font-size: 20px;
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.rsvp-form-footer {
    float: left;
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.rsvp-nodata {
    float: left;
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    text-align: center;
}

.grad-process-display {
    float: left;
    width: 100%;
    padding: 20px 20px 10px 20px;
    background: #eef6ee;
    border-radius: 10px;
    border: 1px solid #04ac00;
    margin-bottom: 30px;
}

    .grad-process-display h4 {
        width: 100%;
        font-size: 22px;
        text-align: left;
        padding: 10px;
        background: var(--secondary-color);
        color: #FFF;
    }

.rsvp-steps {
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

.rsvp-steps-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    position: relative;
    padding: 15px 35px;
    list-style-type: none;
    transition: 0.4s ease-in-out;
}

    .rsvp-steps-item:hover {
        background: #FFFFFF;
    }

.rsvp-steps-title {
    display: block;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 20px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-top: 30px;
}

.rsvp-steps-subtitle {
    display: block;
    font-size: 16px;
    color: #444;
    margin-top: 30px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .rsvp-steps {
        display: inline-block;
    }

    .rsvp-steps-item {
        width: 49%;
        display: inline-block;
    }
}

@media (min-width: 1200px) {
    .rsvp-steps {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .rsvp-steps-item {
        width: 100%;
    }

        .rsvp-steps-item:not(:last-of-type)::after {
            content: "";
            width: 1px;
            height: 75%;
            background: #8c8c8c;
            position: absolute;
            right: 0;
            top: 50%;
            opacity: 0.2;
            transform: translateY(-50%);
        }
}

.RSVP-response {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 120px;
    color: #04ac00;
}

.height-auto {
    height: auto !important;
}

.text-bold {
    font-weight: 600 !important;
}

.declaration-section {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}

.declaration-title-2 {
    float: left;
    width: 100%;
    background: #333;
    color: #FFF;
    font-size: 24px;
    padding: 5px 15px;
    margin-bottom: 30px;
}

.graduation-cermony-success {
    background-color: var(--secondary-color);
    color: #FFF;
    letter-spacing: 0.5px;
    font-size: 18px;
    font-weight: 400;
}

.graduation-cermony-msg {
    background: rgba(0,0,0,0.05);
    padding: 40px 20px 20px 20px;
    float: left;
    width: 100%;
    border-radius: 20px;
    border: 4px solid rgba(0,0,0,0.1);
}

    .graduation-cermony-msg i {
        font-size: 128px;
        color: var(--secondary-color);
        margin-bottom: 30px;
    }

.grad-cerm-block {
    background: #dffff0;
    padding: 30px 15px 15px 15px;
    border: 4px solid #FFF;
    box-shadow: 0 0 10px #aaa;
    border-radius: 8px;
    position: relative;
    height: 100%;
}

.gard-reg-no {
    position: absolute;
    top: -20px;
    left: 10px;
    padding: 5px 15px 3px 15px;
    background: var(--secondary-color);
    border-radius: 20px;
    border: 2px solid #FFF;
    z-index: 2;
    box-shadow: 0 0 10px #aaa;
    color: #FFF;
}

.grad-cerm-block .text-error {
    margin-top: 5px;
}



.confirmation-form {
    width: 100%;
    color: #000;
    font-size: 16px;
    line-height: 25px;
    margin: 0 auto;
    text-align: justify;
    background: #fff;
}

.confirmation-form-sign {
    display: inline-block;
    overflow: hidden;
    height: 100px;
    width: 200px;
}

.confirmation-form-sign img {
    width: auto;
    max-width: 100%;
    max-height: 100px;
}

.custom_fc_frame {
   bottom: 64px !important;
  right: unset !important;
}

.chat-fc-form-outer {
  right: unset !important;
  left: 75px !important;
  bottom: 0 !important;
}

.dropdown.actions {
    position: absolute;
}

.k-grid .dropdown-menu.action-dropdown {
    max-height: 275px;
    overflow-y: auto;
    overflow-x: hidden;
}

.k-grid tr td {
    position: unset !important;
    overflow: unset !important;
    z-index: 2;
}

.k-grid-content {
    min-height: 300px !important;
}

.k-grid .dropdown-menu.action-dropdown a.dropdown-item {
    white-space: nowrap !important;
}

.kendo-grid-search {
   float:left;
   width:100%;
  padding-bottom: 10px;
}
.kendo-grid-search .form-control{
  width:250px;
  padding:5px;
}
.login-custom-select select {
  appearance: none;
  outline: 0;
  border: 0;
  box-shadow: none;
  flex: 1;
  padding: 0 1em;
  color: #fff;
  background-color: #005c48;
  background-image: none;
  cursor: pointer;
}
.login-custom-select select::-ms-expand {
  display: none;
}
.login-custom-select {
  position: relative;
  display: flex;
  width: 100%;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
  margin-bottom:20px;
}
.login-custom-select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  background-color: #00441f;
  transition: .25s all ease;
  pointer-events: none;
  color: #ffffff;
}
.login-custom-select:hover::after {
  color: #a9ffdb;
}

.c_radio_btn_group{
			width: 100%;
			display: flex;
			align-items: center;
		}
		.c_radio_btn_group .c_radio_btn{
			margin-right: 30px;
		}

.c_radio_btn input[type="radio"]:checked,
.c_radio_btn input[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.c_radio_btn input[type="radio"]:checked + label,
.c_radio_btn input[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
.c_radio_btn input[type="radio"]:checked + label:before,
.c_radio_btn input[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.c_radio_btn input[type="radio"]:checked + label:after,
.c_radio_btn input[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #026340;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.c_radio_btn input[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.c_radio_btn input[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
	
 