/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Lato&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');


:root {
  scroll-behavior: smooth;
  --primary-color: #6b4788;
  --primary-hover-color: #622d8c;
}

.row>* {
  margin-top: 0 !important;
}

/* .row >*{margin-top:0 !important;} */

body {
  font-family: 'Barlow', sans-serif;
  background: #EFEFF8;
  color: #444444;
  font-size: 13px;
}

a {
  color: var(--primary-hover-color);
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

label {
  font-size: 14px !important;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow', sans-serif;
}

.ajax-loader {
  position: absolute;
  top: 0;
  width: 100%;
}

.btn-warning {
  border: 1px solid #cdcdcd;
  background: rgba(131, 131, 131, 0.4) !important;
  color: #838383;
  margin-right: 10px;
  padding: 0.5rem 1.37rem;
}

.btn-warning:hover {
  border: 1px solid #dddcdc;
  background: rgba(171, 168, 168, 0.4) !important;
  color: #838383;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.5rem 1.37rem;
}

.btn-primary:hover {
  background-color: #622d8c;
  border-color: #622d8c;
}

.btn-sm {
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  background: none;
}

.btn-sm:hover {
  border: 1px solid #899bbd;
  color: #899bbd;
  background: none;
}

.fa-info-circle {
  color: var(--primary-color);
}

.btn-sm .fa {
  color: var(--primary-color);
}

.btn-sm .fa:hover {
  color: #899bbd;
}

.alert-info {
  color: var(--primary-color);
  background-color: #e4e9f3;
  border: 0px;
}

.form-control {
  margin: 5px 0px;
  padding: 0.1rem 0.75rem !important;
  border: 1px solid #EEE;
  color: #6d6f72 !important;
  font-size: 13px !important;
}

/*--------------------------------------------------------------
# Login page css
--------------------------------------------------------------*/
.half {
  background-color: #fff;
}

.half,
.half .container>.row {
  height: 100vh;
  /* min-height: 700px; */
}

@media (max-width: 991.98px) {
  .half .bg {
    height: 200px;
  }
}

.half .contents {
  background-color: rgba(250, 243, 255, 0.7);
}

.half .contents,
.half .bg {
  width: 50%;
}

@media (max-width: 1199.98px) {

  .half .contents,
  .half .bg {
    width: 100%;
  }
}

.half .contents .form-control,
.half .bg .form-control {
  border: none;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  height: 54px;
  background: #fff;
}

.half .contents .form-control:active,
.half .contents .form-control:focus,
.half .bg .form-control:active,
.half .bg .form-control:focus {
  outline: none;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.half .bg {
  background-size: cover;
  background-position: center;
}

.half a {
  color: var(--primary-color);
  text-decoration: none;
  cursor:pointer;
}

.half .btn {
  height: 54px;
  padding-left: 30px;
  padding-right: 30px;
}

.half .forgot-pass {
  position: relative;
  top: 2px;
  font-size: 14px;
}

.toplogos span {
  font-size: 16px;
  font-weight: 600;
  margin-left: 0.7rem;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
}

.control .caption {
  position: relative;
  top: .2rem;
  color: #888;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
  border-radius: 4px;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #ccc;
}

.control input:checked~.control__indicator {
  background: #fb771a;
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
  background: #fb8633;
}

.control input:disabled~.control__indicator {
  background: #e6e6e6;
  opacity: 0.9;
  pointer-events: none;
}

.control__indicator:after {
  font-family: 'icomoon';
  content: '\e5ca';
  position: absolute;
  display: none;
  font-size: 16px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.control input:checked~.control__indicator:after {
  display: block;
  color: #fff;
}

.control--checkbox .control__indicator:after {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked~.control__indicator {
  background-color: #7e0cf5;
  opacity: .2;
}

.btn-show-pass {
  font-size: 15px;
  color: #999;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  height: 100%;
  top: 0;
  right: 12px;
  padding: 0 5px;
  cursor: pointer;
  transition: 0.4s;

}




/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 0;
  padding: 20px;
  transition: all 0.3s;
}

.logo-sm img {
  width: 40px;
  height: 40px;
}

.logo-lg strong {
  font-size: 22px;
  color: #000;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}



/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  /* margin-bottom: 10px;
  margin-top: 40px;
  width: 100%; */
  display: none;
}

.pagetitle h1 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
  color: #000;
  display: inline;
  float: left;
}

.pagetitle nav {
  float: right;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-hover-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 5px;
  padding: 10px 20px;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 200px;
  margin-top: 7px !important;
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 7px 0px 7px 7px;
  transition: 0.3s;
}

.dropdown-menu span.dropdown-item {
  font-style: normal;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 40px;
  color: #23262F;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  margin: 0px 0px 10px 0px;
  padding: 0px;
}

.dropdown-divider {
  border-top: 0px;
}

.dropdown-menu hr:not([size]) {
  height: 0px;
}

.dropdown-menu .dropdown-item i {
  margin: 0px 5px 0px 0px;
  font-size: 18px !important;
  line-height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  color: #FFF;
  padding: 0px;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.dropdown-menu .dropdown-item:hover {
  background: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: none;
}

.dropdown-item.active,
.dropdown-item:active {
  text-decoration: none;
  background-color: #F6ECFE;
  color: #000;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  color: #000;
  font-size: 15px;
}

.bell-notification .notification-heding {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.bell-notification .notification-heding h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  color: #23262F;
}

.bell-notification .notification-heding a {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: var(--primary-color);
  text-decoration: none;
}

.bg-primary {
  background-color: var(--primary-color) !important;

}

.festive-ico {
  color: #FFF;
  border-radius: 50%;
  padding: 0px;
  width: 30px;
  height: 30px;
  font-size: 20px !important;
  line-height: 30px !important;
  font-weight: normal;
  margin-right: 10px;
}

.bell-notification .notification-day p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px !important;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #838383;
}

.notification-description .col-md-7 {
  padding: 0px 0px 0px 30px;
}

.notification-description .col-md-7 h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 16px;
  color: #23262F;
  margin: 0;
  padding: 0px 0px 10px 0px;
}

.notification-description .col-md-7 p {
  font-weight: 400;
  font-size: 14px !important;
  line-height: 14px;
  color: #23262F;
  margin: 0;
  padding: 0;
}

.notification-description .col-md-7 span {
  font-style: normal;
  font-weight: 400;
  font-size: 12px !important;
  line-height: 10px;
  color: var(--primary-color);
  margin: 0;
  padding: 0;
}

.notification-description .col-md-4 img {
  width: 20px;
}

.notification-description {
  margin-top: 10px;
  border-bottom: 1px solid #DDD;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.notification-description:last-child {
  margin-top: 10px;
  border-bottom: 0px solid #DDD;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .logo .desklogo {
    display: none !important;
  }

  .logo .mobilelogo {
    display: block !important;
  }

  .table-responsive {
    display: block;
  }

  .m-full-ver {
    width: 100% !important;
  }

  .half .bg {
    height: auto !important;
    background-color: #FFF;
  }

  .note-text {
    text-align: center;
    font-size: 14px;
  }

  .logo-mob-pd {
    padding: 15px !important;
  }

  .toplogos .loginlogos-col {
    display: block !important;
    border-right: 1px solid #DDD;
    padding-right: 20px;
  }

  .toplogos .loginlogos-col:last-child {
    border-right: 0px;
    padding-right: 0px;
  }

  .toplogos .loginlogos-col img {
    width: 40px;
    height: auto;
    float: left;
  }

  .toplogos span {
    font-size: 13px;
    float: left;
  }

  .bottomImg {
    margin: 30px auto;
    text-align: center;
  }

  .bottomImg img {
    height: 250px !important;
  }

  .br-dispnone {
    display: none;
  }

  .mver-login-box {
    width: 96% !important;
    padding: 4% !important;
    font-size: 14px;
  }

  .mver-login-box input.form-control {
    font-size: 14px !important;
  }

  .mver-login-box input.form-control::placeholder {
    font-size: 14px !important;
  }

  .copyright-box {
    height: 86px !important;
  }

  .chartjs-render-monitor {
    width: auto !important;
    height: 150px !important;
  }

  .containerchart {
    margin-bottom: 12px;
  }

  .taskdetails-table .float-start {
    float: none !important;
  }

  .taskdetails-table .col-md-6 {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .ques-accordian .accordion-action {
    margin: 10px 0px 0px 0px;
    float: left;
  }

  .ques-accordian .accordion-action a.ms-5 {
    margin-left: 1rem !important;
  }

  .page-navi {
    text-align: center;
  }

  .page-navi span {
    margin: 10px 0px;
  }

  .top-header-name-block {
    width: 100%;
  }

  .top-header-name-block p {
    font-size: 12px !important;
    line-height: 15px;
  }

  .breadcrumb {
    font-size: 12px !important;
    line-height: 15px;
  }

  .breadcrumb-item.active {
    font-size: 12px !important;
    line-height: 15px;
  }

  .assign_user_details span {
    width: 100% !important;
  }

  .popup-assign-users span {
    width: 47% !important;
  }

  .mdispfull {
    display: inline-block !important;
  }

  .select-fltr {
    width: 98% !important;
    margin: 2% 1%;
    display: block !important;
    flex: none !important;
    border: 1px solid #ddd;
    padding: 1% 0% !important;
    border-radius: 10px;
  }

  .mver-bdr-0 {
    border: 0px !important;
  }

  .mver-filter select {
    width: 98% !important;
  }

  .mver-filter button {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .db-ov-card {
    width: 47% !important;
  }

  .db-ov-card p {
    font-size: 15px !important;
    line-height: 22px !important;
  }

  .db-ov-card img {
    width: 50px;
    height: auto;
  }

  .map-indicator {
    margin-top: 20px !important;
    right: 0 !important;
    position: relative !important;
    bottom: 0 !important;
    text-align: center;
  }

  .map-indicator .mver-ind {
    display: inline !important;
    margin-right: 10px;
  }

  #lineChart {
    height: 200px !important;
  }

  .mvermap {
    height: 100%;
  }

  .mverhfrw {
    display: block !important;
  }

  .biginpsdiv {
    border: 0px !important;
    padding: 0rem !important;
    margin: 0;
  }

  .newsf {
    border: 0px !important;
    margin: 0 !important;
    width: 100% !important;
    border: 1px solid #909090 !important;
  }

  .newsf select {
    border-radius: 10px !important;
    padding: 15px 10px !important;
    margin-bottom: 10px;
    width: 100% !important;
  }

  .mvermtmin10 {
    margin-top: -10px !important;
  }

  .mvermtmin20 {
    margin-top: -27px !important;
  }

  .flbsc {
    margin: 0 !important;
  }

  .flrwtp {
    display: block !important;
  }

}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  border: none;
  border-radius: 5px;
  box-shadow: none;
  background: none;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: var(--primary-color);
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}

