﻿body {
  overflow: auto;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px !important;
}
/* variables */
:root {
  --app-bg-color: #605ca8;
  --app-border-color: #4e4b8d;
}
.form-control,
.dropdown-menu {
  font-size: 12px !important;
}
.sidebar-menu,
.treeview-menu > li > a {
  font-size: 13px !important;
}
.center-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
[data-letters-sm]:before {
  content: attr(data-letters-sm);
  display: inline-block;
  font-size: 0.65em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 50%;
  background: plum;
  vertical-align: middle;
  margin-right: 0em;
  color: white;
}
[data-letters-md]:before {
  content: attr(data-letters-md);
  display: inline-block;
  font-size: 1em;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  border-radius: 50%;
  background: plum;
  vertical-align: middle;
  margin-right: 1em;
  color: white;
}

#text-center {
  text-align: center;
}

.text-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}
.p-t-1 {
  padding-top: 1em;
}
.p-t-25 {
  padding-top: 0.95rem !important;
}
.w-85px {
  width: 85px !important;
}
.p-b-1 {
  padding-bottom: 1em;
}
.p-b-5 {
  padding-bottom: 5em;
}
.loading {
  display: inline-block;
  height: 50px;
}
.pl-0 {
  padding-left: 0px !important;
}
.form-group.has-error .select2-container--default .select2-selection--single,
.select2-selection .select2-selection--single {
  border: 1px solid #dd4b39;
}
.mx-1 {
  margin: 0em 1em;
}
.mr-1 {
  margin-right: 1em;
}
.mb-1 {
  margin-bottom: 1em;
}
.ml-1 {
  margin-left: 1em;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.my-1 {
  margin: 1em 0em;
}
.alert-btn {
  padding: 6px 6px 10px 6px;
}
@media (min-width: 576px) {
  .modal.in .modal-center {
    position: relative;
    top: 45%;
    transform: translateY(-45%);
    -o-transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
  }
}
.ui-ios-overlay .icon-holder {
  text-align: center;
  position: absolute;
  top: 40px;
  left: 0;
  height: 68px;
  width: 100%;
}
.ui-ios-overlay .icon-holder .fa {
  font-size: 64px;
  color: #fff;
}
label.optional::after {
  content: " ( optional )";
  font-size: 12px;
  color: #9f9f9f;
}
.va-m {
  vertical-align: middle;
}
.va-t {
  vertical-align: top;
}
.p-1 {
  padding-top: 1em;
  padding-right: 1em;
  padding-left: 1em;
}
.inp_error,
.select2-hidden-accessible.inp_error + .select2-container .select2-selection {
  border: 1px solid #c0392b !important;
}

.inp_success {
  border: 1px solid #22bb33 !important;
}

.d-none {
  display: none !important;
}
.ui-ios-overlay {
  z-index: 99999;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-left: -100px;
  margin-top: -100px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.ui-ios-overlay .icon-holder {
  text-align: center;
  position: absolute;
  top: 40px;
  left: 0;
  height: 68px;
  width: 100%;
}
.ui-ios-overlay .icon-holder .fa {
  font-size: 64px;
  color: #fff;
}
.ui-ios-overlay .title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  font-size: 26px;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.ui-ios-overlay img {
  display: block;
  margin: 20% auto 0 auto;
}
.ui-ios-overlay .spinner {
  left: 50% !important;
  top: 40% !important;
}
.ios-overlay-show {
  -webkit-animation-name: ios-overlay-show;
  -webkit-animation-duration: 750ms;
  -moz-animation-name: ios-overlay-show;
  -moz-animation-duration: 750ms;
  -ms-animation-name: ios-overlay-show;
  -ms-animation-duration: 750ms;
  -o-animation-name: ios-overlay-show;
  -o-animation-duration: 750ms;
  animation-name: ios-overlay-show;
  animation-duration: 750ms;
}
@-webkit-keyframes ios-overlay-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes ios-overlay-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes ios-overlay-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes ios-overlay-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ios-overlay-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ios-overlay-hide {
  -webkit-animation-name: ios-overlay-hide;
  -webkit-animation-duration: 750ms;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: ios-overlay-hide;
  -moz-animation-duration: 750ms;
  -moz-animation-fill-mode: forwards;
  -ms-animation-name: ios-overlay-hide;
  -ms-animation-duration: 750ms;
  -ms-animation-fill-mode: forwards;
  -o-animation-name: ios-overlay-hide;
  -o-animation-duration: 750ms;
  -o-animation-fill-mode: forwards;
  animation-name: ios-overlay-hide;
  animation-duration: 750ms;
  animation-fill-mode: forwards;
}
@-webkit-keyframes ios-overlay-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes ios-overlay-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes ios-overlay-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes ios-overlay-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ios-overlay-hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* accordions*/
.panel-group .panel {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
}
.panel-group .panel .panel-heading {
  border-bottom: none;
  padding: 0;
}
.panel-group .panel .panel-heading a {
  display: block;
  padding: 8px 10px;
  -webkit-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  text-decoration: none;
}
.panel-group .panel .panel-heading + .panel-collapse .panel-body {
  border-top: 0;
}
.panel-group .panel + .panel {
  margin-top: 2px;
}
.panel-group .panel-default .panel-heading a {
  background: #ecf0f1;
}
.panel-group .panel-default .panel-heading a:hover {
  background: #cfd9db;
}
.panel-group .panel-danger .panel-heading a {
  background: #c0392b;
  color: #fff;
}
.panel-group .panel-danger .panel-heading a:hover {
  background: #ab3326;
}
.panel-group .panel-success .panel-heading a {
  background: #64b92a;
  color: #fff;
}
.panel-group .panel-success .panel-heading a:hover {
  background: #59a425;
}
.panel-group .panel-warning .panel-heading a {
  background: #d7af0d;
  color: #fff;
}
.panel-group .panel-warning .panel-heading a:hover {
  background: #bf9b0c;
}
.panel-group .panel-info .panel-heading a {
  background: #4fbeba;
  color: #fff;
}
.panel-group .panel-info .panel-heading a:hover {
  background: #42b2ae;
}
.panel-group .panel-primary .panel-heading a {
  background: #2986b9;
  color: #fff;
}
.panel-group .panel-primary .panel-heading a:hover {
  background: #2477a4;
}
.panel-heading .panel-title .accordion-toggle {
  border-radius: 4px !important;
}
/* accordions end*/

/* panels */
.brand_top {
  border: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  margin-bottom: 0px;
  /*margin-top: 40px;*/
  height: 50px;
  padding: 10px 10px 10px 30px;
}
.brand_top h3 {
  padding: 0px;
  margin: 0px;
  font-size: 20px;
  float: left;
  color: #333333;
}
.panel {
  padding: 10px;
  border: none;
  border-radius: 4px !important;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}
.panel + .panel {
  margin-top: 20px;
}
.panel .panel-footer {
  margin-top: 20px;
}
.panel > .panel-heading {
  font: 400 18px / 24px "Open Sans", Arial, sans-serif;
  background: transparent;
  padding: 4px 10px 10px;
}
.panel > .panel-heading .btn {
  margin-top: 2px;
}
.panel > .panel-heading .fa {
  font-size: 14px;
  cursor: pointer;
  margin-top: 6px;
}
.panel > .panel-heading small {
  vertical-align: 1px;
  font-size: 14px;
  color: #888;
}
.panel > .panel-heading .btn .fa {
  margin: 0;
}
.panel_body_a {
  padding: 15px 0 0;
}
.panel_body_b {
  padding: 20px 10px;
}
.quick-link-div .panel {
  margin-bottom: 0px;
}
.panel-info > .panel-collapse {
  border-left: 1px solid #4fbeba;
  border-right: 1px solid #4fbeba;
  border-bottom: 1px solid #4fbeba;
}
#accordion > .panel.panel-info > .panel-heading {
  position: relative !important;
}
.panel-group .panel .panel-heading {
  padding-bottom: 1px;
}

/* panel end */
.btn-group.btn-group-xs.ac_bu {
  position: absolute;
  right: 10px;
  top: 1px;
  background: none;
  border: 0px;
}
.btn-group.btn-group-xs.ac_bu > .btn.btn-default.btn-sm {
  background: none;
  border: 0px;
}
.pull-right {
  float: right;
}
.position-relative {
  position: relative;
}
/* select 2 */

.select2-container {
  padding: 0;
}
.select2-container.select2-drop-above .select2-choice,
.select2-container .select2-choice {
  background: none;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 3px 0 0;
}
.select2-container.select2-drop-above .select2-choice .select2-arrow,
.select2-container .select2-choice .select2-arrow {
  background: none;
  border: none;
}
.select2-container.select2-drop-above
  .select2-choice
  > .select2-chosen
  [class^="flag-"],
.select2-container .select2-choice > .select2-chosen [class^="flag-"] {
  margin: -2px 4px 0 0;
}
.select2-container-multi .select2-choices,
.select2-choices {
  border: none;
  background: none;
  padding: 1px 0;
}
.select2-container-multi .select2-choices .select2-search-choice,
.select2-choices .select2-search-choice {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: #f0f7fc;
  border: 1px solid #2487c9;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 13px;
  padding: 5px 22px 4px 5px;
}
.select2-container-multi
  .select2-choices
  .select2-search-choice
  [class^="flag-"],
.select2-choices .select2-search-choice [class^="flag-"] {
  margin: -4px 4px 0 0;
  height: 14px;
}
.select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 3px;
  color: #fff;
  background: none !important;
  top: 5px;
}
.select2-container-multi .select2-search-choice-close:after {
  font-weight: 700;
  font-size: 17px;
  right: 0;
  color: #ccc;
  content: "×";
}
.select2-container-multi .select2-search-choice-close:hover {
  text-decoration: none;
}
.select2-container-multi .select2-search-choice-close:hover:after {
  color: #222222;
}
.select2-container-multi.select2-container-active .select2-choices {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #daecf8;
}
.select2-drop {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-color: transparent #eee #ddd #ddd;
}
.select2-results .select2-highlighted {
  background: #f0f7fc;
  color: #222222;
}
.select2-dropdown-open.select2-drop-above .select2-choices {
  background: #fff;
  border: none;
}
.select2-drop.select2-drop-above {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-color: #ddd #eee transparent #ddd;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: #ddd;
  margin-bottom: -1px;
}
.select2-results .select2-result-label {
  font-size: 13px;
}
.select2-results .select2-result-label [class^="flag-"] {
  margin: -2px 4px 0 0;
}
.resize-none {
  resize: none;
}

