﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://fonts.googleapis.com/css?family=Merienda:700');

html {
font-family: 'Open Sans', sans-serif;
}

/*.chat-message .bubble {
    font-family: 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
}
*/

.chat-support-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    padding-right: 16px;
}

.chat-support-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

    .chat-support-button:hover {
        background-color: #0056b3;
    }

/* Modal inside chat box */
.support-modal-inside {
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    width: 90%;
    height: 80%;
    border-radius: 20px;
    margin: auto;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.support-popup {
    background: #ffffff;
    width: 90%;
    max-width: 380px;
    height: auto;
    padding: 10px 10px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-family: "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: #333;
}

    .support-popup h3 {
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
        color: #222;
    }

    .support-popup label {
        font-size: 13px;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .support-popup input,
    .support-popup textarea {
        width: 100%;
        padding: 7px 10px;
        border-radius: 6px;
        border: 1px solid #d1d1d1;
        background-color: #f9f9f9;
        font-size: 13px;
        box-sizing: border-box;
        font-family: "Segoe UI", Roboto, sans-serif;
        transition: border-color 0.2s ease;
    }

        .support-popup input:focus,
        .support-popup textarea:focus {
            outline: none;
            border-color: #007bff;
            background-color: #fff;
        }

    .support-popup textarea {
        resize: none;
        min-height: 60px;
    }

.support-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

    .support-buttons button {
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        font-weight: 500;
        font-family: "Segoe UI", Roboto, sans-serif;
    }

        .support-buttons button:first-child {
            background-color: #097dab;
            color: #fff;
            border: none;
        }

            .support-buttons button:first-child:hover {
                background-color: #0056b3;
            }

        .support-buttons button:last-child {
            background-color: #f0f0f0;
            color: #333;
            border: 1px solid #ccc;
        }

            .support-buttons button:last-child:hover {
                background-color: #e0e0e0;
            }


.support-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.support-button {
    padding: 15px 12px;
    border-radius: 25px;
    height: 40px;
    width: 40px;
    margin-top: 10px;
    margin-left: 630px;
    background-color: #077cab;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

    .support-button:hover {
        background-color: #0056b3;
    }


.mic-popup {
    position: fixed;
    bottom: 110px;
    right: 20px;
    background: #ffffffcc;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border: 1px solid #e0e0e0;
    animation: fadeInUp 0.3s ease;
}

.mic-icon-container {
    background-color: #0078a0;
    color: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #333;
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mic-pulse {
    animation: pulse 1.2s infinite;
    font-size: 18px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}



.chat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: linear-gradient(135deg, #0b7eb0, #00a6dd);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

    .chat-icon:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    }

.chat-header {
    background: linear-gradient(135deg, #0b7eb0, #0078a0);
    color: #fff;
    padding: 14px 20px;
    /* ...rest of your styles */
}

.loading {
    font-style: italic;
    color: #777;
    animation: pulse 1.2s infinite;
}

.loading {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot-flash span {
    animation: flash 1.5s infinite;
    opacity: 0;
    font-weight: bold;
    font-size: 28px; /* Increase this for bigger dots */
    margin-left: 2px;
    line-height: 1;
    vertical-align: middle;
}


    .dot-flash span:nth-child(1) {
        animation-delay: 0s;
    }

    .dot-flash span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .dot-flash span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes flash {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Sidebar Base Styling */
.theme-settings {
    position: fixed;
    top: 35px;
    width: 260px;
    background: #3a4651;
    color: #fff;
    z-index: 1000;
    border: 5px;
    padding: 5px 10px;
    -webkit-transition: all .35s ease-in-out;
    border-radius: 9px 0 0 15px;
    -o-transition: all .35s linear;
    transition: transform 0.35s ease-in-out;
    transform: translateX(100%); /* Default: Hidden */
    right: 0;
}

    /* Button styling inside sidebar */
    .theme-settings .btn-theme {
        position: absolute;
        left: -35px;
        border-radius: 0;
        background: #3a4651;
        font-size: 16px;
        padding: 5px 10px;
        border-radius: 15px 0 0 15px;
        border: 5px;
        z-index: -1;
        top: 0px;
    }

.theme-setings .btn-theme:focus {
    outline: none;
}

.theme-setings .btn-theme i {
    color: #fff;
}


.sidebar-open {
    transform: translateX(0); /* Slide in */
}

.sidebar-closed {
    transform: translateX(100%); /* Slide out */
}

.tooltip-icon {
    position: relative;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

    .tooltip-icon::after {
        content: 'Dashboard Overview';
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-80%);
        background-color: black;
        color: white;
        padding: 5px;
        border-radius: 5px;
        font-size: 12px;
        opacity: 0;
        pointer-events: none; /* Prevent tooltip from interfering with mouse events */
        transition: opacity 0.3s;
    }

    .tooltip-icon:hover::after {
        opacity: 1; /* Make tooltip visible on hover */
    }

/* Toggle Button */
#chatbot-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #0b7eb0, #0078a0);
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.3s ease;
}

    #chatbot-toggle:hover {
        background: #0056b3;
    }

/* Chat Box */
#chatbot-box {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 50%;
    max-width: 90%;
    height: 450px;
    background: linear-gradient(145deg, #ffffff, #f7f9fc);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease-in-out;
    border: 1px solid #e0e6ed;
}

    /* Optional hover or interaction effect */
    #chatbot-box:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

    /* Scrollbar styling if needed */
    #chatbot-box::-webkit-scrollbar {
        width: 8px;
    }

    #chatbot-box::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }


/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #0b7eb0, #0078a0);
    color: #fff;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

    .chat-header button {
        background: none;
        border: none;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
    }

/* Chat Body */
/* --- Chat Body --- */
.chat-body {
    flex: 1;
    padding: 20px;
    background: linear-gradient(180deg, #fafdff 0%, #f1f4f9 100%);
    overflow-y: auto;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    /* Scrollbar styling */
    .chat-body::-webkit-scrollbar {
        width: 6px;
    }

    .chat-body::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

/* --- Chat Message Container --- */
.chat-message {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 2px;
}

    /* User and AI alignment */
    .chat-message.from-user {
        justify-content: flex-end;
    }

    .chat-message.from-ai {
        justify-content: flex-start;
    }

    /* --- Optional avatar style --- */
    .chat-message .avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background-color: #cfe2ff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #0056b3;
        font-weight: bold;
        flex-shrink: 0;
    }

    /* --- Message Bubble --- */
    .chat-message .bubble {
        max-width: 78%;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.5;
        border-radius: 20px;
        word-break: break-word;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }

    .chat-message.from-user .bubble {
        background: #007bff;
        color: #fff;
        border-bottom-right-radius: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        padding: 6px 10px; /* ↓ smaller padding */
        margin: 2px 0; /* ↓ less top/bottom space */
        max-width: 80vw;
        font-size: 14px; /* Optional: reduce font size */
    }



        /* Bubble hover effect */
        .chat-message .bubble:hover {
            transform: scale(1.02);
        }

    /* --- User Message Bubble --- */
    .chat-message.from-user .bubble {
        background: #007bff;
        color: #fff;
        border-bottom-right-radius: 6px;
    }

    /* --- AI Message Bubble --- */
    .chat-message.from-ai .bubble {
        background: #eaf3ff;
        color: #333;
        border-bottom-left-radius: 6px;
    }


/* Input Section */
.chat-input {
    display: flex;
    border-top: 1px solid #ccc;
    background: #fff;
    padding: 10px;
}

    .chat-input input {
        flex: 1;
        border: none;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 20px;
        background: #f1f3f5;
        outline: none;
        margin-right: 10px;
    }

.send-button {
    border: none;
    background: linear-gradient(135deg, #0b7eb0, #0078a0);
    color: white;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

    .send-button:hover {
        background: linear-gradient(135deg, #00a8ff, #007ab3);
        transform: scale(1.05);
    }

    .chat-input button {
        border: none;
        background: linear-gradient(135deg, #0b7eb0, #0078a0);
        color: white;
        padding: 10px 14px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .chat-input button:hover {
            background: #0056b3;
        }

body {
background-color: #fff;
font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
color: #333;
}

.mr-10 {
margin-right: 10px !important;
}

.ml-10 {
margin-left: 10px !important;
}

.mt-10 {
margin-top: 10px !important;
}

.mb-10 {
margin-bottom: 10px !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}

.mr-5 {
margin-right: 5px !important;
}

.ml-5 {
margin-left: 5px !important;
}

.mt-5 {
margin-top: 5px !important;
}

.mb-5 {
margin-bottom: 5px !important;
}

.mr-0 {
margin-right: 0px !important;
}

.ml-0 {
margin-left: 0px !important;
}

.mt-0 {
margin-top: 0px !important;
}

.mb-0 {
margin-bottom: 0px !important;
}

.mr-20 {
margin-right: 20px !important;
}

.ml-20 {
margin-left: 20px !important;
}

.mt-20 {
margin-top: 20px !important;
}

.mb-20 {
margin-bottom: 20px !important;
}

.pr-10 {
padding-right: 10px !important;
}

.pl-10 {
padding-left: 10px !important;
}

.pt-10 {
padding-top: 10px !important;
}

.pb-10 {
padding-bottom: 10px !important;
}

.pr-5 {
padding-right: 5px !important;
}

.pl-5 {
padding-left: 5px !important;
}

.pt-5 {
padding-top: 5px !important;
}

.pb-5 {
padding-bottom: 5px !important;
}

.pr-0 {
padding-right: 0px !important;
}

.pl-0 {
padding-left: 2px !important;
}

.pt-0 {
padding-top: 0px !important;
}

.pb-0 {
padding-bottom: 0px !important;
}

.pr-20 {
padding-right: 20px !important;
}

.pl-20 {
padding-left: 20px !important;
}

.pt-20 {
padding-top: 20px !important;
}

.pb-20 {
padding-bottom: 20px !important;
}

#wrapper {
width: 100%;
}

#page-wrapper {
padding: 0 15px;
background-color: #F3F3F3;
/*overflow: auto;
height: calc(100vh - 51px);*/
}

*::-webkit-scrollbar-track {
background-color: rgb(249, 249, 249);
border: 1px #ececec solid;
border-radius: 5px;
}

*::-webkit-scrollbar {
width: 6px;
background-color: transparent;
}

*::-webkit-scrollbar-thumb {
background-color: #5c6d75;
border-radius: 2px;
}

.text-success {
color: #98deff;
}

.fa-fw {
width: 1.28571429em;
text-align: center;
color: #006cab !important;
}

@media (min-width: 768px) {
#page-wrapper {
position: inherit;
margin: 0 0 0 100px;
padding: 0px;
height: calc(100vh - 51px);
overflow: auto;
}

#page-wrapper > .container-fluid {
min-height: calc(100vh - 83px);
}

.text-sm-right {
text-align: right;
color: #6f6f6f;
}

.form-inline .checkbox, .form-inline .radio {
display: none;
}

.sidebar {
z-index: 1;
position: fixed;
height: 100vh;
width: 100px;
top: 0;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
margin-left: auto;
}
}

.navbar-top-links {
margin-right: 0;
}

.navbar-top-links li {
display: inline-block;
}

.navbar-top-links li:last-child {
margin-right: 15px;
}

.navbar-top-links li a {
padding: 15px 8px;
min-height: 50px;
}

.navbar-top-links .dropdown-menu li {
display: block;
}

.navbar-top-links .dropdown-menu li:last-child {
margin-right: 0;
}

.navbar-top-links .dropdown-menu li a {
padding: 3px 20px;
min-height: 0;
}

.navbar-top-links .dropdown-menu li a div {
white-space: normal;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
width: 310px;
min-width: 0;
}

.navbar-top-links .dropdown-messages {
margin-left: 5px;
}

.navbar-top-links .dropdown-tasks {
margin-left: -59px;
}

.navbar-top-links .dropdown-alerts {
margin-left: -123px;
}

.navbar-top-links .dropdown-user {
right: 0;
left: auto;
}

.sidebar .sidebar-nav.navbar-collapse {
padding-left: 0;
padding-right: 0;
}

.sidebar .sidebar-search {
padding: 15px;
}

.sidebar ul li {
border-bottom: none;
}

.sidebar ul li a.active {
background-color: #fff;
}

.sidebar .arrow {
float: right;
}

.sidebar .fa.arrow:before {
content: "\f107";
}

.sidebar .active > a > .fa.arrow:before {
content: "\f106";
}

.sidebar .nav-second-level .active > a > .fa.arrow:before {
content: "\f105";
}

.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
border-bottom: none !important;
}

.sidebar .nav-second-level li a {
padding-left: 37px;
}

.sidebar .nav-third-level li span a, .sidebar .mobile-3rd-level li span a {
padding-left: 25px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
}

@media (min-width: 768px) {
.sidebar {
z-index: 1;
position: absolute;
width: 100px;
margin-top: 51px;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
margin-left: auto;
}
}

.btn-outline {
color: inherit;
background-color: transparent;
transition: all .5s;
}

.btn-primary.btn-outline {
color: #428bca;
}

.btn-success.btn-outline {
color: #5cb85c;
}

.btn-info.btn-outline {
color: #5bc0de;
}

.btn-warning.btn-outline {
color: #f0ad4e;
}

.btn-danger.btn-outline {
color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
color: white;
}

.chat {
margin: 0;
padding: 0;
list-style: none;
}

.chat li {
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dotted #999999;
}

.chat li.left .chat-body {
margin-left: 60px;
}

.chat li.right .chat-body {
margin-right: 60px;
}

.chat li .chat-body p {
margin: 0;
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
margin-right: 5px;
}

.chat-panel .panel-body {
height: 350px;
overflow-y: scroll;
}

.login-panel {
margin-top: 25%;
}

.flot-chart {
display: block;
height: 400px;
}

.flot-chart-content {
width: 100%;
height: 100%;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
background: transparent;
}

table.dataTable thead .sorting_asc:after {
content: "\f0de";
float: right;
font-family: fontawesome;
}

table.dataTable thead .sorting_desc:after {
content: "\f0dd";
float: right;
font-family: fontawesome;
}

table.dataTable thead .sorting:after {
content: "\f0dc";
float: right;
font-family: fontawesome;
color: rgba(50, 50, 50, 0.3);
padding-left: 4px;
}

.btn-circle {
width: 30px;
height: 30px;
padding: 6px 0;
border-radius: 15px;
text-align: center;
font-size: 12px;
line-height: 1.428571429;
}

.btn-circle.btn-lg {
width: 50px;
height: 50px;
padding: 10px 16px;
border-radius: 25px;
font-size: 18px;
line-height: 1.33;
}

.btn-circle.btn-xl {
width: 70px;
height: 70px;
padding: 10px 16px;
border-radius: 35px;
font-size: 24px;
line-height: 1.33;
}

.show-grid [class^="col-"] {
padding-top: 10px;
padding-bottom: 10px;
border: 1px solid #ddd;
background-color: #eee !important;
}

.show-grid {
margin: 15px 0;
}

.huge {
font-size: 40px;
}

.panel-green {
border-color: #5cb85c;
}

.panel-green > .panel-heading {
border-color: #5cb85c;
color: white;
background-color: #5cb85c;
}

.panel-green > a {
color: #5cb85c;
}

.panel-green > a:hover {
color: #3d8b3d;
}

.panel-red {
border-color: #d9534f;
}

.panel-red > .panel-heading {
border-color: #d9534f;
color: white;
background-color: #d9534f;
}

.panel-red > a {
color: #d9534f;
}

.panel-red > a:hover {
color: #b52b27;
}

.panel-yellow {
border-color: #f0ad4e;
}

.panel-yellow > .panel-heading {
border-color: #f0ad4e;
color: white;
background-color: #f0ad4e;
}

.panel-yellow > a {
color: #f0ad4e;
}

.panel-yellow > a:hover {
color: #df8a13;
}

.timeline {
position: relative;
padding: 20px 0 20px;
list-style: none;
}

.timeline:before {
content: " ";
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 3px;
margin-left: -1.5px;
background-color: #eeeeee;
}

.timeline > li {
position: relative;
margin-bottom: 20px;
}

.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}

.timeline > li:after {
clear: both;
}

.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}

.timeline > li:after {
clear: both;
}

.timeline > li > .timeline-panel {
float: left;
position: relative;
width: 46%;
padding: 20px;
border: 1px solid #d4d4d4;
border-radius: 2px;
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline > li > .timeline-panel:before {
content: " ";
display: inline-block;
position: absolute;
top: 26px;
right: -15px;
border-top: 15px solid transparent;
border-right: 0 solid #ccc;
border-bottom: 15px solid transparent;
border-left: 15px solid #ccc;
}

.timeline > li > .timeline-panel:after {
content: " ";
display: inline-block;
position: absolute;
top: 27px;
right: -14px;
border-top: 14px solid transparent;
border-right: 0 solid #fff;
border-bottom: 14px solid transparent;
border-left: 14px solid #fff;
}

.timeline > li > .timeline-badge {
z-index: 100;
position: absolute;
top: 16px;
left: 50%;
width: 50px;
height: 50px;
margin-left: -25px;
border-radius: 50% 50% 50% 50%;
text-align: center;
font-size: 1.4em;
line-height: 50px;
color: #fff;
background-color: #999999;
}

.timeline > li.timeline-inverted > .timeline-panel {
float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}

.timeline-badge.primary {
background-color: #2e6da4 !important;
}

.timeline-badge.success {
background-color: #3f903f !important;
}

.timeline-badge.warning {
background-color: #f0ad4e !important;
}

.timeline-badge.danger {
background-color: #d9534f !important;
}

.timeline-badge.info {
background-color: #5bc0de !important;
}

.timeline-title {
margin-top: 0;
color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
margin-bottom: 0;
}

.timeline-body > p + p {
margin-top: 5px;
}

.nav-third-level li a i {
padding-right: 10px;
color: #3a4651 !important;
}

#side-menu li a i {
font-size: 22px;
color: #fff;
width: 100%;
height: auto;
text-align: center;
}

#side-menu li a span {
color: #fff;
width: 100%;
text-align: center;
display: block;
font-size: 13px;
}

#side-menu > li > a {
padding: 10px 5px;
}

.sidebar {
background: #fff;
overflow: auto;
overflow-y: visible;
box-shadow: 2px 2px 4px rgba(0,0,0,.1);
-webkit-box-shadow: 2px 2px 4px rgba(0,0,0,.1);
border-top: 1px solid #f3f3f3;
height: calc(100vh - 51px);
}

.customise-theme {
position: absolute !important;
width: 100%;
bottom: 0;
background: #0086b9;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
}

.navbar-top-links li a:hover, .navbar-top-links li a:visited, .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
background-color: #fff;
}