.card-header p {
  color: #6D6D6D;
  font-weight: normal;
}

.alert {
  padding: 0.5rem;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  font-family: "Poppins", sans-serif;
}

h4.card-title {
  font-weight: 600;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 25px 20px;
  background-color: rgba(255, 255, 255);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

.card-trasparent {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0);
  border-radius: 0px;
  padding: 0;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

.loginbody {
  box-shadow: 2px 2px 6px rgb(0 0 0 / 5%);
  border-radius: 10px;
  border: 1px solid #EEE;
}

.loginlogo {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.loginlogo img {
  width: 70px;
  height: auto;
}

.forget {
  color: var(--primary-color);
}

.loginico img {
  width: 17px;
  height: 17px;
}

.log_icon {
  height: 38px;
  margin-top: 5px;
}

.form-check {
  display: inline-block;
}

.col-form-label {
  font-size: 14px !important;
  font-weight: 400;
  padding-bottom: 0;
  color: #919499;
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 0px solid #ebeef4;
  background: #f6f9ff;
  border-radius: 10px !important;
  padding: 7px 10px;
  margin-bottom: 10px;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #444;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* searchbar */
.taskdetails-table h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.taskbg {
  background-color: #F4EEFD;
  padding: 0.95rem 0.75rem;
  margin: 0.5rem;
}

.userinfo .userdp {
  background-color: #5e288b;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 0.5rem
}

.searchbar {
  border: 1px solid #9E9E9E;
  border-radius: 5px;
  padding: 0.5rem;
}

.searchbar input[type="text"] {
  border: 0;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-weight: 600;
}

.breadcrumb a {
  color: #fff;
  transition: 0.3s;
  font-size: 1rem;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.breadcrumb .breadcrumb-item::before {
  color: #fff;
}

.breadcrumb .active {
  color: #fff;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: var(--primary-hover-color);
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: var(--primary-hover-color);
  border-bottom: 2px solid var(--primary-hover-color);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

.logo .desklogo {
  display: block;
}

.logo .mobilelogo {
  display: none;
}

a.logo {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .logo {
    width: auto;
    color: #FFF;
  }

}

.logo img {
  max-height: 45px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #000;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  position: relative;
  margin-bottom: 1.2rem;
  height: 52px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 1rem;
  background: var(--primary-color);
  border-radius: 10px;
}

.header .toggle-sidebar-btn {
  font-size: 21px;
  padding-left: 0;
  padding-right: 10px;
  cursor: pointer;
  color: #FFF;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

.header-profile-user {
  height: 25px;
  width: 25px;
  background-color: transparent;
}

.dropdown-menu-lg {
  min-width: 320px;
}

.notification-item .d-flex {
  padding: 0.75rem 1rem;
}

.avatar-xs {
  height: 2rem;
  width: 2rem;
}

.avatar-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #655be6;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 20px;
  color: #FFF;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
}

.header-nav .badge-number {
  position: absolute;
  inset: 4px 6px auto auto;
  font-weight: normal;
  font-size: 11px;
  padding: 3px 6px;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 13px;
  padding: 10px 15px;
  transition: 0.3s;
  color: #000;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
  color: #000;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f2e9f9;
}

/*--------------------------------------------------------------
# Filter form
--------------------------------------------------------------*/
.filterForm {
  border: 1px solid #eee;
  border-radius: 6px;
  gap: 1rem
}

.filterForm select {
  border: 0;
  color: #444 !important;
  font-size: 13px !important;
  width: 94%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 260px;
  z-index: 996;
  transition: all 0.3s;
  padding: 30px 0px 0px 0px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  background: #DFDDF5;
  box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {
  #main {
    margin-left: 260px;
  }
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 10px;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #FFF;
  transition: 0.3;
  background: var(--primary-color);
  padding: 3px 15px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #FFF;
}

.sidebar-nav .nav-link.collapsed {
  color: #000;
  background: transparent;
}

.sidebar-nav .nav-link.collapsed i {
  color: #000;
}

.sidebar-nav .nav-link:hover {
  color: #FFF;
  background: var(--primary-color);
  padding: 3px 15px !important;
}

.sidebar-nav .nav-link:hover i {
  color: #FFF;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 0px 0 0 15px;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #403D38;
  transition: 0.3;
  padding: 10px 0 10px 16px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: var(--primary-hover-color);
}

/* .sidebar-nav .nav-content a.active i {
  background-color: var(--primary-hover-color);
} */

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: var(--primary-hover-color);
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: var(--primary-hover-color);
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .reply-card .card-icon {
  color: #dc3545;
  background: #fac6cb;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

.dashboard .k-point .card-icon {
  color: #f141b5;
  background: #ffd9f2;
}

.dashboard .finance-card .card-icon {
  color: #35a93c;
  background: #edffe5;
}

.dashboard .library-card .card-icon {
  color: #22b39f;
  background: #d6f9f5;
}

.dashboard .hrms-card .card-icon {
  color: #8a30b3;
  background: #f1d4fe;
}

.dashboard .cgns-card .card-icon {
  color: #b75570;
  background: #ffd4e0;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: 600;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: var(--primary-hover-color);
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

.report_db_icon img {
  width: 35px;
  height: 35px;
}

.report_db_icon {
  background: #D9D9D9;
  padding: 17px 43px 30px 21px;
  /* margin: -33px 0px 0px -20px; */
  /* -webkit-border-bottom-right-radius: 90px;
    -moz-border-radius-bottomright: 90px;
    border-bottom-right-radius: 90px; */
  -webkit-border-top-left-radius: 90px;
  -webkit-border-bottom-right-radius: 500px;
  -moz-border-radius-topleft: 90px;
  -moz-border-radius-bottomright: 90px;
  border-top-left-radius: 90px;
  border-bottom-right-radius: 500px;
  text-align: center;
  float: left;
  position: absolute;
  top: 9px;
  left: -1px;
}

.box-radius-10 {
  border-radius: 10px;
}

.box-shadow-226 {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

.db_bg_1 {
  background: #EFE5F8;
}

.db_bg_2 {
  background: #F0F4F6;
}

.db_bg_3 {
  background: #E1EEE8;
}

.db_bg_4 {
  background: #FAEECF;
}

.db_bg_5 {
  background: #FFECE6;
}

.adjust-caption p {
  color: black;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0
}

.adjust-caption h3 {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 600;
}

.adjust-caption-md h3 {
  font-size: 40px !important;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
  margin-right: 0.5rem
}

.adjust-caption-md span {
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
}

.adjest-cation-sm .card {
  height: 77px;
  padding: 0.25rem;
  align-items: center;
  justify-content: center;
}

.adjest-cation-sm .card h3 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #000;
}

.adjest-cation-sm .card p {
  font-weight: 600;
  font-size: 0.75rem;
  color: #000;
  margin-bottom: 0
}

.gap-md {
  gap: 2rem
}

.bg-green {
  background-color: #C3E4A9BF;
}

.bg-pink {
  background-color: #FFACACBF;
}

.bg-voilet {
  background-color: #D0D8ECBF;
}

.card-header select {
  border: 1px solid #eee;
  color: rgba(0, 0, 0, 0.46);
  padding: 0.25rem;
  border-radius: 0.25rem;
}

.main_db_box p {
  color: #000;
}

.survey-text {
  color: #775299;
}

.agencies-text {
  color: #405CC1;
}

.state-text {
  color: #208B58;
}

.cities-text {
  color: #8E530D;
}

.users-text {
  color: #BE6346;
}

.sr_db_box {
  position: relative;
}

.sr_db_box p {
  color: #000;
  text-align: right;
}

.sr_db_box h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: right;
  margin-bottom: 10px;
}

.sr_db_icon img {
  width: 35px;
  height: 35px;
}

.sr_db_icon .fa {
  color: var(--primary-color);
}

.fa-exclamation-triangle {
  color: red;
}

/*.fa-check-circle{
  color: green;
}
*/

.status_info {
  width: 100%;
  margin: 30px auto 0px auto;
  padding: 20px 0px 0px 0px;
  text-align: center;
  border-top: 1px solid #000;
}

.status_info .status_caption {
  width: 33%;
  margin: 0;
  padding: 0;
  float: left;
}

.status_info span {
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  color: #000;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile span i {
  font-size: 12px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-hover-color);
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: var(--primary-hover-color);
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-hover-color);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-hover-color);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: var(--primary-hover-color);
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;

}

.footer .copyright {
  text-align: center;
  color: #000;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.btnlogin {
  background-color: var(--primary-color);
  color: #FFF;
}

.btnlogin:hover {
  background-color: #5e288b;
  color: #FFF;
}

.f-22 {
  font-size: 18px;
}

.ftb {
  font-weight: 600;
}

.red {
  color: red;
}

.f-16 {
  font-size: 16px;
}

.userrole_table tr td span {
  width: 100%;
  float: left;
}

.userrole_table th td {
  font-size: 14px;
}

.userrole_table tr td i {
  background-color: brown;
  color: white;
  padding: 2px 5px;
  border-radius: 5px;
}

.thred {
  background: #FFF;
  color: #000;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: rgb(246 249 255);
  color: var(--bs-table-striped-color);
}

.table>:not(:first-child) {
  border-top: 0px;
}

.bodyimg {
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.8;
}

.logintype a img {
  background-color: white;
  border-radius: 5px;
  padding: 2px 5px;
}

.h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.mr-10 {
  margin-right: 10px;
}

.closefeild {
  font-size: 15px;
  padding-top: 10px;
}

.table td {
  vertical-align: middle;
  font-size: 13px !important;
  padding: 0.5rem 0.5rem;
  line-height: 1.5;
}

.leading-5 {
  margin: 20px -5px 20px 0px;
}

nav svg {
  max-width: 27px !important;
}

.pagina-acessivel .status_caption span {
  color: yellow !important;
}

.pagina-acessivel .main_db_box p {
  color: yellow !important;
}

.containerchart {
  height: auto;
  box-shadow: 2px 2px 6px rgb(0 0 0 / 25%);
  border-radius: 10px;
  padding: 20px;
  background: #FFF;
}

.containerchart h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #000;
  display: inline;
  float: left;
}

/* .highcharts-figure,
.highcharts-data-table table {
  margin: 0;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.2em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
  padding: 0.2em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
} */


.btn-light {
  color: #000;
  background-color: #FFF;
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
}

.btn-light:hover {
  color: #000;
  background-color: #FFF;
  border: 1px solid #ced4da;
}

.add_assign_col {
  padding-top: 26px;
  text-align: right;
  float: right;
}

.add_assign_col .bi {
  font-size: 25px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: none;
  padding: 2px 4px;
}

.close_assign_col {
  padding-top: 26px;
  text-align: right;
  float: right;
  margin-right: 5px;
}

.close_assign_col .bi {
  font-size: 25px;
  color: #ff0000;
  border: 1px solid #ff0000;
  background: none;
  padding: 2px 4px;
}

.m-sub-nav {
  padding-left: 20px !important;
}

.subtosub-nav {
  padding-left: 0px;
}

.agencytable p {
  margin-bottom: 4px;
}

.agencytable td {
  vertical-align: top;
}

.agencytable span {
  display: block;
  line-height: 25px;
}

.select2-container .select2-selection--single {
  height: 37px;
  margin-top: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 11px;
  right: 5px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
}

.rmdivbtn {
  margin-right: 0px;
  margin-top: 5px;
  background: #b11f00 !important;
  color: #FFF;
}

.rmdivbtn:hover {
  background: #ca2705 !important;
  color: #FFF;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
  padding: 5px;
  margin-top: 5px;
}

.select2-container--default .select2-selection--multiple:before {
  content: ' ';
  display: block;
  position: absolute;
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  right: 10px;
  margin-left: -4px;
  margin-top: -2px;
  top: 58%;
  width: 0;
  cursor: pointer
}

.select2-container--open .select2-selection--multiple:before {
  content: ' ';
  display: block;
  position: absolute;
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
  height: 0;
  right: 10px;
  margin-left: -4px;
  margin-top: -2px;
  top: 58%;
  width: 0;
  cursor: pointer
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 11px;
}

.datecal {
  color: #999;
}

.flexrow {
  display: flex;
  flex-flow: row wrap;
}

.addblock {
  background: #EAEDF3;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.modal {
  z-index: 1051 !important;

}

.select2-container--default {
  width: 100% !important;
}

.select2-search--inline {
  display: contents;
  /*this will make the container disappear, making the child the one who sets the width of the element*/
}

.select2-search__field:placeholder-shown {
  width: auto !important;
  /*makes the placeholder to be 100% of the width while there are no options selected*/
}

.tasktag span {
  display: block;
}

.taskdetails {
  /* background: #F6ECFE;
    padding: 15px;
    border-radius: 10px;  */
  margin-bottom: 20px;
  clear: both;
}

.topcards{
    margin-bottom: 15px;
    padding: 10px 15px;
    clear: both;
}

.taskdetails-table {
  background-color: rgba(255, 255, 255);
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  /* box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04); */
  box-shadow: -1px 1px 20px rgb(107 71 136 / 10%);
  clear: both;
}

.taskdetails-table span {
  display: block;
  padding-bottom: 4px;
}

#listDataTable {
  margin-top: 5px;
}

#listDataTable a {
  color: var(--primary-color);
}

