@font-face {
    font-family: "Poppins", sans-serif;
    /* src: url("../fonts/PoppinsRegular.eot");
    src: url("../fonts/PoppinsRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/PoppinsRegular.woff") format("woff"), url("../fonts/PoppinsRegular.ttf") format("truetype"), url("../fonts/PoppinsRegular.svg#PoppinsRegular") format("svg"); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/Poppins-Medium.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/Poppins-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/Poppins-Medium.svg#svgPoppins-Medium') format('svg');
    /* Legacy iOS */
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/PoppinsLight.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/PoppinsLight.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/PoppinsLight.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/PoppinsLight.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/PoppinsLight.svg#svgPoppinsLight') format('svg');
    /* Legacy iOS */
}

@font-face {
    font-family: 'AvenirLTStd-Medium';
    src: url('../fonts/AvenirLTStd-Medium.eot');
    /* IE9 Compat Modes */
    src: url('../fonts/AvenirLTStd-Medium.woff2') format('woff2'), /* Super Modern Browsers */
    url('../fonts/AvenirLTStd-Medium.woff') format('woff'), /* Pretty Modern Browsers */
    url('../fonts/AvenirLTStd-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/AvenirLTStd-Medium.svg#svgAvenirLTStd-Medium') format('svg');
    /* Legacy iOS */
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    overflow: hidden;
    color: #2e2f3b;
}

nav.navbar {
    background: #00a0f0;
    background: rgb(0, 160, 240);
    background: linear-gradient(90deg, rgba(0, 160, 240, 1) 34%, rgb(25, 139, 213) 59%);
    padding-top: 2px;
    padding-bottom: 2px;
}

.userInfo {
    display: inline-block;
    position: relative;
}

.userInfo img {
    position: absolute;
    left: -45px;
}

.userInfo p {
    margin: 0px;
    line-height: .4rem;
    padding-top: 8px;
}

.userInfo small {
    color: #cacaca;
    font-size: 68%;
}


/*.bg-white {
  background: #fefafa !important;
}*/

section {
    padding: 15px 0;
    padding: 20px 0;
    height: calc(100vh - 174px);
    overflow-y: auto;
}

section.dashboard-counts div[class*='col-'] .item {
    border-right: 1px solid #007bff;
    padding: 15px 0;
}

.container-fluid {
    padding: 0 6px;
}

.content-inner {
  position: relative;
  /* width: 100%; */
  min-height: calc(100vh - 64px);
  padding-bottom: 33px;
  width: calc(100% - 250px);
}
  .content-inner .table-warpper {
    width: calc(100%);
  }

  .content-inner.active .table-warpper {
    width: 100%;
  }

.table-warpper tr td, .table-warpper tr th {
  max-width:200px;
    word-break: break-word;
  white-space: normal;
  word-wrap: break-word;
  min-width: 150px;
}
/*header.page-header {
  padding: 20px 0;
}*/
/*header.page-header h2 {
    font-size: 1.1rem;
  }*/
header.page-header h2 .ui-button-text-icon-left .ui-button-text {
  padding: 0.2em 1em 0.2em 2em;
}

header.page-header h2 .ui-button:hover,
header.page-header h2 .ui-button:focus {
    box-shadow: none !important;
}

section {
    padding: 20px 10px;
}

nav.side-navbar ul li li a .fa {
    margin-right: 5px;
}


/* BOX TITLE */

.box_title {
    margin: 0 0 10px;
    border-bottom: .5px solid #d5d5d5;
    padding: 0 0 10px;
    color: #444;
    font-family: 'PoppinsLight';
    font-size: 30px;
    font-weight: bold;
}


/* OPENING SCROLLBAR VERTICAL */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: rgba(12, 11, 11, 0.18);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #78879c;
    border-radius: 10px;
}


/* CLOSING SCROLLBAR VERTICAL */

.custom_table {
    background: #fff;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
    padding: 10px;
    border-radius: 5px;
}

.custom_table thead {
    background: lightsteelblue;
}


/* CLOSING LAB USERS TABLE */


/* SPINNER */

.loader {
    border: 4px solid #e8dcc6;
    border-radius: 50%;
    border-top: 5px solid #ff791e;
    border-bottom: 5px solid #1e2b68;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    width: 100%;
    height: 100%;
    z-index: 10000;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    background: white;
    opacity: 0.6;
}


/* Added by Tejal */

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-right: 10px;
    padding-left: 10px;
}

table {
    font-size: 0.95em;
}

body .ui-table-wrapper .ui-table-thead>tr>th {
    padding: 0.3rem .75rem;
    /* background-color:  transparent !important; */
    color: #666;
    border-color: #dee2e6;
    /* border:none !important; */
    border-bottom: 2px solid #dee2e6 !important;
    border-top: 1px solid #dee2e6 !important;
}

body .ui-table tbody tr:hover td,
.ui-table tbody tr:hover th {
    background-color: #e1e6eb !important;
    color: black !important;
}

body .ui-table-wrapper .ui-table-tbody>tr>td {
    /* border:none !important; */
    border-color: #dee2e6;
    border-top: 1px solid #dee2e6 !important;
    padding: 0.3rem .75rem;
}


/* Icon buttons in Tables css */

body table .ui-button {
    color: #333;
    background-color: #007ad900;
    border: 1px solid #007ad900;
    font-size: 18px;
}

body table .ui-button.ui-button-icon-only .ui-button-text {
    padding: 0;
}

body table .ui-button.ui-button-icon-only {
    width: 1.5em;
    height: 1.5em;
}


/*end Icon buttons in Tables css */

body .ui-dropdown {
  /* border: 1px solid #dee2e6;
    width: 100%;*/
  border: 1px solid #dee2e6;
  width: 100%;
  min-width: 100% !important;
}