.navbar-brand {
float: left;
height: 50px;
font-size: 22px;
font-family: sans-serif;
line-height: 50px;
padding: 0;
text-transform: uppercase;
margin-left: 17px;
font-weight: 600;
width: 165px;
overflow: hidden;
color: #fff !important;
}

.navbar-header {
float: left;
background: #3a4651;
height: 50px;
}

.section-logo {
width: 100px;
height: 51px;
}

.logo {
display: inline-block;
width: 100%;
height: 38px;
vertical-align: middle;
position: relative;
float: left;
margin-left: 25px;
margin-right: 5px;
}

.logo .l {
width: 11px;
height: 11px;
border-radius: 50%;
background-color: #46aada;
position: absolute;
}

.logo .l.l1 {
bottom: 0;
left: 0;
}

.logo .l.l2 {
width: 7px;
height: 7px;
bottom: 13px;
left: 10px;
}

.logo .l.l3 {
width: 7px;
height: 7px;
bottom: 4px;
left: 17px;
}

.logo .l.l4 {
bottom: 13px;
left: 25px;
}

.logo .l.l5 {
bottom: 0;
left: 34px;
}

.navbar-inverse {
background-color: #fff;
border-color: #fff;
margin-bottom: 0px;
margin-left: 100px;
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,.08);
box-shadow: 0 2px 4px rgba(0,0,0,.08);
}