/* .mr-20{
  margin-right: 20px;
} */
.coll_panel {
  padding: 0px;
  border-radius: 0px;
  /* box-shadow: 10px 10px 20px rgb(0 0 0 / 10%); */
  border: 0px solid #DDD;
}

.accordion-option {
  margin-bottom: 0px;
}

.accordion-option .accordionbtn {
  color: #405CC1;
  font-size: 16px !important;
  margin: 0px 0px 16px 0px;
  padding: 0;
  float: right;
}

.accordion-option .accordionbtn:hover {
  color: var(--primary-color);
}

.accordion-button::after {
  position: absolute;
  right: 0rem;
  top: 17px;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
  padding-left: 0rem;
  line-height: 26px;
}

.accordion-flush .form-control {
  width: 100%;
  margin-left: 0% !important;
}

/* .accordion-flush .form-check {
  margin-left: 2% !important;
  margin-right: 1% !important;
  display: block;
} */

.accordion-flush input[type="textarea"] {
  width: 100%;
  padding: 0.9rem 0.75rem;
}

.accordion-flush input[type="select"] {
  width: 100%;
  padding: 1.1rem 0.75rem;
}

.accordion-header {
  position: relative;
  z-index: 9;
}

.accordion-action {
  position: relative;
  z-index: 99;
  margin: 10px 50px -56px 0px;
  padding: 0;
  float: right;
}