/*List Group*/
.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-horizontal {
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
/*List Group End*/
/*Display Properties */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
/*Display Properties End*/

.m-b-0 {
  margin-bottom: 0;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
/* margin */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.ml-2 {
  margin-left: 2em;
}
.ml-20 {
  margin-left: 20em;
}
.pd_per {
  background-color: #eaeaea;
  padding-bottom: 1px;
  padding-right: 18px;
  padding-top: 1px;
}
.wd_630 {
  width: 630px;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item:hover,
.list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}
.popover-lg {
  max-width: 500px;
}
.border-bottom {
  border-bottom: 1px solid #eee;
}
.w-50 {
  width: 50% !important;
}
.pl-1 {
  padding-left: 1em !important;
}

.f-12 {
  font-size: 10px;
}

.l-h-5 {
  line-height: 5px;
}
.navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  max-height: 350px;
}
.text-uppercase {
  text-transform: uppercase;
}
.p-relative {
  position: relative;
}
.zone-login-btn .fa::before {
  vertical-align: -webkit-baseline-middle;
}
.zone-api-login-btn,
.zone-api-login-btn:hover {
  position: absolute;
  color: #3c8dbc !important;
  right: 28px;
  bottom: 0;
}
.label-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
#invoice-history-timeline,
.history-timeline {
  background-color: #fbfbfb;
  padding: 20px 0 0 0;
  margin-top: 10px;
  max-height: 80vh;
  overflow: auto;
}
#payment-emails li.tagit-new {
  width: 240px;
}
.copy-block .copy-btn {
  opacity: 0;
}
.copy-block:hover .copy-btn {
  opacity: 1;
}
.copy-block .copy-btn {
  position: absolute;
  color: #000000;
  outline: none;
  border-color: transparent;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: opacity 0.2s linear;
  padding: 0 0 0px 5px;
  line-height: 1;
}
.copy-block:hover .copy-btn:focus {
  color: #3c8dbc;
}
.copy-block.copy-block-inline {
  margin-right: 25px;
}
.modal-dialog-scrollable .modal-body,
.modal-dialog-scrollable .box-body {
  max-height: calc(100vh - 175px);
  overflow-y: auto;
  padding-right: 20px;
}
#pending-invoices-list,
#pending-advances-list {
  max-height: 170px;
  overflow: auto;
}
.table-layout-fixed {
  table-layout: fixed;
}
.line-br-anywhere {
  /*line-break: anywhere;*/
  text-align: justify;
}
.invoice-line-desc {
  /*line-break: anywhere;*/
  text-align: justify;
  text-align-last: auto;
}
.w-auto {
  width: auto;
}
.p-0 {
  padding: 0 !important;
}
.highlight {
  background-color: #ccf8c0;
}
label.req::after {
  content: "*";
  color: #c0392b;
  margin-left: 2px;
}
.table.table-sm > tbody > tr > td,
.table.table-sm > tbody > tr > th,
.table.table-sm > tfoot > tr > td,
.table.table-sm > tfoot > tr > th,
.table.table-sm > thead > tr > td,
.table.table-sm > thead > tr > th {
  padding: 5px;
}
.table.table-borderless > thead > tr > th,
.table.table-borderless > tbody > tr > th,
.table.table-borderless > tfoot > tr > th,
.table.table-borderless > thead > tr > td,
.table.table-borderless > tbody > tr > td,
.table.table-borderless > tfoot > tr > td {
  border-top: none;
}
.no-border {
  border: none !important;
}
.no-shadow {
  box-shadow: none !important;
}
.daterangepicker .table-condensed td {
  padding: 0 !important;
}
.sticky-top {
  position: sticky;
  top: 0;
  background-color: #ffffff;
}
#discussion-comments .timeline:before {
  width: 2px;
  left: 33px;
}
.discussion-activity {
  padding: 0.5rem 2rem;
}
.discussion-activity .action-icon {
  position: relative;
  background: #dddddd;
  padding: 7px;
  border-radius: 50%;
}
.pointer {
  cursor: pointer;
}
#activity-content .timeline-header > .time {
  font-size: 11px;
}
#activity-content .timeline > li > .fa {
  top: 12px;
}