.navbar-inverse a {
color: #111;
}

.sidebar li a:hover, .sidebar li a:visited, .sidebar li.active {
background-color: #f3f3f3;
}

.nav-second-level {
border-bottom: 1px solid #f3f3f3;
}

.nav-second-level li.active a, .nav-second-level li:hover a {
background-color: #fff !important;
}

.sidebar li a:hover span, .sidebar li a:hover i, .sidebar li.active a i, .sidebar li.active a span {
}

.dropdown-menu {
margin: 1px 0 0;
border: 0;
border-radius: 0;
}

.menu-2ndlevel {
list-style-type: none;
padding-left: 0px;
font-family: 'Open Sans', sans-serif;
display: block;
clear: both;
margin-bottom: 0px;
}

.menu-2ndlevel li {
text-align: center;
float: left;
width: 17.8%;
height: 140px;
border-right: 1px solid #dcdcdc;
border-bottom: 1px solid #dcdcdc;
transition: all 0.08s ease-in-out;
}

.menu-2ndlevel li.enhance-all {
width: 11%;
}

.menu-2ndlevel li.enhance-all span {
font-size: 12px;
}

.menu-2ndlevel li:last-child {
/*border-right: none;*/
}

.menu-2ndlevel li img {
margin: 0px auto;
padding: 10px 0px 5px 0px;
}

.menu-2ndlevel li a {
color: #333;
}

.menu-2ndlevel li:hover {
background-color: #2b8ecf;
color: #fff;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.menu-2ndlevel li.menu-head:hover {
color: #333;
}

.menu-2ndlevel li:hover a {
color: #fff;
}

/*.menu-2ndlevel li:hover img {
    -webkit-filter: invert(100%);
    filter: invert(100%);
    opacity: 1;
}*/

.menu-2ndlevel li span.menu-2ndlevel-head {
font-weight: 800;
font-size: 20px;
}

.menu-2ndlevel li.menu-head {
background: #f4f4f4;
position: relative;
padding-top: 12px;
}

.menu-2ndlevel .menu-head:after {
font-family: fontawesome;
content: '\f0da';
font-size: 34px;
position: absolute;
right: -11px;
top: 35%;
color: #f4f4f4;
}

.menu-2ndlevel li span {
font-weight: 600;
font-size: 14px;
padding: 5px 5px;
}

.enhance-all .menu-expand-btn .enhance-icon {
background: url(../images/menuIcons/enhance.png) no-repeat;
width: 60px;
height: 80px;
display: block;
margin: 0px auto;
background-position: bottom;
}

.enhance-all .menu-expand-btn.active .enhance-icon {
background: url(../images/menuIcons/minimize.png) no-repeat;
width: 60px;
height: 80px;
display: block;
margin: 0px auto;
background-position: bottom;
}

.enhance-all .menu-expand-btn.active:hover .enhance-icon {
background: url(../images/menuIcons/minimize-hover.png) no-repeat;
width: 60px;
height: 80px;
display: block;
margin: 0px auto;
background-position: bottom;
}

.enhance-all .menu-expand-btn:hover .enhance-icon {
background: url(../images/menuIcons/enhance-hover.png) no-repeat;
width: 60px;
height: 80px;
display: block;
margin: 0px auto;
background-position: bottom;
}

.enhance-all .menu-expand-btn .enhance-text:before {
content: "Enhance for All";
}

.enhance-all .menu-expand-btn.active .enhance-text:before {
content: "Minimize";
}

.menu-expand-all {
display: none;
}

.brand-name a h4 {
font-family: 'Merienda', cursive;
color: #2b8ecf;
font-size: 20px;
}

.brand-name a {
padding: 14px 8px !important;
}

.nav-center {
float: left;
margin: 5px auto;
margin-left: 0%;
width: 40%;
text-align: center;
}

.auto-complete {
position: absolute;
width: 100%;
z-index: 4;
cursor: pointer;
}

.auto-complete .list-group-item {
padding: 3px 12px;
margin-bottom: -1px;
background-color: #fff;
color: #000;
}

.auto-complete .list-group-item:hover {
background-color: #46a7df;
color: #fff;
}

.input-group .auto-complete {
width: 90%;
top: 33px;
}



@media (max-width: 767px) {
ul.timeline:before {
left: 40px;
}

ul.timeline > li > .timeline-panel {
width: calc(10%);
width: -moz-calc(10%);
width: -webkit-calc(10%);
}

ul.timeline > li > .timeline-badge {
top: 16px;
left: 15px;
margin-left: 0;
}

ul.timeline > li > .timeline-panel {
float: right;
}

ul.timeline > li > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}

ul.timeline > li > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}

.navbar-default sidebar {
min-height: 0px !important;
}

.mobile-3rd-level {
position: relative;
width: 100%;
background: #fff;
max-height: 300px;
overflow: auto;
overflow-x: hidden;
}

.mobile-3rd-level .head {
border-bottom: 1px solid #e7e7e7;
margin-left: 32px;
padding-left: 5px;
padding-bottom: 5px;
font-weight: 600;
color: #202020;
display: block;
font-family: sans-serif;
}

.mobile-3rd-level li a i {
color: #3a4651 !important;
}

.mobile-3rd-level li a {
display: block;
padding: 5px 0px;
text-decoration: none;
padding-left: 35px !important;
}

.navbar-default {
position: absolute;
}

.sidebar-nav {
width: 120px;
}

.navbar-header {
width: 100%;
}

.navbar-toggle {
margin-left: 15px;
}

.navbar-top-links li a {
font-size: 11px;
padding: 15px 4px;
}

.navbar-top-links li:last-child {
float: right;
}

.navbar-brand {
width: 130px;
}

.mobile-overlay {
background: rgba(0, 0, 0, .5);
display: none;
position: absolute;
top: 0;
bottom: 0;
width: 100%;
z-index: 999;
}

#page-wrapper {
height: calc(100vh - 110px);
overflow: auto;
}

.navbar-inverse {
margin-left: 0px;
}

.menu-2ndlevel li {
width: 32.8%;
}

.menu-2ndlevel li.enhance-all {
width: 22%;
}

.brand-name a h4 {
font-family: 'Merienda', cursive;
color: #2b8ecf;
font-size: 20px;
}

.brand-name a {
padding: 14px 8px !important;
}

.section-logo {
width: 250px;
}

.section-logo .logo {
width: 60px;
}

.brand-name {
font-family: 'Merienda', cursive;
color: #2b8ecf;
font-size: 20px;
text-decoration: none !important;
display: inline-block;
padding-top: 12px;
}
}

@media (max-width: 520px) {
.menu-2ndlevel li {
width: 48.8%;
}

.menu-2ndlevel li.enhance-all {
width: 40%;
}
}

@media (max-width: 901px) {
.navbar-top-links li a {
padding: 15px 4px;
min-height: 50px;
font-size: 12px;
}
}

.form-group {
margin-bottom: 12px;
}

/* 241117 */
.colour-box {
width: 15px;
height: 15px;
background: #98deff;
display: block;
float: left;
margin: 10px 10px 10px 15px;
}

.fa-fw {
width: 1.28571429em;
text-align: center;
color: #98deff;
}

.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #a0a0a0;
}

/* 241117 End*/
/* ===== pages Css ===== */

.panel {
box-shadow: 0 2px 1px rgba(0,0,0,.05);
border-radius: 0;
border: none;
}

.panel-default > .panel-heading {
color: #333;
background-color: #fff;
border-color: #f3f3f3;
padding: 0px 0px;
line-height: 35px;
}


/* ===== pages Css ===== */

.panel {
box-shadow: 0 2px 1px rgba(0,0,0,.05);
border-radius: 0;
border: none;
}

.panel-default > .panel-heading {
color: #313131;
background-color: #fff;
border-color: #f3f3f3;
font-weight: 600;
}