.accordion-action a {
  margin-right: 10px;
}

.accordion-action a:last-child {
  margin-right: 0px;
}

.queswid {
  width: 75%;
  font-weight: 600;
  line-height: 25px;

  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* -webkit-flex-flow: row wrap; */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ques-accordian span {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: #4F4C4C;
}

.queswid-num {
  float: left;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  flex: 1
}

.queswid-lable {
  float: left;
  border-left: 1px solid #DDD;
  padding-left: 3%;
  margin-left: 3%;
  flex: 20;
  color: #444;
}

.ques-accordian .childcheck {
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 2px solid #838383;
  border-radius: 5px;
  vertical-align: middle;
  margin-right: 6px;
}

.ques-accordian .multi-collapse {
  margin-left: 6%;
}



.addmore {
  width: auto;
  margin-left: 1%;
}

.clear {
  margin: 0px;
  padding: 0px;
  clear: both;
  visibility: hidden;
}

.toptag {
  width: auto;
  padding: 7px 0px 0px 0px;
  margin: 0;
}

.toptag span {
  padding: 0px;
  margin: 0px;
  color: #FFF;
  font-size: 14px !important;
}

.pd-body {
  padding: 10px !important;
}


.show-yes {
  color: #405CC1;
  font-size: 13px;
  margin: 0;
  padding: 10px 0px;
  border: 0;
  background: none;
}

.previewcard {
  border: 1px solid #DDD;
  padding: 10px;
  margin-bottom: 10px;
}

.previewcard:hover {
  background-color: #f9f9fb;
}

.previewcard h5 {
  font-size: 16px;
  font-weight: 600;
}

.previewcard .form-control {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}

.previewcard .form-check {
  margin-bottom: 10px !important;
}

#ques-preview .card-header {
  background: none;
}

.multi-collapse {
  padding: 10px 0px;
}

.dp-block {
  display: block;
}

.move {
  cursor: move;
}

.dropdrag .draggable-item {
  width: inherit;
  padding: 15px 20px;
  -webkit-transition: transform .25s ease-in-out;
  -moz-transition: transform .25s ease-in-out;
  -o-transition: transform .25s ease-in-out;
  transition: transform .25s ease-in-out;
  -webkit-transition: box-shadow .25s ease-in-out;
  -moz-transition: box-shadow .25s ease-in-out;
  -o-transition: box-shadow .25s ease-in-out;
  transition: box-shadow .25s ease-in-out;
}

.dropdrag .draggable-item:hover {
  cursor: move;
}

/* styles during drag */
.dropdrag .draggable-item.ui-sortable-helper {
  -webkit-box-shadow: 0 0 8px rgba(53, 41, 41, .8);
  -moz-box-shadow: 0 0 8px rgba(53, 41, 41, .8);
  box-shadow: 0 0 8px rgba(53, 41, 41, .8);
  transform: scale(1.015);
  z-index: 100;
}

.dropdrag .draggable-item.ui-sortable-placeholder {
  background-color: #eaeaea;
  -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
}

.dragico {
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  padding: 5px;
  margin: 0;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  float: right;
}

.assign_user_details span {
  border: 0px solid #DDD;
  padding: 7px;
  margin: 5px 5px;
  display: inline-block;
  background: rgb(238 241 247);
  border-radius: 10px;
  font-size: 13px !important;
  width: 55%;
  text-align: left;
}

.popup-assign-users span {
  width: 31%;
  text-align: center;
}

/* .overflowth {
  display: -webkit-box;
  width: 150px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} */


.iffyTip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;

}

.hideText2 {
  max-width: 200px;
}

.hideText_3 {
  max-width: 130px;
}


#navig a {
  padding: 0.375rem 0.75rem 0.575rem 0.75rem;
  position: relative;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  font-size: 16px;
  line-height: 24px;
  margin-right: 5px;
}

#navig a:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table th {
  border: none;
  font-size: 14px !important;
}

.form-group {
  margin-bottom: 16px;
}

.form-select {
  color: #504f4f !important;
  background-position: right 0.25rem center !important;
}

option:not(:first-of-type) {
  color: #333;
}

#accordionFlushExample input:disabled {
  color: #000 !important;
  opacity: 1 !important;
  border-radius: 3px;
}

#accordionFlushExample .form-control {
  background-color: #FFF;
}

.form-check-input[type=radio] {
  border-color: #666;
  border-radius: 100% !important;
}

.form-check-input[type=checkbox] {
  border-color: #666;
  border-radius: 0em;
}

.form-check-label {
  color: #444;
  opacity: 1 !important;
}

.form-check-input:disabled {
  opacity: 1;
  border-color: #EEE;
}

.status-accept {
  background-color: #E1F6EE;
  padding: 6px 15px 8px 15px;
  border-radius: 10px;
  color: #007D50;
  font-size: 13px !important;
}

.status-rejected {
  background-color: #E8C3C3;
  padding: 6px 15px 8px 15px;
  border-radius: 10px;
  color: #A30D11;
  font-size: 13px !important;
}

.status-revert {
  background-color: #E0E0E0;
  padding: 6px 7px 8px 7px;
  border-radius: 10px;
  color: #575252;
  font-size: 13px !important;
}

.page-navi {
  width: 100%;
  margin: 25px 0px 0px 0px;
  clear: both;
  text-align: right;
}

.page-navi a {
  border: 0px !important;
  background-color: #f1e9f8 !important;
  border-radius: 10px;
  color: #000;
  margin: 0px 4px;
  padding: 7px 10px !important;
}

.page-navi span:first-child {
  color: #9E9E9E !important;
  border: 0px !important;
  padding: 5px !important;
  background: none !important;
}

.page-navi span {
  border: 0px !important;
  background-color: #a69ab0 !important;
  border-radius: 10px;
  color: #000 !important;
  margin: 0px 0px 0px 2px !important;
  padding: 7px 5px !important;
}

.page-navi a:first-child,
.page-navi a:last-child {
  color: #9E9E9E;
  border: 0px;
  padding: 5px !important;
  background: none !important;
}

.page-navi span:last-child {
  color: #fff !important;
  border: 0px !important;
  padding: 5px !important;
  background: none !important;
}

.page-navi span[aria-current="page"] {
  background-color: var(--primary-color) !important;
  color: #FFF !important;
  margin-right: 4px !important;
}

.page-navi .cursor-default:nth-child(2) {
  color: #FFF !important;
}

.page-navi a:active {
  background-color: var(--primary-color);
  color: #FFF;
}

nav div:first-of-type {
  display: none !important;
}

.page-navi .shadow-sm {
  box-shadow: 0 0rem 0rem rgba(0, 0, 0, 0) !important;
}

.progress {
  background-color: #D1D0D5;
  width: 60px;
  height: 0.5rem;
}

.progress-bar {
  background-color: var(--primary-color);
}

.prog-prec span {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: #272D37;
}

.pop-mod .modal-header .btn-close {
  background-color: var(--primary-color);
  opacity: 1;
  background-image: url('../img/popclose.svg');
  background-size: 46%;
  border-radius: 50%;
  margin: 2rem 0.5rem 0rem auto;
  position: absolute;
  right: 9px;
  font-size: 7px !important;
}

.pop-mod .modal-header {
  border-bottom: 0px;
  padding: 1rem 0.5rem;
}

.pop-mod .modal-content {
  border-radius: 20px;
}

.pop-mod .modal-body img {
  height: 580px;
  width: 100%;
  margin: 0px;
  padding: 0px;
  border: 0px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.pop-mod .modal-body .msgbox img {
  height: auto;
  width: 50px;
  margin-right: 10px;
  vertical-align: middle;
}

.pop-mod .modal-body {
  padding: 1rem 3rem 2rem 3rem;
  justify-content: center;
  display: flex;
  align-items: center;
}

.pop-mod .actionbox {
  padding: 1rem 1.5rem 2rem 1.5rem;
}

.pop-mod .carousel-item,
.pop-mod .carousel-inner {
  border-radius: 20px;
}

.pop-mod .carousel-inner img {
  border-radius: 20px;
}

#soundTag {
  text-align: center;
}