body .ui-corner-all {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.serc_reset_navigation {
    margin-top: 30px;
}

.customLink,
.customLink:hover {
    color: black;
    text-decoration: none;
}


/* btn css */

body .ui-button {
    background-color: rgba(120, 135, 165, 1);
    border-color: rgb(100, 102, 106);
    cursor: pointer;
}

body .ui-button.ui-button-text-only .ui-button-text {
    padding: 0.4em 2.5em;
    text-transform: uppercase;
    font-family: 'Poppins-Medium';
}

body .ui-button.ui-button-rounded {
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.ui-button-icon-only .ui-button-icon-left,
.ui-button-text-icon-left .ui-button-icon-left,
.ui-button-text-icon-right .ui-button-icon-right {
    margin-top: -.65em;
}

body .ui-button.ui-state-default.ui-button-success,
body .ui-buttonset.ui-button-success>.ui-button.ui-state-default {
    color: #ffffff;
    background-color: #9bc832;
    border: 1px solid #9bc832;
    /* background: rgb(0,160,240);
	background: linear-gradient(90deg, rgba(0,160,240,1) 34%, rgb(25, 139, 213) 59%);
	border: 1px solid rgb(0,160,240); */
    background: rgb(123, 192, 20);
    background: linear-gradient(90deg, rgba(123, 192, 20, 1) 46%, rgb(104, 170, 7) 72%);
}

body .ui-button.ui-state-default.ui-button-primary,
body .ui-buttonset.ui-button-primary>.ui-button.ui-state-default {
    /*background: rgb(0,160,240);
  color: #ffffff;
  background: linear-gradient(90deg, rgba(0,160,240,1) 34%, rgb(25, 139, 213) 59%);
  border: 1px solid rgb(0,160,240);*/
    background: #ff791e;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Poppins-Medium';
    border: none;
    padding: 0.4em 1.4em;
    border-radius: 20px;
}

body .ui-button.ui-button-text-icon-left .ui-button-text {
    padding: 0.4em 2.5em;
}

body .ui-button.ui-state-default.ui-button-info,
body .ui-buttonset.ui-button-info>.ui-button.ui-state-default {
    background: rgb(0, 160, 240);
    color: #ffffff;
    background: linear-gradient(90deg, rgba(0, 160, 240, 1) 34%, rgb(25, 139, 213) 59%);
    border: 1px solid rgb(0, 160, 240);
}

body .ui-button.ui-state-default.ui-button-danger,
body .ui-buttonset.ui-button-danger>.ui-button.ui-state-default {
    /*color: #ffffff;
  background: rgb(255,0,64);
  background: linear-gradient(90deg, rgba(255,0,64,1) 46%, rgba(230,0,80,1) 72%);
  border: 1px solid rgb(230,0,80);*/
    background: #dddddd !important;
    color: #333333 !important;
    text-transform: uppercase;
    font-family: 'Poppins-Medium';
    border: none;
    padding: 0.4em 1.4em;
    border-radius: 20px;
}

body .ui-button.ui-state-default.ui-button-warning,
body .ui-buttonset.ui-button-warning>.ui-button.ui-state-default,
.btn-warning {
    color: #ffffff;
    background: #ff791f;
    /*background: rgb(255,167,0);
  background: linear-gradient(90deg, rgba(255,167,0,1) 46%, rgba(213,146,19,1) 72%);*/
    border: 1px solid rgb(255, 167, 0);
}

body .ui-inputtext {
    border: 1px solid #dee2e6;
    max-width: 100%;
    border-radius: 4px;
}


/* calendar css */

.ui-calendar {
    width: 100%;
}

body .ui-calendar.ui-calendar-w-btn .ui-inputtext {
    width: calc(100% - 2.357em);
}

body .ui-calendar.ui-calendar-w-btn .ui-datepicker-trigger.ui-button {
    top: -3px;
}

body .date-input .ui-calendar.ui-calendar-w-btn .ui-inputtext {
    width: 100%;
}

body .date-input .ui-calendar.ui-calendar-w-btn .ui-datepicker-trigger.ui-button {
    display: none;
}


/*Added by Ashok*/

body .ui-table .ui-table-thead>tr>th {
    color: #666 !important;
}


/*// Added by Mahendra*/

.page-header.scrollabletable {
    width: calc(100% - 250px);
}

.content-inner.active .page-header.scrollabletable {
    width: calc(100%);
}

.card.table {
    width: calc(100% - 250px);
}

.content-inner.active .card.table {
    width: calc(100%);
}

body .ui-fileupload .ui-fileupload-buttonbar .ui-button:not(first-child) {
    margin-right: 0px !important;
    top: -3px;
}

body .ui-fileupload .ui-fileupload-buttonbar p-button {
    margin-left: 8px !important;
}

.badge {
    padding: .30em .4em;
    font-size: 85%;
    font-weight: 700;
    border-radius: .35rem;
}

.block .btn {
    border: 1px solid #666;
    height: 100px;
    line-height: 100px;
    width: 80%;
    margin: 10% auto;
    background-color: #e46713;
    color: #ffffff;
}

span>input[type=checkbox],
span>input[type=radio] {
    margin: 0px;
    height: 15px;
    width: 15px;
    margin: 3px;
}

.checkbox,
.radio {
    margin-top: 0px;
    margin-bottom: 0px;
}

.checkbox:not(.icheck) label,
.radio label {
    padding-left: 20px;
    line-height: 20px;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    margin-left: 0px;
}

help-.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}


/*added new by tejal*/

.form-control {
    border-radius: 6px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f7f7f7;
    opacity: 1;
}

.form-group label {
    font-family: 'Poppins-Medium';
    color: #000;
    font-weight: normal;
    word-break: break-word;
}

/*.loginpage {
    height: 100vh;*/
    /*margin-top:-50px;*/
    /*padding: 50px;
    background: #e9edf3;
    color: #fff;
}*/

.loginpage {
  height: 100vh;
  /* margin-top: -50px; */
  padding: 50px;
  background: #e9edf3;
  color: #fff;
  width: calc(100% + 250px);
}

.loginpage .logo {
    /*padding: 30px;*/
    margin-top: -45px;
    width: 100px;
}

.login_content {
    background: #1e2b68;
    border-radius: 30px;
}

.login_content h2 {
    font-family: 'Poppins-Medium';
    text-transform: uppercase;
    margin: 30px auto;
    font-weight: 500;
}

.login_content .login-form {
    padding: 40px 50px 10px 50px;
    background: #fff;
    color: #2e2f3b;
    font-family: 'Poppins-Medium';
    border-radius: 0 0 30px 30px;
    text-transform: uppercase;
}

.btnLogin {
    display: block;
  background: #ff791e !important;
  /* width: 100%; */
  letter-spacing: 0px;
  font-size: 1.1rem;
  margin: 30px auto 15px !important;
  border-radius: 30px !important;
  color: #fff !important;
  border: none;
  padding: 2px 2rem;
}

body .ui-button.btnForgotPwd {
    border: none !important;
    background-color: transparent !important;
    color: #9a9a9a !important;
    font-weight: 400;
    font-size: 12px;
    box-shadow: none;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.loginCopyright {
    color: #9d9d9d;
    text-transform: capitalize;
}

nav.navbar {
    background: #e9edf3;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    box-shadow: none;
}

nav.navbar .container-fluid {
    padding: 0px;
}

nav.navbar .navbar-header {
    width: 250px;
    background: #1e2b68;
    border-radius: 0px 35px 0px 0px;
}

.navTopMenu {
    width: calc(100% - 250px);
}

nav.navbar .nav-link {
    color: #484848;
}

nav.side-navbar {
    /*height: calc(100vh - 64px);*/
    height: 100vh;
    overflow-y: auto;
    background: #1e2b68;
    margin-top: -62px;
    z-index: 11;
    border-radius: 0px 38px 0px 0px;
}

nav.side-navbar ul li a {
    text-transform: uppercase;
    border: 1px solid rgba(157, 182, 218, 0.10);
    border-left: 4px solid transparent;
    color: #9db6da;
    padding: 15px;
}

nav.side-navbar a[data-toggle="collapse"]::before {
    content: '\f067' !important;
}

nav.side-navbar a[aria-expanded="true"]::before {
    content: '\f068' !important;
}

nav.side-navbar a i {
    color: #9db6da;
}

nav.side-navbar ul li a:hover,
nav.side-navbar ul li li.active>a,
nav.side-navbar a[aria-expanded="true"] {
    background: #13205b;
    border-left: 4px solid #ff791e;
    color: #00b0e8;
}

nav.side-navbar ul li a:hover i {
    color: #00b0e8;
}

nav.side-navbar ul li a img {
    filter: invert(0.5) sepia(1) hue-rotate(200deg);
    margin-right: 6px;
}

nav.side-navbar ul li a:hover img {
    filter: invert(0.29) sepia(1) saturate(20) hue-rotate(176.8deg) brightness(0.9);
}

nav.side-navbar ul li li a {
    padding-left: 50px;
    background: #101a48;
    /* border-left: 4px solid #ff791e; */
    color: rgba(157, 182, 218, 0.65);
}

nav.side-navbar.shrinked .sidebar-header img {
    width: 60px;
}

.searchbar {
    display: inline-block;
    position: relative;
    width: 50%;
}

.searchbar .form-control.top-search-input {
    border-radius: 6px;
    padding-left: 40px;
}

.searchbar:before {
    position: absolute;
    left: 14px;
    top: 8px;
    content: "\f002";
    font-family: FontAwesome;
    color: #959faf;
    z-index: 11;
}

.searchbar+p {
    display: inline-block;
    color: #989898;
    margin: 0px;
    padding: 0px 15px;
}

.page-header {
    background: transparent;
    box-shadow: none;
}

header.page-header {
    padding: 30px 20px;
}

header.page-header .ui-button.ui-state-default.ui-button-info {
    color: #2e2f3b !important;
    font-size: 16px;
    font-family: 'Poppins-Medium';
    font-weight: normal;
    text-transform: uppercase;
    background: transparent !important;
    border-color: transparent !important;
    margin-top: -9px;
    outline: none;
    box-shadow: none
}

header.page-header .ui-button.ui-state-default.ui-button-info .ui-button-icon-left {
    color: #ff791e !important;
}

header.page-header .ui-button:focus,
header.page-header .ui-button:hover {
    box-shadow: none;
}

.page {
    background: #e9edf3;
}

header.page-header h2 {
    font-size: 1.2rem;
    color: #1e2b68;
    position: relative;
    font-weight: 500;
}

header.page-header h2:before {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -12px;
    content: '';
    border-bottom: 1.1px solid #ccc;
}

header.page-header h2:after {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -14px;
    content: '';
    border: 3px solid #b6c2d4;
    border-radius: 5px;
    width: 60px;
}

header.page-header a {
    color: #2e2f3b;
    font-size: 16px;
    font-family: 'Poppins-Medium';
    font-weight: normal;
    text-transform: uppercase;
}

header.page-header .filterArea {
    margin-top: -15px;
}

body header.page-header .filterArea .ui-button.ui-state-default.ui-button-warning {
    border-radius: 6px;
}

body header.page-header .filterArea .ui-dropdown {
  width: 80%;
  min-width: 80% !important;
}
 

.card {
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.card .card-body h3.heading {
    font-family: 'Poppins-Medium';
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0px auto;
    color: #1e2b68;
    border-bottom: 1px solid #eee;
    padding: 4px 0;
}

h3.header {
    font-family: 'Poppins-Medium';
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 8px auto;
}

body .ui-widget {
    font-family: 'Poppins-Medium';
    font-weight: 500;
}

body .ui-multiselect {
    width: 100%;
    display: block;
}

.ui-multiselect .ui-multiselect-panel {
    right: 0px !important;
}


/*dashboard css*/

.statistic {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 50px;
}

.statistic:last-of-type {
    margin-bottom: 30px;
}

.statistic .count {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    min-width: 60px;
    max-width: 60px;
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
}

.statistic .count h3 {
    line-height: inherit;
}

.statistic strong {
    font-family: 'Poppins-Medium';
    font-size: 1.2em;
    color: #333;
    font-weight: 500;
}

.statistic small {
    text-transform: capitalize;
}

.nav-tabs-custom>.clearfix {
    margin-bottom: 15px;
}

.nav-tabs-custom .nav-tabs.pull-right li {
    float: right !important;
}

.nav-tabs-custom .nav-tabs.pull-right li a {
    color: #616161;
    text-decoration: none;
    padding: 4px 25px 8px 0px;
    position: relative;
}

.nav-tabs-custom .nav-tabs.pull-right li:last-child a {
    padding: 4px 0px 8px 0px;
}

.nav-tabs-custom .nav-tabs.pull-right li.active a:after {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -4px;
    content: '';
    border: 3px solid #fe9b43;
    border-radius: 5px;
    width: 80%;
}

.nav-tabs-custom .nav-tabs.pull-right li:last-child.active a:after {
    width: 100%;
}

nav.navbar .nav-link span.badge-corner {
    top: 2px;
    right: 6px;
}

nav.navbar .badge {
    width: 18px;
    height: 18px;
    line-height: 18px;
}

.complaint-list,
.complaint-list ul {
    list-style-type: none;
    padding-left: 10px;
}

.complaint-list>li {
    padding: 15px 0;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 20px;
}

.complaint-list>li:last-child {
    border: none;
}

.complaint-Info {
    color: #9d9d9d;
    position: relative;
    padding-right: 25px;
    border-right: 1px solid #ccc;
}

.complaint-Info:before {
    position: absolute;
    top: 50%;
    bottom: 0px;
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #d8d8d8;
    transform: translateY(-50%);
    right: -9px;
}

.complaint-Info:after {
    position: absolute;
    top: 50%;
    bottom: 0px;
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #ffffff;
    transform: translateY(-50%);
    right: -7px;
}

.complaint-Info .complaint-Title {
    vertical-align: central;
    border-bottom: 1px solid rgba(222, 226, 230, 0.4);
    padding-bottom: 6px;
    color: #1e2b68;
    margin-bottom: 8px;
    font-family: 'Poppins-Medium';
    font-weight: 500;
    clear: both;
    cursor: pointer;
}

.complaint-Info .complaint-Title small {
    color: #9d9d9d;
    line-height: inherit;
    vertical-align: bottom;
    font-size: 14px;
}

.complaint-Info .complaint-Title small>span.statusCritical {
    /*color: #f15722;*/
    color: red;
}

.complaint-Info .complaint-Title small>span.statusNormal {
    /*color: #609bfe;*/
    color: #ff791f;
}

.complaint-Info .complaint-Title small>span.statusResolved {
    color: #0ab16c;
}

.complaint-Info ul li {
    margin-bottom: 10px;
    color: #9d9d9d;
}

.complaint-Info ul li .text-dark {
    color: #616161 !important;
    display: initial;
}

.mediaDetails ul li p {
    margin-bottom: 8px;
    color: #616161 !important;
    cursor: pointer;
}

.mediaDetails ul li img {
    height: 26px;
    margin-right: 10px;
}

.mediaDetails ul li span.orange-text {
    color: #f15722 !important;
}

.criteriaLabel {
    font-family: 'AvenirLTStd-Medium';
    font-weight: bolder !important;
    color: #333333 !important;
}

.ui-button.clearBtn,
body .clearBtn.ui-button.ui-state-default.ui-button-secondary {
    background-color: #fff !important;
    color: #2e2f3b;
    border: 1px solid #bbbbbb !important;
    margin-left: 4px !important;
}

.ui-button.clearBtn .ui-button-text {
    line-height: 12px;
    font-size: 12px;
    font-family: 'AvenirLTStd-Medium';
    font-weight: 600;
}


/*pagination css*/

body .ui-paginator {
    background-color: rgba(244, 244, 244, 0) !important;
    border: 1px solid rgba(200, 200, 200, 0) !important;
    padding: 0;
}

.ui-dataview .ui-paginator {
    text-align: right;
}

body .ui-paginator .ui-paginator-pages .ui-paginator-page.ui-state-active {
    background-color: #ff791f;
    color: #ffffff;
}

.orange-text {
    color: #f15722 !important;
}


/*ui-tab view css*/

body .ui-tabview .ui-tabview-panels {
    border: 1px solid rgba(200, 200, 200, 0.32);
    border-radius: 0px 0px 8px 8px;
    padding: 3em 1.5em;
}

body .ui-tabview.ui-tabview-top .ui-tabview-nav li,
body .ui-tabview.ui-tabview-bottom .ui-tabview-nav li,
body .ui-tabview.ui-tabview-left .ui-tabview-nav li,
body .ui-tabview.ui-tabview-right .ui-tabview-nav li {
    border: 1px solid rgba(200, 200, 200, 0);
    background-color: rgba(244, 244, 244, 0);
    color: #1e2b68;
    padding: 15px 9px;
    outline: none;
}

body .ui-tabview.ui-tabview-top .ui-tabview-nav li a,
body .ui-tabview.ui-tabview-bottom .ui-tabview-nav li a,
body .ui-tabview.ui-tabview-left .ui-tabview-nav li a,
body .ui-tabview.ui-tabview-right .ui-tabview-nav li a {
    color: #1e2b68;
    font-family: 'Poppins-Medium';
    text-transform: uppercase;
    padding: 0em 0.6em;
    font-size: 13px;
}

body .newCom .ui-tabview.ui-tabview-top .ui-tabview-nav {
    display: none;
}

body .tabcomplaint .ui-tabview.ui-tabview-top .ui-tabview-nav li a {
    position: relative;
    padding-left: 50px;
    line-height: 18px;
}

body .tabcomplaint .ui-tabview.ui-tabview-top .ui-tabview-nav li a>img {
    position: absolute;
    left: 4px;
    top: 0px;
    width: 36px;
}

body .ui-tabview.ui-tabview-top .ui-tabview-nav li.ui-state-active,
body .ui-tabview.ui-tabview-bottom .ui-tabview-nav li.ui-state-active,
body .ui-tabview.ui-tabview-left .ui-tabview-nav li.ui-state-active,
body .ui-tabview.ui-tabview-right .ui-tabview-nav li.ui-state-active {
    background-color: #ffffff;
    border: 1px solid rgba(200, 200, 200, 0.32);
    border-radius: 8px 8px 0 0;
    outline: none;
}

body .ui-tabview.ui-tabview-top .ui-tabview-nav li.ui-state-active:hover,
body .ui-tabview.ui-tabview-bottom .ui-tabview-nav li.ui-state-active:hover,
body .ui-tabview.ui-tabview-left .ui-tabview-nav li.ui-state-active:hover,
body .ui-tabview.ui-tabview-right .ui-tabview-nav li.ui-state-active:hover {
    background-color: #ffffff;
    border: 1px solid rgba(200, 200, 200, 0.32);
    border-radius: 8px 8px 0 0;
}

body .ui-tabview.ui-tabview-top .ui-tabview-nav li.ui-state-active a,
body .ui-tabview.ui-tabview-bottom .ui-tabview-nav li.ui-state-active a,
body .ui-tabview.ui-tabview-left .ui-tabview-nav li.ui-state-active a,
body .ui-tabview.ui-tabview-right .ui-tabview-nav li.ui-state-active a,
body .ui-tabview.ui-tabview-top .ui-tabview-nav li.ui-state-active:hover a,
body .ui-tabview.ui-tabview-bottom .ui-tabview-nav li.ui-state-active:hover a,
body .ui-tabview.ui-tabview-left .ui-tabview-nav li.ui-state-active:hover a,
body .ui-tabview.ui-tabview-right .ui-tabview-nav li.ui-state-active:hover a {
    color: #ff791e;
}

body .tabcomplaint .ui-tabview.ui-tabview-top .ui-tabview-nav li.ui-state-active a {
    color: #1e2b68;
}


/*!ui-tab view css*/

body .ui-dataview .ui-dataview-header {
    background-color: rgba(244, 244, 244, 0) !important;
    border: 1px solid rgba(200, 200, 200, 0) !important;
    padding: 0px !important
}

body .ui-dataview .ui-dataview-content {
    padding: 0.571em 0em;
    border: 1px solid rgba(200, 200, 200, 0);
    background-color: rgba(255, 255, 255, 0);
}


/*checkbox list css*/

.ui-chkbox-box .checkboxlist {
    width: 33.3%;
    float: left;
    margin-bottom: 15px;
    color: #676767;
}


/* .complaintTrackerSteps steps css*/

.trackerstepsWrap .stepheader {
    background-color: #ff791e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
}

.trackerstepsWrap .stepheader h5 {
    font-weight: 400;
    line-height: inherit;
    text-align: center;
    padding: 9px;
}

.trackerstepsWrap .Trackersteps {
    padding: 0px 25px;
}

body .complaintTrackerSteps .ui-steps:before {
    width: 75%;
}

.complaintTrackerSteps .ui-steps .ui-steps-item,
body .complaintTrackerSteps .ui-steps .ui-steps-item {
    width: 25%;
    text-align: left;
}

body .ui-steps .ui-steps-item .ui-menuitem-link {
    outline: none;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link {
    text-align: left;
    padding: 2.3em;
    padding-left: 0px;
    clear: both;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link:focus,
body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link:active,
body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link:hover {
    border: none !important;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link .ui-steps-number {
    border: 1.5px solid #cdcdcd;
    width: 24px;
    height: 24px;
    position: relative;
    color: #ffffff;
    top: 0;
    margin-bottom: 0;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link .ui-steps-number:before {
    width: 12px;
    height: 12px;
    top: 5px;
    content: '';
    background: #cdcdcd;
    border-radius: 50%;
    position: absolute;
    left: 5px;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item.ui-state-highlight .ui-steps-number {
    border: 1.5px solid #ff791e;
    background: #fff;
    position: relative;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item.ui-state-highlight .ui-steps-number:before {
    width: 12px;
    height: 12px;
    top: 5px;
    content: '';
    background: #ff791e;
    border-radius: 50%;
    position: absolute;
    left: 5px;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item .ui-menuitem-link .ui-steps-title {
    display: block;
    margin-top: -15px;
    margin-left: 9px;
    color: #2e2f3b;
    /*font-weight: 600;*/
    float: right;
}

body .complaintTrackerSteps .ui-steps .ui-steps-item:last-child .ui-menuitem-link .ui-steps-title {
    float: none;
    padding-left: 2em;
    margin-top: -24px;
    text-align: left;
}

.trackersteps-info-div {
    margin-top: -45px;
    padding-left: 30px;
    color: #898989;
    font-size: 10px;
}


/*!------steps css end*/

.complaintTypeSelection {
    border: 1px solid #ff791e;
    border-radius: 50px;
    padding: 15px 18px;
    max-width: 251px;
    display: inline-block;
    margin: 0px 15px 15px 0px;
    cursor: pointer;
}

.complaintTypeSelection h6 {
    width: 85%;
    position: relative;
    color: #1e2b68;
    padding-left: 45px;
    font-family: 'Poppins-Medium';
    font-weight: normal;
    font-size: 14px;
    line-height: inherit;
    margin: 0px;
}

.complaintTypeSelection h6 img {
    position: absolute;
    left: 0px;
    width: 36px;
}

body .complaintTypeSelection .ui-radiobutton {
    margin: 8px 0px;
}

div .complaintTypeSelection:hover {
    background-color: bisque;
}


/*complaint-list shortInfo*/

.complaint-list.shortInfo {
    margin-bottom: 0px;
}

.complaint-list.shortInfo>li {
    margin-bottom: 0px;
    border-bottom: none;
    padding: 25px 0;
}


/*add New Complaint steps*/

.addNewComplaint .complaint-Title {
    text-transform: uppercase;
    font-family: 'Poppins-Medium';
    font-weight: 600;
    color: #2e2f3b;
}

.addNewComplaint .complaint-Title a {
    vertical-align: middle;
    margin-right: 15px;
}

body .addNewComplaint .ui-steps {
    width: 70%;
    margin: 10px auto;
}

body .addNewComplaint .ui-steps:before {
    width: 80%;
    left: 10%;
    top: 44px;
}

body .addNewComplaint .ui-steps .ui-steps-item {
    width: 20%;
    float: left;
}

body .ui-steps .ui-steps-item .ui-menuitem-link .ui-steps-number {
    color: #ffffff;
}

body .ui-steps .ui-steps-item.ui-state-highlight .ui-steps-number {
    background: #ff791e;
    color: #ff791e;
}

body .ui-steps .ui-steps-item.ui-state-highlight .ui-steps-number:before {
    width: 26px;
    height: 26px;
    top: 1px;
    content: "\f00c";
    font-family: FontAwesome;
    background: #ff791e;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 1px;
}

body .addNewComplaint .ui-steps .ui-steps-item .ui-menuitem-link .ui-steps-title {
    max-width: 106px;
    white-space: normal;
    text-align: center;
    margin: 4px auto;
}

body .addPackageComplaintStep .ui-steps .ui-steps-item {
    width: 25% !important;
    float: left !important;
}

body .addPackageComplaintStep .ui-steps:before {
    width: 75% !important;
    left: 14% !important;
    top: 44px !important;
}


/*Fishbone diagram Generator steps css*/

.fishboneDiaGenerator .complaint-Title {
    text-transform: uppercase;
    font-family: 'Poppins-Medium';
    font-weight: 600;
    color: #2e2f3b;
}

.fishboneDiaGenerator .complaint-Title a {
    vertical-align: middle;
    margin-right: 15px;
}

body .fishboneDiaGenerator .ui-steps {
    width: 80%;
    margin: 10px auto;
}

body .fishboneDiaGenerator .ui-steps:before {
    width: 69%;
    left: 15%;
    top: 44px;
}

body .fishboneDiaGenerator .ui-steps .ui-steps-item {
    width: 33.33%;
    float: left;
}


/*new Trails steps css*/

.newTrails .complaint-Title {
    text-transform: uppercase;
    font-family: 'Poppins-Medium';
    font-weight: 600;
    color: #2e2f3b;
}

.newTrails .complaint-Title a {
    vertical-align: middle;
    margin-right: 15px;
}

body .newTrails .ui-steps {
    width: 80%;
    margin: 10px auto;
}

body .newTrails .ui-steps:before {
    width:85%;
    left: 8%;
    top: 44px;
}

body .newTrails .ui-steps .ui-steps-item {
    width: 16.66%;
    float: left;
}


/*textarea css*/

textarea.form-control {
    resize: none;
}


/*radio button css*/

body .ui-radiobutton .ui-radiobutton-box.ui-state-active,
body .ui-radiobutton .ui-radiobutton-box.ui-state-active.ui-state-focus,
body .ui-radiobutton .ui-radiobutton-box.ui-state-active:not(.ui-state-disabled):hover {
    border-color: #ff791e;
    background-color: #ff791e;
    box-shadow: none;
}

body .ui-radiobutton .ui-radiobutton-box.ui-state-active .ui-radiobutton-icon {
    background: transparent;
}

body .ui-radiobutton .ui-radiobutton-box.ui-state-active:before {
    content: '\f00c';
    font-family: fontAwesome;
    position: absolute;
    left: 2px;
    top: 2px;
}

.date-input {
    position: relative;
}

.date-input:after {
    position: absolute;
    right: 10px;
    top: 2px;
    content: "\f133";
    font-family: FontAwesome;
    color: #959faf;
    z-index: 11;
}

.date-input .ui-calendar,
.date-input .ui-calendar .ui-inputtext {
    height: 38px !important;
}

.date-input .ui-calendar .ui-inputtext {
    padding-right: 40px;
    width: 100%;
}

.filterBtn {
    color: #616161;
    padding: 8px 15px;
    font-family: 'Poppins-Medium';
    font-weight: 400;
}

body .fiterModal .ui-overlaypanel {
    z-index: 1001;
    top: 40px !important;
    left: auto !important;
    transform: translateY(0px);
    opacity: 1;
    width: 65% !important;
    right: 0px !important;
    -webkit-box-shadow: 0 0 0.429em 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 .429em 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0.429em 0 rgba(0, 0, 0, 0.4);
}

.sortbtn .ui-inputtext {
    background: transparent;
    padding-right: 10px !important;
    position: relative;
    font-family: 'Poppins-Medium';
    color: #616161;
    border: none;
    outline: none;
}

.sortbtn .ui-inputtext:before {
    position: absolute;
    left: 2px;
    top: 6px;
    content: "\f160";
    font-family: FontAwesome;
    color: #616161;
    z-index: 1;
}

.sortbtn .ui-dropdown-trigger {
    display: none;
}

.btn-outline {
    line-height: 25px;
    padding: 5px 25px;
    height: 45px;
    text-align: left;
    background: transparent !important;
    color: #2e2f3b !important;
    min-width: 250px;
    max-width: 250px;
    margin: 15px 10px 35px !important;
    outline: none !important;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
    background-color: #fff2e9 !important
}

.btn-outline-warning {
    color: #ff791e;
    background-color: transparent;
    background-image: none;
    border-color: #ff791e;
    font-size: 14px;
    font-family: 'Poppins-Medium';
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
    background-color: #ff791e;
}

body .ui-button.ui-state-default.ui-button-secondary,
body .ui-buttonset.ui-button-secondary>.ui-button.ui-state-default {
    background-color: #dddddd !important;
}

.boder-radius-0 {
    border-radius: 0px !important;
}

.br-top-0 {
    border-radius: 0px 0px 6px 6px;
}

.no-box-shadow {
    box-shadow: none !important;
}

.bg-transparent {
    background-color: transparent;
}

.card.bg-transparent .card-body {
    padding: 0px;
}

.card.bg-transparent .card-body h3.heading {
    border-bottom: 1px solid #d1d1d1;
}

.btn-collapse {
    color: #1e2b68;
    font-family: 'Poppins-Medium';
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none !important;
    position: relative;
    padding-left: 25px;
    outline: none !important;
    margin-left: 10px;
    margin-right: 10px;
}

.btn-collapse[data-toggle="collapse"]::before {
    content: '\f067';
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 10px;
}

.btn-collapse[aria-expanded="true"]::before {
    content: '\f068' !important;
}

.blue-text {
    color: #1e2b68;
}

.caStatus ul {
    margin: 0px;
    padding-left: 0px;
    list-style-type: none;
}

.caStatus ul li {
    display: inline-block;
    width: 40px;
    height: 10px;
    background-color: #e7e7e7;
    margin-right: 3px;
    cursor: pointer;
}

.caStatus ul li:first-child {
    border-radius: 10px 0px 0px 10px;
}

.caStatus ul li:last-child {
    border-radius: 0px 10px 10px 0px;
}

.caStatus ul li.selected {
    background-color: #ff791e;
}

.uploadBtndiv {
    border: 1px dashed #ccc;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
}

.uploadedMediaList {
    padding-left: 15px;
}

.uploadedMediaList li {
    padding: 10px 0;
    color: #606060;
    border-bottom: 1px solid #ccc;
}

.uploadedMediaList li a {
    color: #2e2f3b;
    padding: 10px;
}

body .ui-fileupload .ui-fileupload-buttonbar,
body .ui-fileupload .ui-fileupload-content {
    background-color: transparent !important;
    border: 1px solid transparent !important;
}

.ui-fileupload-buttonbar .ui-button {
    vertical-align: middle;
    margin-right: .25em;
    border-radius: 20px;
    background: transparent;
    color: #ff791e;
}

body .ui-radiobutton-label,
body .ui-chkbox-label {
    margin: 0 30px 0 0.5em;
    color: #545454;
}

body .ui-progressbar .ui-progressbar-value {
    background: #ff791e;
}

body .ui-chkbox .ui-chkbox-box.ui-state-active {
    background-color: #ff791e !important;
    border-color: #ff791e !important;
}


/*Corrective Action Forms css*/

.summaryInfo .info-title {
    font-family: 'Poppins-Light';
    font-size: 14px;
    display: block;
    color: #545454;
}

.attachment-info {
    font-family: 'Poppins-Light';
    font-size: 13px;
    color: #545454;
}


/*datatable css*/
.tale{
    font-size: 14px !important;
}
table.dataTable thead,
.table tr th {
    background: #1e2b68;
    color: #9db6da;
    font-family: Poppins-Medium;
    padding: 8px 10px !important;
}

table.dataTable thead th,
table.dataTable thead td,
.table tr th {
    padding: 8px 18px;
    border: 1px solid rgba(251, 251, 251, 0.22);
    border-collapse: collapse;
    font-family: Poppins-Medium;
}

table.dataTable tbody th,
table.dataTable tbody td,
.table tr td {
    padding: 8px 10px;
    border: 1px solid #ebebeb;
    border-collapse: collapse;
    color: #2e2f3b;
    font-family: Poppins-Medium;
    vertical-align: middle;
}

table.dataTable thead th,
table.dataTable thead td,
.table tr th {
    padding: 8px 18px !important;
}

table.dataTable thead th,
table.dataTable tfoot th,
.table tr th {
    font-weight: normal !important;
    vertical-align: middle;
}

table.dataTable .btn{
    /* background: transparent ;
    background-color: transparent ; */
    /*   border: none ; */
    /* color: #2e2f3b ; */
    padding: 4px 10px ;
    font-size: 12px ;
}
table.dataTable .btn .btn-info{
    color:#17a2b8 !important;
    background-color: transparent ;
    border-color: #17a2b8 ;
    /*   border: none ; */
   
    padding: 4px 10px ;
    font-size: 12px ;
}
table.dataTable .btn .btn-info:hover{
    color:#fff !important;
    background-color: red ;
}
table.dataTable .btn .btn-danger{
    color:red !important;
    background-color: transparent ;
    border-color: red ;
    padding: 4px 10px ;
    font-size: 12px ;
}
table.dataTable .btn .btn-danger:hover{
    color:#fff !important;
    background-color: red ;
}
/* table.dataTable .btn,
.table tr td a.btn-danger,
.table tr td a.btn-primary,
body .ui-table-wrapper .ui-table-tbody>tr>td .btn .btn-info{
    color:#17a2b8 ;
        background-color: transparent ;
        border-color: #17a2b8 ;
    padding: 4px 10px ;
    font-size: 12px ;
} */
/* table.dataTable .btn,
.table tr td a.btn-danger,
.table tr td a.btn-primary,
body .ui-table-wrapper .ui-table-tbody>tr>td .btn .btn-info:hover{
    color:#17a2b8 ;
        background-color: transparent ;
        border-color: #17a2b8 ;
    padding: 4px 10px ;
    font-size: 12px ;
} */

/* table.dataTable .btn:hover,
table.dataTable .btn:focus,
table.dataTable .btn:active {
    box-shadow: none !important;
    outline: none !important;
} */

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #ff791e !important;
    color: #fff !important;
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
    border: 0.6px solid #ebebeb !important;
    border-collapse: collapse !important
}

table.dataTable.no-footer {
    border: none !important;
}

.bg-light-gray {
    background: #f2f2f2 !important;
}


/*Accordian collapsible panel*/

.expandCollapseBtn a {
    text-decoration: none;
    color: #545454;
}

.expandCollapseBtn a:hover {
    color: #ff791e;
}

.collapsiblePanel .card {
    margin-bottom: 1px;
    box-shadow: none;
    border-bottom: 1px solid #eee !important;
}

.collapsiblePanel .card .card-header {
    margin-bottom: 0px;
    padding-bottom: 2px;
    border-bottom: 1px solid #ebebeb;
    padding-left: 0px;
}

.collapsiblePanel .card .card-header .btn {
    display: block;
    width: 100%;
    text-align: left;
    outline: none;
    font-family: Poppins-Medium;
    color: #1e2b68;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.collapsiblePanel .card .card-header .btn[data-toggle="collapse"]::before {
    content: '\f067';
    display: inline-block;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    position: absolute;
    top: 40%;
    right: 10px;
}

.collapsiblePanel .card .card-header .btn[aria-expanded="true"]::before {
    content: '\f068' !important;
}

.collapsiblePanel .card .card-header .btn:hover,
.collapsiblePanel .card .card-header .btn:focus,
.collapsiblePanel .card .card-header .btn:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.collapsiblePanel .card .card-body {
    background-color: #f4f4f4;
}


/*footer css*/

footer.main-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #acacac;
    padding: 8px 10px;
    text-align: center;
    font-size: 12px;
    background: transparent;
}

footer.main-footer p {
    font-size: 12px;
}

.ui-dialog-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #0000001c;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

.ui-dialog {
    position: fixed !important;
    padding: 0;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}


/*body .ui-dialog {
  margin: 10% 25%;
}*/

body .ui-dialog .ui-dialog-titlebar .ui-dialog-title {
    float: left !important;
}

body .confirmationDialog .ui-dialog {
    margin: 0px auto !important;
}

.ui-autocomplete .ui-autocomplete-dropdown {
    margin-top: -4px;
}


/* Prime NG Table */

.ui-table table {
    margin-bottom: 15px;
}

body .ui-table-wrapper .ui-table-thead>tr>th {
    padding: .75rem;
    background-color: #1e2b68 !important;
    color: #9db6da !important;
    height: 40px;
    border-color: #dee2e6;
    /* border:none !important; */
    border-bottom: 2px solid #dee2e6 !important;
    border-top: 1px solid #dee2e6 !important;
}

body .ui-table tbody tr:hover td,
.ui-table tbody tr:hover th {
    background-color: #e1e6eb !important;
    color: black !important;
}

body .ui-table-wrapper .ui-table-tbody>tr>td {
    /* border:none !important; */
    border-color: #dee2e6;
    border-top: 1px solid #dee2e6 !important;
    padding: 0.3rem .75rem;
    vertical-align: middle;
}


/*
body .ui-paginator{
  text-align: right;
} */

body .ui-paginator {
    text-align: right;
}

body .ui-paginator .ui-paginator-current {
    float: left;
}

body .ui-paginator .ui-inputwrapper-filled {
    float: right !important;
}

nav.navbar .menu-btn span,
nav.navbar .menu-btn span:nth-of-type(2)::before,
nav.navbar .menu-btn span:nth-of-type(2)::after {
    background: #ff791f;
}

.mediaImgpopup {
    display: block;
    /* height:350px;*/
}

.mediaImgpopup>div>a {
    width: 25%;
    height: 150px;
    overflow: hidden;
    background: #eee;
}

.mediaImgpopup>div>a>img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    border: 1px solid #f5f5f5;
}

.mediaImgpopup a.ui-lightbox-close {
    height: auto;
    width: auto;
}

.ui-lightbox {
    position: fixed;
    display: none;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

body .ui-lightbox .ui-lightbox-content-wrapper {
    height: 100%;
    width: 100%;
}

.audiolist li {
    border-bottom: 1px solid #ccc;
    padding: 6px 4px;
}

.audiolist li p {
    width: 50%;
    word-break: break-all
}

.ui-table-scrollable-wrapper {
    min-width: 100%;
    max-width: 960px !important;
    border: 1px solid #f1f1f1;
}

.ui-table .ui-table-scrollable-header-table {
    margin-bottom: 0px !important;
}

body .ui-table-scrollable-header-table .ui-table-thead>tr>th {
    background-color: #1e2b68 !important;
    color: #9db6da !important;
    border-color: #dee2e6;
}


/* star rating css */

.star-rating {
    margin: 25px 0 0px;
    font-size: 0;
    white-space: nowrap;
    display: inline-block;
    width: 175px;
    height: 35px;
    overflow: hidden;
    position: relative;
    background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjREREREREIiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=');
    background-size: contain;
    cursor: pointer;
}

.star-rating i {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjRkZERjg4IiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=');
    background-size: contain;
}

.star-rating input {
    -moz-appearance: none;
    -webkit-appearance: none;
    opacity: 0;
    display: inline-block;
    width: 20% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0;
    z-index: 2;
    position: relative;
}

.star-rating input:hover+i,
.star-rating input:checked+i {
    opacity: 1;
}

.star-rating i~i {
    width: 40%;
}

.star-rating i~i~i {
    width: 60%;
}

.star-rating i~i~i~i {
    width: 80%;
}

.star-rating i~i~i~i~i {
    width: 100%;
}

.customer-feedback-header {
    background-color: #002776;
    padding: 20px 15px;
    color: #ffffff;
    border-bottom: 8px solid #ff6319;
}

body .ImagePopup .ui-dialog .ui-dialog-content {
    height: 450px;
    /*width: 650px;*/
    overflow: auto;
    text-align:center;
}

section.sectionCustFeedback {
    height: calc(100vh - 88px);
}

.hover {
    cursor: pointer;
}

.ui-confirmdialog {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0px !important;
}

body .confirmationDialog .ui-confirmdialog.ui-dialog {
    margin: 0px !important;
}

.ui-confirmdialog.ui-dialog .ui-dialog-content {
    height: auto;
}

@media screen and (max-width: 767px) {
    section .sectionCustFeedback {
        height: calc(100vh - 145px);
    }
    .customer-feedback-header,
    .customer-feedback-header .text-right {
        text-align: center !important;
    }
    section.sectionCustFeedback img {
        align-items: center;
    }
}

body .ui-organizationchart .ui-organizationchart-node-content .ui-node-toggler {
    display: none !important;
}

body .ui-organizationchart .ui-organizationchart-node-content {
    border: 1px solid #ff791f !important;
}


/*body .ui-organizationchart:last-child .ui-organizationchart-line-down{
    width:0px !important;
}*/

.ui-lightbox-content {
    margin: 0% auto;
    height: 100% !important;
}

.ui-lightbox-content img {
    height: 100%;
    object-fit: contain;
}

body .ui-lightbox .ui-lightbox-content-wrapper .ui-lightbox-nav-left,
body .ui-lightbox .ui-lightbox-content-wrapper .ui-lightbox-nav-right {
    background-color: #333;
    font-size: 20px;
    padding: 4px;
    line-height: inherit;
    height: 36px;
}

.ui-organizationchart
.ui-organizationchart-node-content.ui-organizationchart-selectable-node {
  cursor: pointer;
  max-width: 150px !important;
  max-height: 100px !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  padding: 0.4em .4em !important;
}

.ui-organizationchart .ui-organizationchart-table {
  font-size: 11px !important;
}

  .ui-organizationchart .ui-organizationchart-table > tr > td {
    padding: 0 .3em !important;
  }
.divDia{
    width:100vh;
    overflow-x:auto;
}


  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    min-height: .01%;
    overflow-x: auto;
  }

.customer-feedback-header {
  background-color: #002776;
  padding: 20px 15px;
  color: #ffffff;
  border-bottom: 8px solid #ff6319;
  width: calc(100% + 250px);
}

section.sectionCustFeedback {
  height: calc(100vh - 88px);
  width: calc(100% + 250px);
}


.ui-scrollpanel-bar {
    position: relative;
    background: #002776;
    border-radius: 3px;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    transition: opacity .25s linear;
}
.imgList {
  width: 25%;
  float:left;
  /*height: 180px;*/
  overflow: hidden;
  /*background: #eee;*/
}
  .imgList img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    border: 1px solid #eee;
  }

body .ImagePopup1 .ui-dialog .ui-dialog-content {
  height: 450px;
  /*width: 650px;*/
  overflow: auto;
}

.ngxImageZoomContainer {
  width: 600px !important;

  text-align:center;
}
.ngxImageZoomThumbnail {
  max-width: 100% !important;
}
/*
.ngxImageZoomFullContainer {
  width: 600px !important;
  text-align: center;
}*/
/*.ngxImageZoomFull{
    width:100% !important;
}*/
.zoomBtnContainer{
    position:relative;
    bottom:65px;
    left:0px;
    right:0px;
    width:100%;
}
.zoonInBtn {
  position: absolute;
  top: 1px;
  left: 49%;
}
.zoonOutBtn {
  position: absolute;
  top: 1px;
  left: 55%;
}
.view-faqs {
  text-transform: capitalize;
  color: #ff791e;
  font-size: 13px;
  text-decoration: underline;
}
  .view-faqs:hover, .view-faqs:focus{
      color:#ff791e;
  }