.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #cdcdcd !important;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: none;
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control-red {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid red !important;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
/* has-float-label */
label {
font-weight: 100;
}

.has-float-label .form-control  {
    position: relative;
    z-index: 2;
    background: transparent;
}

.has-float-label {
position: relative;
}

.has-float-label label {
position: absolute;
left: 0;
top: 0;
font-weight: 100;
color: #46aada;
cursor: text;
font-family: sans-serif;
font-size: 75%;
opacity: .9;
letter-spacing: 0.5px;
-webkit-transition: all .2s;
transition: all .2s;
top: -.5em;
left: 1.2rem;
z-index: 3;
line-height: 1;
padding: 0 1px;
max-width: 90%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.has-float-label label::after {
content: " ";
display: block;
position: absolute;
background: #ffffff;
height: 10px;
top: 50%;
top: 0px;
left: -.2em;
right: -.2em;
z-index: -1;
}

.has-float-label .form-control::-webkit-input-placeholder {
opacity: 1;
-webkit-transition: all .2s;
transition: all .2s;
}

.has-float-label .form-control:placeholder-shown:not(:focus)::-webkit-input-placeholder {
opacity: 0;
}

.has-float-label .form-control:placeholder-shown:not(:focus) + label {
font-size: 100%;
opacity: 1;
z-index: 1;
top: .8em;
color: #181818;
font-weight: 100;
letter-spacing: 0px;
}

.input-group .has-float-label {
display: table-cell;
}

.input-group .has-float-label .form-control {
border-radius: 0.25rem;
}

.input-group .has-float-label:not(:last-child) .form-control {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}

.input-group .has-float-label:not(:first-child) .form-control {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
margin-left: -1px;
}

/*custom float Label */
.has-float-label select.seelect-control {
position: relative;
top: 0;
background: none;
}

.label-control {
font-weight: 100;
}

.has-float-label .form-control:focus {
box-shadow: none;
border: 1px solid #e0e0e0;
}

.bg-grey {
background: #e9e9e9;
padding: 7px 5px 0px 5px;
border-radius: 4px;
border: 1px #cfcfcf solid;
color: #0c557f;
font-weight: 600;
/*background: #469fca;
padding: 7px 5px 0px 5px;
border-radius: 4px;
border: 1px #3b8fb7 solid;
color: #fff;*/
}

.has-float-label input::-moz-placeholder {
color: transparent !important;
}

.has-float-label input:focus::-moz-placeholder {
color: #0e0e0e !important;
opacity: 0.5 !important;
}


/* has-float-label end*/


/* Theme-red */

/* .theme-red .sidebar { */
/* background: #3a4651; */
/* overflow: auto; */
/* overflow-y: visible; */
/* box-shadow: 2px 2px 4px rgba(0,0,0,.1); */
/* -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,.1); */
/* border-top: 1px solid #f3f3f3; */
/* } */
/* .theme-red #sidenavToggler { */
/* cursor: pointer; */
/* font-size: 21px; */
/* padding: 10px; */
/* } */
/* .theme-red .navbar-inverse a { */
/* color: #9ca2a8; */
/* } */
/* .theme-red .nav-second-level { */
/* border-bottom: 1px solid #f3f3f3; */
/* background: #333e48; */
/* } */
/* .theme-red .nav-second-level li.active a, .nav-second-level li:hover a { */
/* background-color: #2d363f !important; */
/* } */

/* Theme-Blue End */
/* theme Colors End*/

/* Changed Menu */
.entry {
width: 75%;
display: inline-block;
}

.list {
width: 20%;
display: inline-block;
}

.nav-third-level span a {
text-decoration: none;
}

.nav-third-level li:first-child {
height: 45px;
}


/* button Classes */
.btn-custom1 {
color: #fff;
background-color: #46aada;
border-color: none;
transition: 0.16s ease-in;
}

.btn-custom1:hover {
color: #fff;
background-color: #3a4651;
}

.upload-photo {
width: 130px;
}

.photo > input, .signiture > input {
display: none;
}

.photo > label, .signiture > label {
cursor: pointer;
}

.upload-sign {
width: 130px;
height: 62px;
}

.overflow-dots {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/*=== Customised Radio & Checkbox Buttons ====*/
.radio, .checkbox {
display: none;
}

.radio + span, .checkbox + span {
cursor: pointer;
}

.radio + span::before, .checkbox + span::before {
font-family: FontAwesome;
font-size: 16px;
display: inline-block;
vertical-align: middle;
letter-spacing: 6px;
color: #c8d0da;
font-weight: 700;
}

.checkbox + span:before {
content: "\f0c8";
}

.checkbox:checked + span:before {
content: "\f14a";
}

.radio:checked + span:before, .checkbox:checked + span:before {
color: #46aada;
}

.radio + span:before {
content: "\f111";
}

.radio:checked + span:before {
content: "\f192";
}

.radio:checked + span:before, .checkbox:checked + span:before {
color: #46aada;
}

.label-full-width label {
width: 100%;
margin-bottom: 0px;
}

.icon {
width: 20px;
display: inline-block;
}

.breadcrumb li {
font-size: 13px;
}

.breadcrumb li a {
color: #46aada;
text-decoration: none;
}

footer {
background: #3a4651;
color: #ccc;
padding: 6px;
position: relative;
bottom: 0;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control, .disabled {
opacity: 1;
cursor: not-allowed;
}

.btn-secondary {
background-color: #c7c7c7;
}

.has-float-label .input-group-addon {
text-align: center;
background-color: #f5f5f5;
border: 1px solid #cdcdcd;
border-left: none;
}

.has-float-label .input-group-addon i {
color: #3a4651;
}

.text-danger {
color: #fa1329 !important;
}

.font-sm {
font-size: 13px;
line-height: 0;
}

.btn i {
padding-right: 4px;
color: #fff;
}

.btn-outline-primary {
color: #46aada;
background-color: transparent;
border-color: #46aada;
webkit-box-shadow: 0 2px 2px 0 rgba(70, 170, 218, 0.10), 0 3px 1px -2px rgba(70, 170, 218, 0.2), 0 1px 5px 0 rgba(70, 170, 218, 0.12);
box-shadow: 0 2px 2px 0 rgba(70, 170, 218, 0.10), 0 3px 1px -2px rgba(70, 170, 218, 0.2), 0 1px 5px 0 rgba(70, 170, 218, 0.12);
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in;
}

.btn-outline-primary:hover {
background-color: #46aada;
color: #fff;
}

.btn-outline-primary:hover i {
color: #fff;
}

.btn-outline-primary i {
color: #46aada;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in;
}

.btn-rounded {
border-radius: 60px;
padding: 4px 16px;
}

.language {
padding: 10px;
}

.language select {
border: 1px #aaa solid;
border-radius: 3px;
padding: 2px;
}

.fa-male, .fa-female {
font-size: 18px !important;
color: #006cab;
}

/*!
* jQuery Custom Select Plugin - Master Source
* 2014-09-03
*/

/* Standard
----------------------------------*/
.custom-select {
position: relative;
width: 100%;
height: 34px;
border: 1px solid #E0E0E0;
background: #fff;
border-radius: 4px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}

.custom-select a {
display: inline-block;
width: 300px;
height: 20px;
padding: 6px 10px;
color: #000;
text-decoration: none;
cursor: pointer;
}

.custom-select a span {
display: inline-block;
width: 100%;
white-space: nowrap;
overflow: hidden;
}

.custom-select select {
display: none !important;
}

.custom-select > div {
display: none;
position: absolute;
top: 100%;
left: 0;
margin: 1px 0 0 -1px;
width: 100%;
border: 1px solid #E0E0E0;
border-top: 0;
background: #FFFFFF;
z-index: 10;
overflow: hidden;
}

.custom-select input {
width: 98%;
border: 1px solid #E0E0E0;
margin: 5px 5px 0;
padding: 5px;
font-size: 14px;
}

.custom-select > div > div {
position: relative;
overflow-x: hidden;
overflow-y: visible;
margin: 5px;
max-height: 120px;
}

.custom-select div ul {
padding: 0;
margin: 0;
list-style: none;
}

.custom-select div ul li {
display: none;
padding: 5px;
}

.custom-select div ul li.active {
display: block;
cursor: pointer;
color: #828282;
padding-left: 40px;
}

.custom-select div ul li.active {
display: block;
cursor: pointer;
color: #828282;
padding-left: 50px;
padding-top: 0px;
margin-bottom: 5px;
}

.custom-select div ul li:first-child {
padding-left: 0px;
}

.custom-select div ul li:hover {
color: #46aada;
}

.custom-select div ul li.option-hover {
color: #000;
}

.custom-select div ul li.option-disabled {
color: #999;
}

.custom-select div ul li.option-disabled:hover {
	background: #ff9999;
	color: #fff;
}

.custom-select div ul li.option-hover.option-disabled {
background: #ff6666;
color: #fff;
}

.custom-select div ul li.no-results {
display: none;
background: #f2f2f2;
color: #000;
}

/* Custom Select - Open
----------------------------------*/
.custom-select-open {
border-bottom: 1px solid #eee;
}

.custom-select-open div {
display: block;
}

/* Hide Input Box
----------------------------------*/
.custom-select input.custom-select-hidden-input {
position: absolute !important;
top: 0 !important;
left: -1000px !important;
padding: 0 !important;
margin: 0 !important;
border: 0 !important;
background: transparent !important;
z-index: -1 !important;
}

/* Mobile Override
----------------------------------*/
.custom-select-mobile select {
display: inline !important;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.custom-select a:focus {
outline: none;
}

.user-detail img {
position: absolute;
display: block;
}


/* Datatable Custom CSS */

.dataTables_length label select, .dataTables_filter label input {
padding: 4px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #e0e0e0;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: none;
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.dataTables_wrapper .dataTables_paginate {
float: right;
text-align: right;
margin-top: 0.25em;
padding-top: 0px;
border: 1px solid #e0e0e0;
border-radius: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
border-right: 1px solid #ececec;
margin-left: 0px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
color: #fff !important;
border: 1px solid #46aada;
background: none;
background-color: #46aada;
border-radius: 0px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
color: #fff !important;
border: 1px solid #46aada;
background: none;
background-color: #46aada;
border-radius: 0px;
}

.dataTable .radio + span::before, .dataTable .checkbox + span::before {
font-size: 16px;
}

table.dataTable thead th, table.dataTable thead td {
padding: 10px 18px;
border-bottom: 1px solid #eaeaea;
}

table.dataTable.no-footer {
border-bottom: 1px solid #eaeaea;
}

table.dataTable tbody th, table.dataTable tbody td {
padding: 5px 9px;
}

table.dataTable thead th, table.dataTable thead td {
padding: 10px;
}

table.dataTable > tbody > tr > td, table.dataTable > tbody > tr > th, table.dataTable > tfoot > tr > td, table.dataTable > tfoot > tr > th, table.dataTable > thead > tr > td, table.dataTable > thead > tr > th {
border: 1px solid #efefef;
}

.autolist-overlay {
display: none;
position: absolute;
top: 0;
bottom: 0;
width: 100%;
z-index: 2;
}

.li-autolist {
color: #000;
display: flex;
background: #fff;
border-radius: 4px;
padding: 6px 14px;
border: 1px solid #e0e0e0;
}

.li-autolist span:first-child img {
width: 30px;
height: 30px;
border-radius: 50%;
}

.li-autolist span:last-child {
align-self: center;
padding-left: 10px;
}

.li-autolist .tooltip.in {
opacity: 1;
}

.custom-tooltip + .tooltip.right > .tooltip-arrow {
display: none;
}

.custom-tooltip + .tooltip.right {
padding: 0px 2px;
}

.custom-tooltip + .tooltip > .tooltip-inner {
background-color: transparent;
padding: 0;
}

.custom-tooltip + .tooltip > .tooltip-inner img {
border: 2px solid #e6e6e6;
background: #e6e6e6;
padding: 2px;
}

/* theme Colors */

.theme {
position: absolute !important;
bottom: 0;
left: 100px;
display: none;
width: 250px;
z-index: 9999;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
}

.theme a {
color: #fff;
text-decoration: none;
cursor: pointer;
}

.theme a .fa {
padding-top: 4px;
}

.theme a .fa.arrow:before {
content: "\f107";
}

.theme a.active .fa.arrow:before {
content: "\f106";
}

.theme a i {
padding-left: 15px;
padding-right: 8px;
color: #fff;
}

.theme a span:last-child {
padding-right: 15px;
}

.theme ul li {
float: left;
padding: 10px 0px 10px 10px;
}

.color-btn {
width: 25px;
height: 25px;
display: block;
cursor: pointer;
}

.blue {
background-color: #52BCD3;
}

.red {
background-color: #FF6161;
}

.green {
background-color: #8CDE33;
}

.orange {
background-color: #FE7A0E;
}

.seegreen {
background-color: #4bcf99;
}

.themeblue .navbar-inverse {
background-color: #44b8e1;
border-color: #44b8e1;
}

.color-options {
position: relative;
background: #f3f3f3;
width: 100%;
border-top: 2px solid #006cab;
padding-top: 10px;
}


/*scrollable table*/
.table-fixed {
width: 100%;
}

.table-fixed thead {
table-layout: fixed;
width: 100%;
display: block;
}

.table-fixed thead tr {
table-layout: fixed;
width: 100%;
display: table;
}

.table-fixed thead th {
text-align: center;
}

.table-fixed tbody {
width: 100%;
max-height: 150px;
overflow-y: auto;
display: block;
overflow: overlay;
}

.table-fixed tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}

.table-fixed tbody::-webkit-scrollbar-track {
background-color: transparent;
}

.table-fixed tbody::-webkit-scrollbar {
width: 5px;
position: absolute;
right: 0;
background-color: #f5f5f5;
}

.table-fixed tbody::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 2px;
}

.help-text {
position: absolute;
top: 33px;
font-size: 12px
}

.scroll .table-fixed tbody {
width: 100%;
max-height: 170px;
overflow-y: auto;
display: block;
overflow: overlay;
}

/*scrollable table*/
.table-fixed1 {
    width: 100%;
}

    .table-fixed1 thead {
        table-layout: fixed;
        width: 100%;
        display: block;
    }

        .table-fixed1 thead tr {
            table-layout: fixed;
            width: 100%;
            display: table;
        }

        .table-fixed1 thead th {
            text-align: center;
        }

    .table-fixed1 tbody {
        width: 100%;
        max-height: 350px;
        overflow-y: auto;
        display: block;
        overflow: overlay;
    }

        .table-fixed1 tbody tr {
            display: table;
            width: 100%;
            table-layout: fixed;
        }

        .table-fixed1 tbody::-webkit-scrollbar-track {
            background-color: transparent;
        }

        .table-fixed1 tbody::-webkit-scrollbar {
            width: 5px;
            position: absolute;
            right: 0;
            background-color: #f5f5f5;
        }

        .table-fixed1 tbody::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 2px;
        }

.help-text {
    position: absolute;
    top: 33px;
    font-size: 12px
}

.scroll .table-fixed1 tbody {
    width: 100%;
    max-height: 170px;
    overflow-y: auto;
    display: block;
    overflow: overlay;
}




/*====== top Menu Scrollable =====*/
body.scrolable-top {
background: #f6f9fb;
}

body.scrolable-top #page-wrapper {
height: auto;
}

body.scrolable-top .navbar {
top: 0;
transition: top 0.45s ease-in-out;
z-index: 9;
}

body.scrolable-top .nav-up {
top: -50px;
}

body.footer-fixed-bottom footer {
position: absolute;
width: calc(100vw - 100px);
z-index: +10;
}

.gradient1 {
background: #006cab;
background: -moz-linear-gradient(top, #006cab 0%, #0093c0 100%);
background: -webkit-linear-gradient(top, #006cab 0%,#0093c0 100%);
background: linear-gradient(to bottom, #006cab 0%,#0093c0 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006cab', endColorstr='#0093c0',GradientType=0 );
}

.gradient2 {
background: #4e57a4;
background: -moz-linear-gradient(top, #4e57a4 0%, #545ea3 51%, #5b63a3 100%);
background: -webkit-linear-gradient(top, #4e57a4 0%,#545ea3 51%,#5b63a3 100%);
background: linear-gradient(to bottom, #4e57a4 0%,#545ea3 51%,#5b63a3 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8598f7', endColorstr='#60abf7',GradientType=0 ); /* IE6-9 */
}
/* theme Colors End*/



/*Ui-notification*/
.ui-notification {
position: fixed;
z-index: 9999;
width: 300px;
-webkit-transition: all ease .5s;
-o-transition: all ease .5s;
transition: all ease .5s;
color: #fff;
border-radius: 0;
background: #337ab7;
box-shadow: 5px 5px 10px rgba(0, 0, 0, .3);
}

.ui-notification.clickable {
cursor: pointer;
}

.ui-notification.clickable:hover {
opacity: .7;
}

.ui-notification.killed {
-webkit-transition: opacity ease 1s;
-o-transition: opacity ease 1s;
transition: opacity ease 1s;
opacity: 0;
}

.ui-notification > h3 {
font-size: 14px;
font-weight: bold;
display: block;
margin: 10px 10px 0 10px;
padding: 0 0 5px 0;
text-align: left;
border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.ui-notification a {
color: #fff;
}

.ui-notification a:hover {
text-decoration: underline;
}

.ui-notification > .message {
margin: 10px 10px 10px 10px;
}

.ui-notification.warning {
color: #fff;
background: #f0ad4e;
z-index: 10003;
}

.ui-notification.error {
color: #fff;
background: #d9534f;
z-index: 10003;
}

.ui-notification.success {
color: #fff;
background: #5cb85c;
z-index: 10003;
}

.ui-notification.info {
color: #fff;
background: #5bc0de;
z-index: 10003;
}

.p-5 {
padding: 5px;
}

.p-10 {
padding: 10px;
}

.p-20 {
padding: 20px;
}

.m-5 {
margin: 5px;
}

.m-10 {
margin: 10px;
}

.m-20 {
margin: 20px;
}

.border {
border: 1px solid #ddd;
}



/*Receipt page styles*/

.label-icon-sm .radio + span::before, .label-icon-sm .checkbox + span::before {
font-size: 16px;
}

.subscription-info {
height: 290px;
overflow: auto;
}

.hr {
border-color: #f3f3f3;
}

.member_recepiet .form-control {
height: 30px;
padding: 4px 12px;
}

.member_recepiet .form-group {
margin-bottom: 8px;
}

.member_recepiet .has-float-label .form-control:placeholder-shown:not(:focus) + label {
top: .6em;
}

.label-head {
font-weight: 600;
margin-right: 10px;
width: 100px;
}

.subscription-info .table-condensed > tbody > tr > td, .subscription-info .table-condensed > tbody > tr > th, .subscription-info .table-condensed > tfoot > tr > td, .subscription-info .table-condensed > tfoot > tr > th, .subscription-info .table-condensed > thead > tr > td, .subscription-info .table-condensed > thead > tr > th {
padding: 2px 5px;
}

.subscription-info .table-condensed > thead > tr > th {
background-color: #7b7b7b;
color: #fff;
}

.member_recepiet .panel-body {
padding: 10px 15px;
}

.d-flex {
display: flex;
}

.has-float-label + .label-sm {
position: absolute;
right: 16px;
top: 2px;
font-size: 12px;
font-weight: 600;
background: #f0f0f0;
color: #f40606;
padding: 4px 6px;
border-radius: 50%;
}

/*AutoList css*/
.autolist-img {
width: 25px;
height: 25px;
border-radius: 50%;
margin-right: 5px;
transition: transform .2s;
}

.autolist-img:hover {
transform: scale(1.8);
}
/* AUTOCOMPLETE */

.autocomplete {
position: relative;
width: 100%;
cursor: pointer;
}



.autocomplete ul {
position: absolute;
z-index: 5;
padding-left: 0px;
left: 0;
width: 100%;
background: #fff;
border: 1px solid #bababa;
border-radius: 0px 0px 5px 5px;
max-height: 150px;
overflow-y: auto;
/*border-left: 1px solid #888;
border-right: 1px solid #888;
border-bottom: 1px solid #888;*/
-webkit-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.1);
box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.1);
}

.autocomplete li {
position: relative;
width: 100%;
color: #000;
display: flex;
background: #fff;
border-radius: 4px;
padding: 3px 12px;
border-bottom: 1px solid rgba(236, 236, 236, .5);
border-radius: 0;
}

autocomplete + label {
z-index: 4 !important;
}

.autocomplete li.active {
width: 100%;
background-color: #f1f1f1;
}

.autocomplete .highlight {
background-color: #e6e6e6;
}

.autocomplete li.active .highlight {
background: #666;
color: #fff;
}
/*Menu hide*/
.navbar-brand {
width: 180px
}

.sidebar-nav {
clear: both;
}

.sidebar {
margin-top: 0px;
position: fixed;
z-index: 9999;
height: calc(100vh);
}

.sidebar a {
color: #fff;
}


.sidenav-toggled {
padding-bottom: 0px !important;
}

.theme {
position: fixed !important;
}

.navbar-header .section-logo {
display: none;
}

.navbar-default .section-logo {
display: block;
}

.sidebar .section-logo {
position: fixed;
top: 0px;
z-index: 9;
background: #0086b9;
}

.sidebar .sidebar-nav {
margin-top: 51px;
}

.employee-details {
width: 150px;
margin-left: 20px;
display: inline-block;
height: 30px;
padding: 3px 10px;
margin-bottom: 5px;
border: 1px #0086b9 solid !important;
}


/*file Remove css */
.upload-file {
display: block;
width: 130px;
position: relative;
}

.upload-file .remove-file-btn {
position: absolute;
top: -10px;
margin-right: -12px;
right: 4px;
width: 25px;
height: 25px;
background: rgba(0, 105, 166, 0.66);
border-radius: 50%;
cursor: pointer;
visibility: hidden;
opacity: 0;
transition: visibility 0.15s ease, opacity 0.15s ease;
}

.upload-file .remove-file-btn i {
color: #fff;
text-align: center;
padding-top: 3px;
margin-left: 6px;
margin-top: 2px;
}

.upload-file:hover .remove-file-btn {
visibility: visible;
opacity: 1;
}

.user-img img {
margin: 0px auto;
width: 100px;
height: 100px;
}

.user-sign img {
margin: 0px auto;
width: 100px;
height: 40px;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
}

datalist {
display: none;
}
/* specifically hide the arrow on focus */
label.input-file-label input {
display: none;
}

label.input-file-label i {
color: #006cab;
top: 4px;
left: 0;
}

label.input-file-label:hover i {
color: #fff;
}
.balance-details-grid .table > tbody > tr > td {
padding: 5px 8px;
}
.balance-details-grid .table > tbody > tr > td input {
height: 28px;
padding: 3px 8px;
}
.balance-details-grid .table > tbody > tr > td select {
height: 28px;
padding: 3px 8px;
}

/*Tabs Css*/
.tab-section {
position: relative;
overflow: hidden;
margin: 0 auto;
width: 100%;
font-weight: 300;
}

.tab-section .tab-content {
border: 1px solid #ccc;
border-top: none;
}

.tab-section ul li a i {
width: 25px;
height: 22px;
display: block;
position: relative;
z-index: 1;
float: left;
background-size: cover !important;
top: 9px;
left: 9px;
}

.tab-section i.personinfo-icon {
background: url(/dist/images/userinfo.png) no-repeat;
}

.tab-section li.active i.personinfo-icon {
background: url(/dist/images/userinfo_active.png) no-repeat;
}

.tab-section i.addressinfo-icon {
background: url(/dist/images/addressinfo.png) no-repeat;
}

.tab-section li.active i.addressinfo-icon {
background: url(/dist/images/addressinfo_active.png) no-repeat;
}

.tab-section .nav-tabs {
text-align: center;
}

.tab-section .nav-tabs ul {
position: relative;
display: -ms-flexbox;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: flex;
margin: 0 auto;
padding: 0;
max-width: 1200px;
list-style: none;
-ms-box-orient: horizontal;
-ms-box-pack: center;
-webkit-flex-flow: row wrap;
-moz-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
}

.tab-section .nav-tabs ul li {
position: relative;
z-index: 1;
display: block;
margin: 0;
text-align: center;
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
}

.tab-section .nav-tabs a {
position: relative;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
line-height: 2.5;
}

.tab-section .nav-tabs a span {
vertical-align: middle;
}

.tab-section .nav-tabs > li.active > a {
color: #74777b;
}

tab-section .nav-tabs a:focus {
outline: none;
}

.tab-section .nav-tabs > li {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.tab-section .nav-tabs > li > a {
padding: 0 1.5em 0 0.3em;
color: #0d9564;
-webkit-transition: color 0.2s;
transition: color 0.2s;
border: none;
}
/* Date Picker Icon*/
.dateicon {
position: absolute;
right: 2px;
top: 6px;
font-size: 18px;
font-weight: 600;
padding: 4px 6px;
}

@media screen and (max-width: 54em) {
.tab-section .nav-tabs > li > a {
padding: 0 0.5em 0 0.3em;
}
}

.tab-section .nav-tabs > li > a:hover,
.tab-section .nav-tabs > li > a:focus {
color: #fff;
background-color: transparent;
border: none;
}

.tab-section .nav-tabs > li.active a,
.tab-section .nav-tabs > li.active a:hover {
color: #435058;
}

.tab-section .nav-tabs > li > a span {
font-weight: 500;
padding: 10px 14px;
position: relative;
z-index: 2;
color: #dff2ff;
font-size: 16px;
}

.tab-section .nav-tabs > li.active > a span {
color: #006cab;
}

.tab-section .nav-tabs > li > a::after {
position: absolute;
top: 0;
right: -8px;
bottom: -3px;
left: 0;
z-index: 0;
outline: 1px solid transparent;
border-radius: 10px 10px 0 0;
background: #0086b9;
box-shadow: inset 0 -3px 3px rgba(0,0,0,0.05);
content: '';
-webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.tab-section .nav-tabs > li.active a::after {
background: #FFF;
box-shadow: none;
border: 1px solid #ccc;
border-bottom: transparent;
}

.tab-section .nav-tabs > li.active > a, .tab-section .nav-tabs > li.active > a:focus, .tab-section .nav-tabs > li.active > a:hover {
background: none;
border: none;
}

.tab-section .nav-tabs > li > a {
border: none;
}

.tab-section .nav > li > a:focus, .tab-section .nav > li > a:hover {
background: none;
border: none;
}

label.input-file-label input {
display: none;
}

label.input-file-label i {
color: #006cab;
}

label.input-file-label:hover i {
color: #fff;
}

@media (max-width: 767px) {
.navbar-header .section-logo {
display: block;
}

.navbar-default .section-logo {
display: none !important;
}

.navbar-header {
margin-left: 0px;
}

#page-wrapper {
height: calc(100vh - 51px);
overflow: auto;
}

.sidebar .sidebar-nav {
margin-top: 0px;
}

.sidebar {
right: 0;
}

.theme {
display: none;
}
}
/* 13/04/2018*/
/* Image Zoom*/

#zoom:hover {
-ms-transform: scale(2); /* IE 9 */
-webkit-transform: scale(2); /* Safari 3-8 */
transform: scale(2);
}

.indexDue:focus {
padding: 0px;
z-index: 9998;
}

.indexSelfChits {
padding: 0px;
z-index: 9997;
}


.grid-head {
background: #5c6d75;
color: #fff;
}

.balance-details-grid {
    height: 380px;
    overflow-y: auto;
}

.grid-filters button {
    background: #5c6d75;
    color: #fff;
    border: 1px #8a979c solid;
    border-radius: 3px;
    padding: 2px 10px;
    text-transform: uppercase;
}

    .grid-filters button[ng-click='exportPdf()']:before {
        content: '\f1c1';
        font-family: fontawesome;
        padding-right: 5px;
    }

    .grid-filters button[ng-click='exportExcel()']:before {
        content: '\f1c3';
        font-family: fontawesome;
        padding-right: 5px;
    }

    .grid-filters button[ng-click='exportCsv()']:before {
        content: '\f0f6';
        font-family: fontawesome;
        padding-right: 5px;
    }

.ui-grid-top-panel {
    background: #5c6d75;
    color: #fff;
}

/*.border-ddd {
border: 1px #ddd solid;
width: 100%;
}

.grid-filters {
text-align: right;
background: #c9ced0;
padding: 7px;
border: 1px #bbb solid;
width: 100%;
}

.grid {
width: 100% !important;
height: 400px;
}*/

.border-dd {
    border: 1px #ddd solid;
    width: 300px;
}


.border-ddd {
    border: 1px #ddd solid;
    width: 1180px;
}

.grid-filters {
    text-align: right;
    background: #c9ced0;
    padding: 7px;
    border: 1px #bbb solid;
    width: 1180px;
}

.grid {
    width: 1180px !important;
    height: 400px;
}

.ui-grid-menu-button {
    z-index: 2;
    position: absolute;
    right: 0;
    color: #fff;
    top: 0;
    background: #5c6d75;
    border: 0;
    border-left: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    cursor: pointer;
    height: 31px;
    font-weight: normal;
}

.ui-grid-header-cell-wrapper {
    width: 100%;
}

.filters {
    border-top: 1px #ddd solid;
    display: inline-block;
    width: 100%;
    margin-left: 0px;
}

.border-r {
    border: 1px solid; /*border: 1px dashed;*/
    border-color: #cecece;
    padding: 7px;
    min-height: 200px;
    border-radius: 5px;
    /*add*/
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-transition: .25s box-shadow;
    transition: .25s box-shadow;
}
.anchor_style a {
    text-decoration: underline !important;
    color: blue !important;
}
.bg-grey .radio + span::before, .checkbox + span::before {
    font-family: FontAwesome;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 6px;
    color: #b0c0d5;
    font-weight: 700;
}

.bg-grey .checkbox:checked + span:before {
    color: #0c557f;
}

.grid-filters input {
    border: 1px #cccecf solid;
    border-radius: 3px;
    text-indent: 7px;
    line-height: 1.7em;
    width: 25%;
}

.grid-filters img {
    width: 15px;
    margin-bottom: 2px;
}

.list-view {
    float: left;
    padding: 5px 10px;
    color: #ffffff;
    margin: 10px;
    border-radius: 5px;
    text-decoration: underline;
}

.favorite {
    float: right;
    padding: 5px 10px;
    color: #ffffff;
    margin: 10px;
    border-radius: 5px;
    text-decoration: underline;
}

.menu-2ndlevel li a {
    text-decoration: none;
}

    .menu-2ndlevel li a img {
        width: 28px;
        padding: 0px 0px 0px 0px;
    }

    .menu-2ndlevel li a .icon-wrapper {
        display: block;
        margin-bottom: 15px;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        transition: all 0.1s ease-in-out;
    }

.menu-2ndlevel li:hover a .icon-wrapper {
    margin-bottom: 12px;
}


.menu-2ndlevel li a:hover .icon-wrapper {
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.2);
}

.menu-2ndlevel li .list-N-fav {
    transition: all 0.1s ease-in-out;
}


    .menu-2ndlevel li .list-N-fav a {
        font-weight: 600;
        color: #aaacad;
        padding: 15px 10px;
        display: block;
    }

        .menu-2ndlevel li .list-N-fav a i:before {
            content: "\f08a";
            width: 15px;
            height: 15px;
            font-family: fontawesome;
            font-style: initial;
        }

        .menu-2ndlevel li .list-N-fav a i.fav:before {
            content: "\f004";
        }

.menu-2ndlevel li:hover .list-N-fav a i {
    color: #fff;
}

/* ====== Date picker Styles ==== */
.datepicker.dropdown-menu {
    width: 250px;
    height: 250px;
}

    .datepicker.dropdown-menu button {
        outline: none;
        border: 0px;
    }

        .datepicker.dropdown-menu button i {
            color: #434343;
        }

    .datepicker.dropdown-menu tbody {
        height: 180px;
    }

        .datepicker.dropdown-menu tbody button {
            padding: 6px;
        }

    .datepicker.dropdown-menu.datepicker-mode-1 tbody button, .datepicker.dropdown-menu.datepicker-mode-2 tbody button {
        height: 65px;
    }

.datepicker .text-muted {
    color: #c0c0c0;
}

.btn.focus, .btn:focus, .btn:hover {
    color: #006cab;
    text-decoration: none;
}

.btn-custom1:focus {
    color: #fff;
}

.btn-rounded:hover, .btn-rounded:focus {
    color: #fff;
}

.lh-30 {
    line-height: 30px;
}


/* ====== Theme Settings Css ===== */
.theme-setings {
    position: fixed;
    top: 90px;
    width: 260px;
    z-index: 99;
    right: -260px;
    background: #3a4651;
    color: #fff;
    padding: 5px 20px;
    /* border: 4px solid #afbcc7; */
    -webkit-transition: all .35s ease-in-out;
    -ms-transition: all .35s linear;
    -o-transition: all .35s linear;
    transition: all .35s ease-in-out;
}

    .theme-setings .btn-theme {
        position: absolute;
        left: -35px;
        background: #3a4651;
        border-radius: 0;
        font-size: 16px;
        border: 0;
        padding: 5px 12px;
        top: 0px;
        border-radius: 25px 0 0 25px;
    }

        .theme-setings .btn-theme:focus {
            outline: none;
        }

        .theme-setings .btn-theme i {
            color: #fff;
        }

ul.color-setting li {
    float: left;
    border: 2px solid #fff;
    margin-right: 10px;
}

.theme-setings.slidein {
    right: 0;
}

.theme-setings .radio + span::before {
    color: #929292;
}

.theme-setings .radio:checked + span:before {
    color: #fff;
}

.gradient1 {
    background: #006cab;
    background: -moz-linear-gradient(top, #006cab 0%, #0093c0 100%);
    background: -webkit-linear-gradient(top, #006cab 0%,#0093c0 100%);
    background: linear-gradient(to bottom, #006cab 0%,#0093c0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006cab', endColorstr='#0093c0',GradientType=0 );
}

.gradient2 {
    background: rgba(204,43,94,1);
    background: -moz-linear-gradient(left, rgba(204,43,94,1) 0%, rgba(117,58,136,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(204,43,94,1)), color-stop(100%, rgba(117,58,136,1)));
    background: -webkit-linear-gradient(left, rgba(204,43,94,1) 0%, rgba(117,58,136,1) 100%);
    background: -o-linear-gradient(left, rgba(204,43,94,1) 0%, rgba(117,58,136,1) 100%);
    background: -ms-linear-gradient(left, rgba(204,43,94,1) 0%, rgba(117,58,136,1) 100%);
    background: linear-gradient(to right, rgb(88, 114, 226) 0%, rgb(108, 133, 242) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc2b5e', endColorstr='#753a88', GradientType=1 );
}

.gradient3 {
    background: rgba(237,123,23,1);
    background: -moz-linear-gradient(left, rgba(237,123,23,1) 0%, rgba(228,82,49,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(237,123,23,1)), color-stop(100%, rgba(228,82,49,1)));
    background: -webkit-linear-gradient(left, rgba(237,123,23,1) 0%, rgba(228,82,49,1) 100%);
    background: -o-linear-gradient(left, rgba(237,123,23,1) 0%, rgba(228,82,49,1) 100%);
    background: -ms-linear-gradient(left, rgba(237,123,23,1) 0%, rgba(228,82,49,1) 100%);
    background: linear-gradient(to right, rgb(55, 183, 222) 0%, rgb(69, 200, 220) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed7b17', endColorstr='#e45231', GradientType=1 );
}

.gradient4 {
    background: rgba(0,194,162,1);
    background: -moz-linear-gradient(left, rgba(0,194,162,1) 0%, rgba(2,170,176,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,194,162,1)), color-stop(100%, rgba(2,170,176,1)));
    background: -webkit-linear-gradient(left, rgba(0,194,162,1) 0%, rgba(2,170,176,1) 100%);
    background: -o-linear-gradient(left, rgba(0,194,162,1) 0%, rgba(2,170,176,1) 100%);
    background: -ms-linear-gradient(left, rgba(0,194,162,1) 0%, rgba(2,170,176,1) 100%);
    background: linear-gradient(to right, rgba(0,194,162,1) 0%, rgba(2,170,176,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c2a2', endColorstr='#02aab0', GradientType=1 );
}

.purple {
    background: #6673FC;
}

.color-theme-bg {
    background: #252f37;
    padding-bottom: 10px;
    padding-top: 5px;
    margin-bottom: 5px;
}

/* 25 may 2018*/
.switch-wrapper {
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    margin-top: 5px;
}

    .switch input {
        display: none;
    }

.slider {
    margin-left: 6px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 12px;
        width: 12px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/* ====== Theme Settings Css END ===== */

/*Dashboard Css*/
.d-block p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.d-block p {
    font-size: 16px;
}

.dashboard-info1 {
    background: rgba(55,203,188,1);
    background: -moz-linear-gradient(-45deg, rgba(55,203,188,1) 0%, rgba(14,157,214,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(55,203,188,1)), color-stop(100%, rgba(14,157,214,1)));
    background: -webkit-linear-gradient(-45deg, rgba(55,203,188,1) 0%, rgba(14,157,214,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(55,203,188,1) 0%, rgba(14,157,214,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(55,203,188,1) 0%, rgba(14,157,214,1) 100%);
    background: linear-gradient(135deg, rgba(55,203,188,1) 0%, rgba(14,157,214,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37cbbc', endColorstr='#0e9dd6', GradientType=1 );
    border-radius: 8px;
}

.dashboard-bg1 {
    background: url('/dist/images/menuIcons/rupee.png') no-repeat;
    background-position: right;
    background-size: contain;
}

.dashboard-info2 {
    background: rgba(255,132,91,1);
    background: -moz-linear-gradient(-45deg, rgba(255,132,91,1) 0%, rgba(255,84,155,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(255,132,91,1)), color-stop(100%, rgba(255,84,155,1)));
    background: -webkit-linear-gradient(-45deg, rgba(255,132,91,1) 0%, rgba(255,84,155,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(255,132,91,1) 0%, rgba(255,84,155,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(255,132,91,1) 0%, rgba(255,84,155,1) 100%);
    background: linear-gradient(135deg, rgba(255,132,91,1) 0%, rgba(255,84,155,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff845b', endColorstr='#ff549b', GradientType=1 );
    border-radius: 8px;
}

.dashboard-bg2 {
    background: url('/dist/images/menuIcons/group.png') no-repeat;
    background-position: right;
    background-size: contain;
}

.dashboard-bg3 {
    background: url('/dist/images/menuIcons/vacant.png') no-repeat;
    background-position: right;
    background-size: contain;
}

.dashboard-info3 {
    background: rgba(239,107,226,1);
    background: -moz-linear-gradient(-45deg, rgba(239,107,226,1) 0%, rgba(133,101,250,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(239,107,226,1)), color-stop(100%, rgba(133,101,250,1)));
    background: -webkit-linear-gradient(-45deg, rgba(239,107,226,1) 0%, rgba(133,101,250,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(239,107,226,1) 0%, rgba(133,101,250,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(239,107,226,1) 0%, rgba(133,101,250,1) 100%);
    background: linear-gradient(135deg, rgba(239,107,226,1) 0%, rgba(133,101,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef6be2', endColorstr='#8565fa', GradientType=1 );
    border-radius: 8px;
}

.dashboard-info4 {
    background: rgba(141,112,238,1);
    background: -moz-linear-gradient(-45deg, rgba(141,112,238,1) 0%, rgba(31,127,187,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(141,112,238,1)), color-stop(100%, rgba(31,127,187,1)));
    background: -webkit-linear-gradient(-45deg, rgba(141,112,238,1) 0%, rgba(31,127,187,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(141,112,238,1) 0%, rgba(31,127,187,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(141,112,238,1) 0%, rgba(31,127,187,1) 100%);
    background: linear-gradient(135deg, rgba(141,112,238,1) 0%, rgba(31,127,187,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8d70ee', endColorstr='#1f7fbb', GradientType=1 );
    border-radius: 8px;
}

    .dashboard-info1 h4, .dashboard-info2 h4, .dashboard-info3 h4, .dashboard-info4 h4,
    .dashboard-info1 p, .dashboard-info2 p, .dashboard-info3 p, .dashboard-info4 p,
    .dashboard-info1 i, .dashboard-info2 i, .dashboard-info3 i, .dashboard-info4 i {
        color: #fff;
        letter-spacing: 1px;
        font-weight: 600;
    }

/*Dashboard Css End*/



/*Modal Popup*/

.modal-body {
    height: calc(100vh - 160px);
    overflow: auto;
}

.modal-footer {
    text-align: center;
}

.modal-backdrop {
    z-index: 10000
}

.modal {
    z-index: 10001 !important;
}

.modal-header {
    padding: 8px 15px;
}

    .modal-header button.close {
        position: absolute;
        right: 15px;
        top: 12px;
    }

        .modal-header button.close i {
            color: #000000;
        }
/*modal1*/
.modal1-body {
    height: 200px;
    overflow: auto;
}

.modal1-footer {
    text-align: center;
}

.modal1-backdrop {
    z-index: 10000
}

.modal1 {
    z-index: 10001 !important;
}


.modal1-header {
    padding: 8px 15px;
}

    .modal1-header button.close {
        position: absolute;
        right: 15px;
        top: 12px;
    }

        .modal1-header button.close i {
            color: #000000;
        }

@media (min-width: 992px) {
    .modal-lg {
        width: 96%;
        margin: 2% auto;
    }

    .modal-md {
        width: 800px;
        margin: 2% auto;
    }

    .modal-sm {
        width: 400px;
        margin: 2% auto;
    }

    .modal-xsm {
        width: 320px;
        margin: 2% auto;
    }
}

@media (max-width:992px) {
    .modal-lg {
        width: 90%;
        margin: 2% auto;
    }

    .modal-md {
        width: 500px;
        margin: 2% auto;
    }

    .modal-sm {
        width: 300px;
        margin: 2% auto;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        margin: 2% auto;
    }
}
/*End Modal PopUp*/

/*Start on Focus placeholder 10072018*/
input:focus ~ .floating-label,
input:not(:focus):valid ~ .floating-label {
    top: 8px;
    bottom: 10px;
    left: 20px;
    font-size: 11px;
    opacity: 1;
}

.inputText {
    font-size: 14px;
    width: 200px;
    height: 35px;
}

.floating-label {
    position: absolute;
    pointer-events: none;
    left: 20px;
    top: 18px;
    transition: 0.2s ease all;
}

/*Snniping Loader*/

.tp-loader {
    top: 50%;
    left: 50%;
    z-index: 10000;
    position: absolute;
}

    .tp-loader.spinner {
        width: 80px;
        height: 100px;
        /*background: url(https://i.imgur.com/ICOsAmq.gif) no-repeat center center;*/
        background-color: lightblue;
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
        margin-top: -20px;
        margin-left: -20px;
        -webkit-animation: tp-rotateplane 1.2s infinite ease-in-out;
        animation: tp-rotateplane 1.2s infinite ease-in-out;
        border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
    }



@-webkit-keyframes tp-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes tp-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/* /Snnipping Loader*/

/*date 17-08-2018*/
.new-reg {
    border-radius: 5px;
    background: #006cab;
    color: #fff;
    border: 1px #fff solid;
    line-height: 40px;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3);
}

.new-entry {
    display: block !important;
    font-size: 30px !important;
    color: #fff !important;
}
/*End date 17-08-2018*/
@keyframes passing {
    0% {
        transform: translateX(-50%);
        opacity: 0
    }

    50% {
        transform: translateX(0%);
        opacity: 1
    }

    100% {
        transform: translateX(50%);
        opacity: 0
    }
}

.faa-passing.animated,
.faa-passing.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-passing {
    animation: passing 2s linear infinite;
}

    .faa-passing.animated.faa-fast,
    .faa-passing.animated-hover.faa-fast:hover,
    .faa-parent.animated-hover:hover > .faa-passing.faa-fast {
        animation: passing 1s linear infinite;
    }

    .faa-passing.animated.faa-slow,
    .faa-passing.animated-hover.faa-slow:hover,
    .faa-parent.animated-hover:hover > .faa-passing.faa-slow {
        animation: passing 3s linear infinite;
    }
.alter-colour-strip .row:nth-of-type(odd) {
    background: #fbfbfb;
    margin: 0 -10px;
}
.alter-colour-strip .row:nth-of-type(even) {
    margin: 0 -10px;
}



.search-autocomplete div:before {
    content: "\f002";
    font-family: FontAwesome;
    width: 18px;
    height: 18px;
    top: 6px;
    left: 11px;
    position: absolute;
    color: #2b8ecf;
    z-index: 1;
}

.search-autocomplete div input {
    border: 2px solid #0b89b7 !important;
    padding-left: 20px;
    padding: 0px 10px 0px 26px;
    transition: all 0.4s ease-in-out;
    width: 180px;
    border-radius: 18px;
}
    .search-autocomplete div input:focus {
        width: 260px;
        outline: none;
        box-shadow: none;
    }
.particular-finel-row {
    border-top: 1px #e6ebef solid;
    padding-top: 10px;
}
.custom-button {
    border-radius: 3px;
    height: 30px;
    padding: 6.5px !important;
    line-height: 9px;
    font-size: 15px;
}
    .custom-button i {
        padding-right:0px;
    }
#auction-details .form-group {
    margin-bottom:8px;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc;
    display: block;
    right: -2px;
    bottom: 10px;
}

#ifrmRpt{
    height:430px;
    width:100%;
}



/*angucomplete*/
.angucomplete-holder {
    position: relative;
    width:auto;
}

.angucomplete-dropdown {
    border-color: #ececec;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    width: 250px;
    padding: 6px;
    cursor: pointer;
    z-index: 9999;
    position: absolute;
    /*top: 32px;
    left: 0px;
    */
    margin-top: -6px;
    background-color: #ffffff;
}

.angucomplete-searching {
    color: #acacac;
    font-size: 14px;
}

.angucomplete-description {
    font-size: 14px;
}

.angucomplete-row {
    padding: 5px;
    color: #000000;
    margin-bottom: 4px;
    clear: both;
}

.angucomplete-selected-row {
    background-color: lightblue;
    color: #ffffff;
}

.angucomplete-image-holder {
    padding-top: 2px;
    float: left;
    margin-right: 10px;
    margin-left: 5px;
}

.angucomplete-image {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border-color: #ececec;
    border-style: solid;
    border-width: 1px;
}

.angucomplete-image-default {
    /* Add your own default image here
     background-image: url('/assets/default.png');
    */
    background-position: center;
    background-size: contain;
    height: 34px;
    width: 34px;
}
.angucomplete-dropdown {
    overflow-y: auto;
    max-height: 200px;
   
}
.navbar-right .has-float-label {
    margin-bottom: 0px;
    margin-top: 8px;
}
.navbar-right .has-float-label select.seelect-control {
    top: 3px;
}
.navbar-right .has-float-label label {
    top: 0px;
}
.ui-grid-pager-row-count-picker select {
    padding: 3px 10px;
    height: 27px;
}
@media only screen and (max-width: 600px) and (min-width: 320px) {
.theme-setings {
    top: 132px;
}
.search-autocomplete div input:focus {
    width: 230px;
    outline: none;
    box-shadow: none;
}
.sidebar {
    margin-top: -50px;
}
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 8px;
}