.dwnldbutton {
  text-align: center;
  margin-top: 20px;
}

.msgbox h4 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: hsl(220, 43%, 11%);
  margin: 0px;
  padding: 0px 0px 0px 25px;
}

.msgbox p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #475467;
  margin: 0px;
  padding: 0px 0px 0px 25px;
}

.cancel {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  color: #4F4F4F;
  border: 1px solid #4F4F4F;
  padding: 12px 16px;
  margin-right: 10px;
  border-radius: 10px;
}

.cancel-button {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  border: 1px solid #D0D5DD;
  padding: 10px 40px;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.submit-button {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  padding: 10px 40px;
}

.submit-button:hover {
  background: #8441b0;
  border: 1px solid #8441b0;
}

.confirm {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  color: #FFF;
  border: 1px solid #EC2727;
  padding: 12px 16px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #EC2727;
}

.confirm:hover {
  color: #FFF;
  background-color: #EC2727;
}

/* .admin-photo {
  border-right: 1px solid #DDD;
} */

.admin-photo img {
  width: 248px;
  border-radius: 20px;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.admin-profile-detail {
  padding: 50px 50px 50px 10px;
}

.admin-profile-detail .label {
  font-weight: 500 !important;
  color: #575C76 !important;
}

.admin-profile-detail .labeltag {
  font-weight: bold !important;
  color: #8388A2 !important;
}

.pass-photo {
  border-right: 0px;
}

.pass-photo img {
  width: 350px;
  height: auto;
}

.editphotobox {
  position: relative;
  z-index: 9;
  overflow: hidden;
}

/* .prev-pro-pic {
  position: absolute;
  z-index: 10;
  top: 0;
} */

.img-upload-btn {
  position: absolute;
  z-index: 99;
  top: 237px;
  text-align: center;
}

.browsebtn {
  position: absolute;
  opacity: 0;
  right: 0;
  top: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000 !important;
}

.btn-grey {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 170px;
}

.btn-grey:hover,
.browsebtn:hover {
  cursor: pointer;
}

.btn-grey img {
  width: 30px;
  height: 30px;
  border-radius: 0px;
  object-fit: none;
  object-position: unset;
}

.editprofile-photo {
  margin-right: 5%;
  position: relative;
}

.more-contacts {
  background: none;
  font-style: normal;
  font-weight: 500;
  font-size: 13px !important;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: var(--primary-color) !important;
  border: 0px;
}

.more-contacts img {
  width: 7px;
  height: 7px;
}

#show-assign-user span.info-assign {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 15px !important;
  line-height: 22px;
  letter-spacing: -0.1px;
  color: #5F6D7E !important;
  margin-top: 6px;
}

#show-assign-user .btn-close {
  margin: -1rem -0.9rem -0.5rem auto;
  font-size: 39px;
}

.filter-bar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* -webkit-flex-flow: row wrap; */
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0rem;
}

.filter-bar .sl-filter-col {
  flex: 1;
}

/* .survey-list-filter .sl-filter-col-btn {
  margin-right: 1%;
} */

.survey-list-filter .sl-filter-col-btn button {
  border-radius: 6px;
}

.has-search .form-control {
  padding: 0.32rem 1rem 0.32rem 2.375rem !important;
  border-radius: 10px;
}

.has-search2 .form-control {
  padding: 0.42rem 1rem 0.42rem 2.375rem !important;
  margin-top: 1px;
}

.has-search .form-control-search {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.675rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
  margin-top: -4px !important;
}

.mt-min {
  margin-top: -4px;
}

.nav-tabs .nav-link {
  color: #272D37;
  background: #FFF !important;
  border: 1px solid #DAE0E6 !important;
  border-radius: 0px !important;
}

.nav-link {
  padding: 3px 15px;
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #000;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}

.ques-body {
  background: #F7F6F6;
  border-radius: 10px;
  padding: 15px !important;
}

.ques-body h5 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.ques-body .list-group-item {
  padding: 10px;
  color: #000;
  background-color: #fff;
  border: 0px;
  margin-bottom: 10px;
  border-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.ques-body .list-group-item b {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--primary-color);
}

.ques-body .ques-num {
  width: auto;
  float: left;
  border-right: 1px solid #EEE;
  padding-right: 2%;
  margin-right: 2%;
}

.ques-body .ques-lab {
  width: 90%;
  float: left;
}

.ques-body .noc_options {
  margin-right: 10px;
  width: 15px;
  height: 15px;
}

.ques-body .form-check-label {
  color: #000;
  opacity: 1 !important;
  font-weight: normal;
}

.surevey-btn-action .btn-warning {
  color: #838383;
  background: rgba(131, 131, 131, 0.4) !important;
  border-radius: 5px;
  border: 0px;
}

.surevey-btn-action .btn-primary {
  border-radius: 5px;
  border: 0px;
}

.has-search .ques-search {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.675rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
  margin-top: 3px;
}

.has-search .ques-search-control {
  padding: 0.1rem 1rem 0.1rem 2.375rem;
  border: 0px;
  border-right: 1px solid #EEE;
  border-radius: 0;
}

.ques-filter {
  padding-right: 4px;
}

.ques-add-btn {
  margin-top: 60px;
}

/* .modal .btn-close {
  margin: -1rem -0.9rem -0.5rem auto;
  font-size: 39px;
} */

.update-questions-list .form-control {
  background: #FFFFFF;
  border: 1px solid #D0D5DD;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  padding: 0.5rem 0.75rem !important;
}

.update-questions-list label {
  color: #344054;
  font-weight: 400;
}

.fltrcor .select-fltr {
  /* width: 42%; */
  flex: 1;
}

/* .fltrcor .select-fltr-btn {
  margin-right: 1%;
} */

.fltrcor .select-fltr-btn button {
  border-radius: 6px;
}

.fltrcor .select-fltr2 {
  width: 39%;
}

table.agency-user-list span {
  display: block;
}

table.agency-user-list span.uname {
  font-weight: 600;
}

table.agency-user-list span {
  line-height: 1.8;
}


.delete-user {
  background: none;
  border: 0px;
}

.update-tab-ques {
  background: #F4F4F4;
  border: 0.5px solid #C2C2C2;
  border-radius: 10px;
}

.update-tab-ques .thred {
  background: none;
  color: #000;
}

.update-tab-ques thead {
  vertical-align: middle;
}

.update-tab-ques th {
  padding-left: 20px;
}

.update-tab-ques td {
  padding: 0.5rem 1rem;
  border: 0px;
}

.check-callback-action {
  padding: 20px 0px 0px 20px;
}

.check-callback-action .form-check-label {
  color: #000;
  opacity: 1 !important;
}

.callback-container .table td {
  border: 0px;
  padding: 0.5rem 1rem;
}

.swal-modal {
  border-radius: 20px;
}

.swal-icon {
  width: 60px;
  height: 60px;
  border-width: 1px;
}

.swal-icon--warning__body {
  width: 3px;
  height: 28px;
  margin-left: -1px;
}

.swal-icon--warning__dot {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  bottom: -9px;
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
  background-color: #D92D20;
}

.swal-footer {
  text-align: center;
  margin-top: 19px;
}

.swal-button {
  /* border-radius: 10px; */
  padding: 7px 40px;
}

.swal-button:focus {
  outline: none;
  box-shadow: 0 0 0 0px #fff, 0 0 0 0px rgba(0, 0, 0, 0);
}

.swal-button--danger {
  padding: 7px 49px;
  background-color: var(--primary-color);
}

.swal-button--cancel {
  color: #000;
  border: 1px solid #D0D5DD;
  background-color: #fff;
}

.swal-button--danger:not([disabled]):hover {
  background-color: #9E5FC7;
}

.swal-button--cancel:focus {
  box-shadow: 0 0 0 0px #fff, 0 0 0 0px rgba(0, 0, 0, 0);
}

.swal-title {
  font-size: 22px;
}

.swal-icon--success__ring {
  width: 60px;
  height: 60px;
  border-width: 1px;
  display: none;
}

.swal-icon--success__line--long {
  width: 38px;
  right: 4px;
  top: 29px;
  -webkit-animation: animateSuccessLong 0s;
  animation: animateSuccessLong 0s;
}

.swal-icon--success__line--tip {
  width: 23px;
  left: 5px;
  top: 34px;
  -webkit-animation: animateSuccessLong 0s;
  animation: animateSuccessLong 0s;

}

.swal-icon--success__line {
  height: 3px;
}

.swal-button--confirm {
  background-color: #9E5FC7;
}

.swal-icon--success:after {
  -webkit-transform-origin: 0 0px;
  transform-origin: 0 0px;
  -webkit-animation: rotatePlaceholder 05s ease-in;
  animation: rotatePlaceholder 0s ease-in;
  display: none !important;
}

.swal-icon--success__hide-corners {
  display: none !important;
  -webkit-transform: rotate(-0deg);
  transform: rotate(0deg);
}

.swal-icon--success:after,
.swal-icon--success:before {
  display: none !important;
}

.task-agency-userdetail span {
  display: inline;
  font-weight: 600;
}

.task-agency-userdetail .agency-uname {
  background: rgba(139, 80, 178, 0.19);
  border-radius: 5px;
  padding: 6px 10px;
  margin-right: 10px;
}

.task-agency-userdetail .agency-ph-con {
  background: rgba(195, 222, 118, 0.36);
  border-radius: 5px;
  padding: 6px 10px;
}

.task-agency-userdetail span b {
  color: rgba(0, 0, 0, 0.42);
}

.mt-6 {
  margin-top: 6px !important;
}

.has-search .pd-tbcus {
  padding: 0.5rem 1rem 0.5rem 2.375rem;
}

.alert-success {
  margin: 10px 0px 0px 0px;
}

.alert-dismissible .btn-close {
  padding: 0.8rem 1rem !important;
}

.alert-dismissible .fa-check {
  margin-right: 7px !important;
}

.tllist-table span {
  display: block;
}

.sm-view-text {
  font-size: 13px;
}

.theme-text {
  color: var(--primary-color);
}

input[type="checkbox" i]:disabled {
  background-color: #FFF;
}

.list_view_table input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.form-select:focus,
.form-control:focus {
  box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0);
}