#invoice-status {
  background-color: #f9f9fb;
  border-radius: 10px;
}
#invoice-status .invtypelabel {
  font-size: 13px;
  color: #777777;
}
#invoice-status .invtypeamount {
  font-size: 13px;
}
#invoice-status .invtypecount {
  font-size: 11px;
  padding-left: 10px;
}

#infra-nodes .info-box-content {
  margin-left: 0px !important;
}
#infra-nodes .info-box-text {
  text-transform: capitalize;
}
#infra-nodes .popover {
  width: 600px !important;
}

.note-editor .note-popover .popover-content,
.note-editor .panel-heading.note-toolbar {
  padding: 0 0 5px 5px;
  margin: 0;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.text-warning {
  color: #c0392b;
}
.text-mutted {
  font-size: 11px;
  color: #666666;
}

.multiselect-box {
  padding: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.bg_beige {
  background: #f5f5dc;
}
.dropdown-menu {
  box-shadow: 0 0 black;
  box-shadow: 0px 0px 5px 1px #dedede;
  -webkit-box-shadow: 0px 0px 5px 1px #dedede;
  -moz-box-shadow: 0px 0px 5px 1px #dedede;
}
.dropdown-menu > li > a {
  padding: 8px 20px;
}

.form-check-inline {
  display: inline-block;
  margin-right: 10px;
  /* Adjust spacing between radio buttons */
}

#customPopover {
  width: 300px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  display: none;
}

.form-container {
  display: none;
}

.email-parent {
  position: relative;
}

.email-valid {
  position: absolute;
  bottom: -24%;
}

.zone-parent {
  position: relative;
}

.zone-valid {
  position: absolute;
  bottom: -24%;
}

.phone-parent {
  position: relative;
}

.phone-valid {
  position: absolute;
  bottom: -24%;
}

.status-icon {
  font-size: 24px;
}

.timeDisplay {
  width: 30%;
  display: inline-block;
}

.display-title {
  display: inline-block;
  margin-right: 20% !important;
}
.no-due {
  border-left: 4px solid #005abb !important;
}
.prim_ns {
  border-left: 4px solid #288500;
}
.modal-xl {
  width: 95%;
}
.modal-content {
  border-radius: 3px;
}
.highcharts-credits {
  display: none;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate {
  animation: rotate360 0.5s linear;
}

/* toggle switch radio start */
/* ref: application\views\assets\un-asset-domain-list.tpl#filter-domain-btn-group*/
.btn-group-days .focus {
  outline: none !important;
}
.btn-group-days > .btn-success {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
  border-radius: 0px !important;
  background-image: none;
}
.btn-group-days > .btn-success:hover,
.btn-group-days > .btn-success:focus {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-group-days > .btn-success:active,
.btn-group-days > .btn-success.active {
  color: #ffffff;
  background-color: var(--app-bg-color);
  border-color: var(--app-border-color);
}
.btn-group-days-display > .btn-success-list {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-group-days-display > .btn-success-list.active {
  color: #ffffff;
  background-color: var(--app-bg-color);
  border-color: var(--app-border-color);
}
.btn-group-days-display > .btn,
.btn-group-days-display > .btn.disabled,
.btn-group-days-display > .btn[disabled] {
}
.btn-group-days-display > .btn:active {
  box-shadow: 0px 0px 0px !important;
}
.btn-group-days-display > .btn:hover,
.btn-group-days-display > .btn:focus,
.btn-group-days-display > .btn:active,
.btn-group-days-display > .btn.active {
}
.btn-group-days-display > .btn {
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
/* toggle switch radio end */

/* dark popover theme start */
/* Dark theme for Bootstrap 3 popover */
.popover.popover-dark {
  background-color: #1e1e2f;
  color: #ffffff;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.popover.popover-dark .popover-title {
  background-color: #2c2c3a;
  color: #ffffff;
  border-bottom: 1px solid #444;
}

.popover.popover-dark .popover-content {
  color: #e0e0e0;
}

/* Dark arrow adjustments for all directions */
.popover.popover-dark.top .arrow:after {
  border-top-color: #1e1e2f;
}
.popover.popover-dark.right .arrow:after {
  border-right-color: #1e1e2f;
}
.popover.popover-dark.bottom .arrow:after {
  border-bottom-color: #1e1e2f;
}
.popover.popover-dark.left .arrow:after {
  border-left-color: #1e1e2f;
}

/* dark popover theme end */

.bg-app {
  color: #fff !important;
  background-color: var(--app-bg-color) !important;
}
.text-white {
  color: #fff !important;
}
.app-theme {
  background-color: #605ca8 !important;
  color: #fff !important;
}
.primary-theme {
  background-color: #3c8dbc !important;
  color: #fff !important;
}
.secondary-theme {
  background-color: #f39c12 !important;
  color: #fff !important;
}
.warning-theme {
  background-color: #f56954 !important;
  color: #fff !important;
}
.success-theme {
  background-color: #00a65a !important;
  color: #fff !important;
}
.info-theme {
  background-color: #00c0ef !important;
  color: #fff !important;
}
/* toggle switch radio start */
.table .fixed-header th {
    position: sticky;
    top: 0;
    background-color: #f5f5f5;
    z-index: 1;
}
.bs-success{
    border-left: 3px solid green
}
.bs-danger{
    border-left: 3px solid red
}