.copyright-box {
  display: flex;
  align-items: flex-end;
  height: 150px;
}

.modal-content {
  border-radius: 20px;
  padding: 10px;
}

.modal .btn-close {
  background-color: var(--primary-color);
  opacity: 1;
  background-image: url(../img/popclose.svg);
  background-size: 46%;
  border-radius: 50%;
  /* margin: 0rem 0.5rem 0rem auto; */
  position: absolute;
  right: 25px;
  font-size: 7px !important;
}

.modal.fade .modal-dialog {
  transition: transform 0s ease-out;
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
  box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0);
}

.gopage-arrow img {
  width: 16px;
  height: auto;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0);
}

.modal-footer {
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  border-top: 0px solid #dee2e6;
  justify-content: center;
}

.modal-body {
  padding: 1rem 1rem 0rem 1rem;
}

.app-setting .form-control {
  background: linear-gradient(0deg, #FAFBFC, #FAFBFC), #FFFFFF;
  border: 1px solid #E0E4EC;
  border-radius: 8px;
}

.logoimg-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: #FAFBFC;
  border: 1px dashed #4C535F;
  border-radius: 18px;
  width: 100%;
  padding: 10px 0px;
}

.btnimg {
  font-style: normal;
  font-weight: 500;
  font-size: 13px !important;
  line-height: 16px;
  text-align: center;
  color: #4C535F;
}

.btnimg img {
  width: auto;
  height: auto;
  margin-right: 10px;
}

.logoimg-upload input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.cat-sur-txt {
  font-size: 30px !important;
  font-weight: bold !important;
  text-align: left;
}

.list_view_table img,
.agency-user-list img,
.tllist-table img,
.accordion-action img {
  width: 20px;
}

#listDataTable img {
  width: 20px;
}

.h4,
h4 {
  font-size: 1.2rem;
}

.h2,
h2 {
  font-size: 1.2rem;
}

.btn {
  line-height: 1;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-style: none;
}

.fa-arrow-circle-left {
  color: var(--primary-color);
  padding-right: 10px;
}

.admin-name-col .dropdown-item {
  width: 170px;
  white-space: unset !important;
  line-height: 25px !important;
  padding-bottom: 10px !important;
}

#jbbutton img {
  height: 33px;
}

.bottomImg img {
  height: 350px;
}

select#agency-name,
select#city,
select#id,
select#phase {
  width: 94%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#add-project .form-control,
#departmentassign .form-control,
#tasktoagency .form-control,
#resetPasswordform .form-control,
#settingsform .form-control,
#changePasswordForm .form-control,
#profileUpdateForm .form-control,
#userAddForm .form-control,
#taskuser .form-control,
#accordionFlushExample .form-control {
  padding: 0.5rem 0.75rem !important;
}

.pop-mod .survey-rt {
  padding: 1rem 2rem 2rem 0.8rem;
}

.trash-ico {
  background: #fee4e2;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 25px;
  color: #d92d20;
}

.swal-icon--error__line {
  height: 2px;
  width: 28px;
  top: 29px;
}

.sub-child-ques-col {
  background-color: #FFF;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0px 0px 0px;
}

.other-check-col {
  margin: 10px 0px 0px 10px;
}

.datareporttable-container {
  max-height: 380px;
  overflow-y: scroll;
}

.datareporttable-container thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #FFF;
}

.consent-agree {
  background: #dcc5ef;
  color: #212529;
  font-weight: normal;
  padding: 5px 15px;
  border-radius: 10px;
}

.consent-disagree {
  background: #dda1a1;
  color: #212529;
  font-weight: normal;
  padding: 5px 15px;
  border-radius: 10px;
}

.trans-ques-col-table .trans-table tr {
  display: inline;
}

.trans-ques-col-table .trans-table tr:first-child td {
  float: left;
  width: 50%;
  margin: 0;
  padding-left: 0;
}

.trans-ques-col-table .trans-table tr:nth-child(2) td {
  float: left;
  width: 50%;
  margin: 0;
  padding-right: 0;
}

.trans-ques-col-table .trans-table th {
  margin: 0;
  padding: 0;
}

.top-header-name-block {
  margin-top: 16px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
}

.top-header-name-block p {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  text-align: center;
}

.addpopup .text-num-col {
  display: flex;
}

.addpopup .text-num-col .tnc-lable {
  width: 80%;
  margin-left: 4%;
  margin-right: 4%;
  font-size: 12px !important;
  margin-top: 2%;
}

.addpopup .text-num-col .form-check-input[type=checkbox] {
  width: 2em;
  height: 1em;
  margin-top: 4%;
}

.profileimage-info {
  font-size: 15px;
  font-weight: 400;
  padding-bottom: 0;
  color: #919499;
  text-align: center;
}

.updatetabques2 td {
  width: 33%;
  float: left !important;
}

.dbov-crd-bodypd {
  padding: 10px 30px;
}

.db-ov-card {
  margin-right: 20px;
  border-right: 1px solid #DDD;
  width: 48%;
  padding-right: 20px;
}

.db-ov-card:last-child {
  margin-right: 0px;
  border-right: 0px;
  padding-right: 0px;
}

.db-ov-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #5F6D7E;
}

.db-ov-card h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: -0.02em;
  color: #272D37;
}

.related-ques-col {
  border: 1px solid #DDD;
  padding: 10px 15px 2px 15px;
  border-radius: 6px;
  margin-top: 2% !important;
  height: 120px;
  overflow-y: auto;
}

.validate-ques-col {
  border: 1px solid #DDD;
  padding: 10px 15px 2px 15px;
  border-radius: 6px;
  margin-top: 2% !important;
}

.faqsaccordion {
  background-color: #fff !important;
  border-radius: 0px !important;
  padding: 5px 10px !important;
  margin-bottom: 0px !important;
}

.faqsaccordion .accordion-button:not(.collapsed) {
  background-color: #fff !important;
}

.faqsaccordion .accordion-button:not(.collapsed) {
  color: var(--primary-color) !important;
}

.faqsaccordion .accordion-body {
  padding: 0rem 2.25rem !important;
}

.faqsaccordion .accordion-body h3 {
  line-height: 1.5;
  font-size: 18px !important;
  margin: 10px 0px 5px 0px;
  padding: 0;
  font-weight: bold;
}

.faqsaccordion .accordion-body p {
  line-height: 1.5;
  font-size: 15px !important;
  text-align: justify;
  margin: 0px 0px 5px 0px;
  padding: 0;
}

.faqsaccordion .accordion-body ul {
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 15px !important;
}

.faqsaccordion .faqimg img {
  border-radius: 10px;
  border: 1px solid #DDD;
  padding: 2px;
  margin: 6px 0px;
  width: 240px;
}

.faqsaccordion .spec-imgs img {
  border-radius: 10px;
  border: 1px solid #DDD;
  padding: 2px;
  margin: 6px 0px;
  width: 800px;
}

.faqsaccordion .accordion-button {
  font-weight: 600;
  font-size: 17px !important;
}

.faqsaccordion .accordion-button:not(.collapsed) {
  box-shadow: inset 0 0px 0 rgba(0, 0, 0) !important;
}

/* -----------------charts------------------------- */
#canvas-holder {
  width: 100%;
  text-align: center;
}

#chartjs-tooltip {
  opacity: 1;
  position: absolute;
  -webkit-transition: all .1s ease;
  transition: all .1s ease;
  pointer-events: none;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

.chartjs-tooltip-key {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

#donutChartContainer {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

/* #pieChart {
  width: 326px;
  height: 326px;
  max-width: 326px;
} */
#pieChartContainer {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

/* #donutChart {
  max-width: 450px;
  width: 450px;
  height: 450px;
} */

#lineChart {
  width: 100%;
  max-width: 100%;
  height: 300px;
}

canvas {
  background: #fff;
}

.chartscol h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #1C2A53;
}

.chartscol .col-md-6 {
  margin-bottom: 13px;
}


.line-custom-tooltip {
  position: absolute;
  padding: 8px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  z-index: 99;
}

.linechartlist {
  margin: 0;
  padding-left: 23px;
}

.linechartlist li::marker {
  color: #8B50B2;
  font-size: 20px;
}

.linechartlist li {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
}

.donut-custom-tooltip {
  /* width:150px; */
  position: absolute;
  z-index: 999;
  pointer-events: none;
  color: black;
  font-size: 16px;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
}

.tooltip-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.tooltip-value {
  margin-top: 4px;
}

.tooltip-percentage {
  font-size: 16px;
  font-weight: 600;
}


/* -------------------------------------------------- */

.crdthr {
  flex-grow: 1;
  width: auto !important;
  margin: 0 !important;
  padding: 0 12px !important;
}

.secrowthr {
  margin-top: 20px !important;
}

.graphbigcnt {
  background-color: rgba(255, 255, 255);
  /* padding: 10px 15px; */
  margin-top: 1rem !important;
  border-radius: 10px;
}

.hfrw {
  /* background-color: white; */
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  border-radius: 10px;
  /* padding: 1rem; */
  gap: 1rem;
  flex-direction: row;
}

.twogrcnt {
  flex-grow: 1;
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
}

.barChartContainer {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
}

#barChartContainer {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  padding: 0px;
  background: #fff;
  display: flex;
  justify-content: center;
}

#barChart {
  width: 100%;
}

#srr-pieChart {
  max-width: 100%;
  max-height: 82%;
}

#agadmin-pieChart {
  max-width: 100%;
  max-height: 82%;
}

.ppcl {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #1C2A53;
}


.ppcl__ {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  color: #1C2A53;
}


.inpsc {
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
}

.crb {
  padding: 25px !important;
}

.biginpsdiv {
  border-radius: 10px;
  border: 1px solid #EAEBF0;
  padding: 1rem;
}

.select-fltr {
  width: 100%;
  display: flex;
}

.newsf {
  border: 1px solid #eee;
  border-radius: 10px;
}

.newmr20 {
  margin-bottom: 20px;
}

.newsf select {
  border-radius: 0px;
}

.ppcl__ {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 30px;
  margin: 0.5rem 0;
  color: #1C2A53;
}

.frmsl {
  padding: 0.5rem !important;
  width: 100% !important;
}

.ffsec {
  margin-top: 1rem;
}

.flbsc {
  margin: 1rem auto 0 auto;
}


.flrwtp {
  display: flex;
  width: 100%;
  gap: 1rem;
}

.fmhd {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.collcont {
  display: flex;
  flex-direction: column;
  background: rgba(171, 171, 171, 0.13);
  border-radius: 10px;
  padding: 1rem;
}

.grphd {
  font-weight: 700;
  font-size: 18px !important;
  line-height: 29px;
  /* identical to box height */
  color: #8B50B2;
  margin: 0;
  padding: 0;
}

.x_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 400px;
  flex-grow: 1;
}

.graphhd {
  margin: 0;
  font-size: 1rem;
}

.twgr {
  display: flex;
  gap: 1rem;
}

.grexp {
  width: 100% !important;
  height: 100% !important;
}

.fdx {
  position: sticky;
  font-weight: bold;
}

.stackedbarchart {
  height: 400px;
}

#meerut,
#ghaziabad,
#faridabad,
#jodhpur,
#gwalior,
#vasai,
#aurangabad,
#raipur,
#rachi,
#westbengal,
#vijaywada,
#coimbatore {
  cursor: pointer;
}

.state-bg {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
}

.state-description {
  padding: 10px 20px;
  text-align: justify;
}

.cityboxhidden {
  display: none;
}

.map-indicator {
  position: absolute;
  bottom: 130px;
  right: 200px;
  padding: 0;
  margin: 0;
}

.city-info {
  position: absolute;
  top: 139px;
  left: 19px;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  padding: 10px 10px 12px 10px;
  width: 250px;
}

.city-info h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #8B50B2;
}

.city-info span {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
}

.city-info b {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #8B50B2;
}

.city-info p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  margin: 0;
  padding: 0
}

.pointsafe {
  width: 10px;
  height: 10px;
  background: #218C24;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.pointmediumsafe {
  width: 10px;
  height: 10px;
  background: #F0A54D;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.pointlowsafe {
  width: 10px;
  height: 10px;
  background: #E2341D;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
}

.city-info .close-icon {
  background-color: #6b4788;
  background-image: url(../img/popclose.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 100%;
  margin: -2px -2px 0px 0px;
  padding: 11px;
  cursor: pointer;
  float: right;
}


#horizontalBarChart {
  transform: rotate(-90deg);
  transform-origin: top left;
  width: 400px;
  height: 100%;
}


.crcont {
  height: 300px;
}

.bldclnm {
  font-weight: bolder;
  font-size: 2rem !important;
}

.overview-collapse .accordion-button {
  padding: 0.2rem 1.25rem;
}

.overview-collapse .accordion-button h4 {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.overview-collapse .accordion-button::after {
  right: 0rem;
  top: 6px;
}

.overview-collapse .accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 0px 0 rgba(0, 0, 0, 0);
}

.accordion-button {
  padding: 0.2rem 1.25rem;
}


.iptslt .inputwithselect {
  padding: 0.42rem 1rem 0.42rem 2.375rem !important;
}

.gotoback {
  width: 14px;
  margin: -2px 5px 0px 0px;
}

.gobackpage {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #8692A6;
  margin-bottom: 50px;
}

.gobackpage a {
  color: #8692A6;
  text-decoration: none;
}

.dataoverviewtable-container {
  max-height: 233px;
  overflow-y: scroll;
}

.dataoverviewtable-container thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #FFF;
  font-size: 12px !important;
}

.dataoverviewtable-container td {
  font-size: 12px !important;
}

#scrollstyle::-webkit-scrollbar-track {
  background-color: #DFDDF5;
}

#scrollstyle::-webkit-scrollbar {
  width: 7px;
  background-color: #DFDDF5;
}

#scrollstyle::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

.parameterchartbox {
  height: 324px;
}

#lineChartContainer {
  height: 255px;
}

.frmdrop {
  width: 96% !important;
  margin: 0% 2%;
  border-radius: 10px;
}

.ovrtb th,
.ovrtb td {
  font-size: 12px !important;
}

.sltfrm2 select {
  border-right: 1px solid #DDD !important;
  border-radius: 0;
}

.sltfrm2-last select {
  border-right: 0px !important;
}

.dispflx {
  display: flex;
  border: 1px solid #eee;
  border-radius: 10px;
  width: 98%;
  margin: 0% 1% 2% 1%;
}

.card-heoight {
  height: 400px;
}

.card.card-body.card-heoight canvas {
  height: 100% !important;
  width: 100% !important;
}

canvas#pieChartagency {
  height: 254px !important;
  width: 254px !important;
}

.catwise {
  height: 229px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catwise h4 {
  text-align: left;
}

section.dashboard {
  margin-top: 3rem;
}

section.dashboard .col-md-3,
section.dashboard .col-md-6 {
  margin-bottom: 1rem;
}

a.btn.btn-primary {
  margin-bottom: 1%;
}

.loadrel {
  position: relative;
  z-index: 9;
}

.laodwrap {
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 99;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.loadnum {
  z-index: 999;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
}

button.badge-count {
  background: #DDD;
  border-radius: 10px;
  display: inline;
  margin: 5px;
  color: #333;
  padding: 5px 12px;
  border: 0;
}

.cardsscity .card-body {
  padding: 11px 20px !important;
}

span.cutnum {
  display: inline;
  margin-left: 10px;
  padding: 0;
  color: #6b4788;
  font-size: 13px;
  font-weight: bold;
}

.projects_in_scorecard span {
  display: inline;
}


.quescolblock-tag {
  font-size: 15px;
  font-weight: bold;
  color: #000;
}

.quescolblock-tag span {
  border-right: 1px solid #DDD;
  margin-right: 20px;
  padding-right: 10px;
  width: 4%;
  color: #6b4788;
  font-weight: bold;
}
.full, #map{
  margin: 0;
  padding:0;
  height: 500px;
  border-radius: 10px;
}
.leaflet-control-attribution.leaflet-control {
  display: none;
}

.purploutl{
    /* border:2px solid #6b4788 ; */
    border-color: #6b4788;
    background-color: white;
    color: #6b4788;
}
.purploutl:hover{
    background-color: #6b4788;
    color: white;
}


.cshd{
  padding-top: 0.5rem;
  padding-bottom: .5rem;
}


.btmgaps{
    margin-bottom: 1rem;
}

.cartx{
    display: inline-flex;
    flex-direction: column;
    margin-left: 20px;
}
.hcr{
    color: #6B4788;
/* font-family: Roboto; */
font-size: 17px;
font-style: normal;
font-weight: 600;
line-height: 21.483px; /* 119.352% */
}
.prnm{
    color: #9991A0;
/* font-family: Roboto; */
font-size: 20.474px;
font-style: normal;
font-weight: 600;
line-height: 14.625px; /* 71.429% */
}
.dpl{
    display: flex;
    align-items: center;
}

.btctn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nviul{
    overflow: clip;
    border-radius: 5px;
    border: 0.6px solid #6B4788;
}

.nvi{
    padding: 15px 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0.6px solid #6B4788;

    color: #6B4788;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 14.306px;
    cursor: pointer;
}

.nv2{
    font-size: 16px !important;
}

.nvi-active{
    background-color: #6B4788;
    color: white;
    
    padding: 15px 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 0.6px solid #6B4788;

    /* color: #6B4788; */
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 14.306px;
    cursor: pointer;
}


.topgap{
    margin-top: 2.5rem;
}


.rsbtn{
    border-radius: 5px;
    background-color: #6B4788;
    color: white;
    
    padding: 15px 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 14.306px;
    cursor: pointer;
}


.sctbl_head{
    background-color: #6B4788;
    color: white;
}
.sctcl{
    font-size: 16px !important;
    font-weight: 400 !important;
}
.tblcvr{
    border-radius: 10px;
    overflow: clip;
}

.tblcvr tbody tr td,th{

    border: 1px solid #D3D3D3 !important;
    border-collapse: collapse !important;
}


.hexp{
    height: 100%;
}

.bgr{
    background-color: #daefc8bf !important;
}
.brd{
    background-color: #f4c4c4bf !important;
}
.bbl{
    background-color: #e1eaff !important;
}
.cscln{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    color: #926eae;
    padding: 4px 8px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    background-color: #e2c1ed;
}
.cscln:hover{
    font-weight: 600;
    color: #6B4788;
}
.svcw{
    width: 20px;
    margin-left: 5px;
    color: #6B4788;
    /* fill: #6B4788; */
}
.cbmfy{
    display: flex;
    align-items: center;
    padding: 15px 20px !important;
    justify-content: center;
    border: 2px solid white;
}

.cbmfy:hover{
    /* background-color: #f1dbeb;
    border: 2px solid red; */
    color: darkorchid;
}

.cbmfy h3{
    font-size: 23px !important;
    font-weight: 500 !important;
    margin: 0;
    margin-right: 10px;
}
.svwd{
    width: 20px;
}
.hvrl{
    border: 2px solid white;
}
.hvrl:hover{
    background-color: #fff3ff !important;
    border: 2px solid #f1cce9;
}
.mxbrd{
    border: 1px solid #c7ccc3;
}
.imfx{
    height: 60px;
}
.hexp{
    height: 100%;
}

.bgr{
    background-color: #daefc8bf !important;
}
.brd{
    background-color: #f4c4c4bf !important;
}
.bbl{
    background-color: #e1eaff !important;
}
.dbmtrx{
    font-size: 35px !important;
    font-weight: 900 !important;
    margin-bottom: 0 !important;
}
.trx1{
    color: #4d6b34 !important;
}
.trx2{
    color: #7a3c3c !important;
}
.trx3{
    color: #2a3b62 !important;
}
.gapx{
    gap: 1rem;
}
.taskdetails-table .float-start {
  float: none !important;
}

.taskdetails-table .col-md-6 {
  margin-bottom: 10px;
  margin-top: 10px;
}
.taskdetails-table h2 {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.taskdetails-table {
  background-color: rgba(255, 255, 255);
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  /* box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.04); */
  box-shadow: -1px 1px 20px rgb(107 71 136 / 10%);
  clear: both;
}

.taskdetails-table span {
  display: block;
  padding-bottom: 4px;
}


.fcnc{
  padding-bottom: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btpr{
  background-color: #8B50B2;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkItem{
  font-size: 16px !important;
  padding: 10px 20px !important;
  color: #6B4788;
  border: 1px solid lightgray;
  cursor: pointer;
  /* border-radius: 5px; */
  border-collapse: collapse;
}
.getCity{
  cursor: pointer;
}

.nvt{
  padding: 1rem 0rem 0 0;
  margin: 0 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.nvt .active{
  background-color: #6B4788 !important;
  color: white;
  font-size: 16px;
  padding: 10px 20px !important;
}



.actb{
  width: 100%;
}
.clss{
  border: 0 !important;
  width: 12%;
  column-count: 1;
  font-size: 1rem;
}
.row_bord{
  border-bottom: 1px solid grey;
  border-collapse: collapse;
}
.tblacdexp{
  padding: 1rem 1.25rem;
}
.acii{
  border: 2px solid #e7e7e7;
}
.cstmsl{
  border: 0;
  width: 15%;
  padding: 0.5rem 0 0.5rem 1rem;
  border: 1px solid rgb(233 233 233);
  border-collapse: collapse;
  border-radius: 5px;
  /* margin-right: 1rem; */
}
.dark-green{
  background-color: #35AB27!important;
}
.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  background: rgb(23 22 22 / 91%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 0.3s linear;
}

.page-content {
  max-width: 768px;
  margin: 0 auto;
}

.tchd{
  color: var(--gray-50, #5F6D7E);
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 19.5px; /* 139.286% */
letter-spacing: -0.28px;
margin-right: 10px;
margin-bottom: 5px;
}
.wf{
  width: 90%;
}
.csp{
  border-radius: 5px;
border: 1px solid #E8E5FF;

background: #FFF;
height: 100%;
}
.ln1{
  height: 1px;
  width: 100%;
  background: #9b9b9b;
}
.lighthdn{
  color: #7D7C86;
  margin-bottom: 5px;
font-size: 14.36px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.malf{
  margin-left: 10px;
}
.clr-row{
  background-color: #F7F6FE;
}
.non-clr-row{
  background-color: white;
}
.tbds{
  height: 100px;
  overflow-y: scroll  ;
}
.cmgp{
  margin-bottom: 15px;
}

.modal-body-flexcol{
  padding: 1rem !important;
  flex-direction: column !important;
}
.expand-wid{
  width: 100%;
}

.modhead-custom{
  display: flex !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1rem 1rem !important;
  border-bottom: 1px solid #dee2e6 !important;
  border-top-left-radius: calc(0.3rem - 1px) !important;
  border-top-right-radius: calc(0.3rem - 1px) !important;
}
.captchinputbox{
  height: 46px !important;
}
.dash_btn_cuswid{
  width: 130px;
    margin-left: 5px;
    height: 37px;
    margin-top: 5px;
}