/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-message {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  list-style: none;
  font-feature-settings: 'tnum';
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 1010;
  width: 100%;
  pointer-events: none;
}
.ant-message-notice {
  padding: 8px;
  text-align: center;
}
.ant-message-notice:first-child {
  margin-top: -8px;
}
.ant-message-notice-content {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  pointer-events: all;
}
.ant-message-success .anticon {
  color: #52c41a;
}
.ant-message-error .anticon {
  color: #ff4d4f;
}
.ant-message-warning .anticon {
  color: #faad14;
}
.ant-message-info .anticon,
.ant-message-loading .anticon {
  color: #242e52;
}
.ant-message .anticon {
  position: relative;
  top: 1px;
  margin-right: 8px;
  font-size: 16px;
}
.ant-message-notice.move-up-leave.move-up-leave-active {
  animation-name: MessageMoveOut;
  animation-duration: 0.3s;
}
@keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
.ant-message-rtl {
  direction: rtl;
}
.ant-message-rtl span {
  direction: rtl;
}
.ant-message-rtl .anticon {
  margin-right: 0;
  margin-left: 8px;
}

:root {
   --main-bg-color: #242e52;
   --main-dark-bg-color: #1a2241;
   --main-light-bg-color: #0f2164;
   --color-white: #fff;
}

body {
   font-family: "Helvetica Neue", Helvetica, "HelveticaNeue-Light",
      "Helvetica Neue Light", Arial, "Lucida Grande", sans-serif;
   padding: 0px;
   margin: 0px;
   overflow-x: hidden;
}
.line-clamp {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
}
.d-flex {
   display: flex;
}
ul {
   padding: 0px;
   margin: 0px;
   list-style: none;
}
.pre-line {
   white-space: pre-line;
}
/* style Autocomplete Map */
.pac-item {
   padding: 10px;
   font-size: 16px;
   cursor: pointer;
}
.pac-icon {
   display: none;
}
.pac-item:hover {
   background-color: #ececec;
}
.pac-item-query {
   font-size: 16px;
}

/* ANIMATION */
.blink_me {
   animation: blinker 4s linear infinite;
}

.pac-container {
   z-index: 9999;
}

.blob {
   box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
   transform: scale(1);
   animation: pulse-black 2.5s infinite;
}

@keyframes pulse-black {
   0% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
   }

   70% {
      box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
   }

   100% {
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
   }
}

/* CSS Print Bill */
@keyframes blinker {
   50% {
      opacity: 0;
   }
}
@media print {
   .print_bill_wp {
      width: 300px;
      padding: 50px 15px 15px 15px;
      margin: 0 auto;
      background-color: #fff;
      font-size: 10px;
   }
   .print_bill_wp .asap {
      background-color: #f44336;
      color: #fff;
      padding: 5px 7px;
      border-radius: 3px;
      font-weight: 600;
      font-size: 16px;
      line-height: 1;
   }
   .print_bill_wp .invoice-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
   }
   .print_bill_wp .tableName {
      font-size: 18px;
      margin-bottom: 0;
      margin-bottom: 0;
      line-height: 1;
   }
   .print_bill_wp h3.pull-right {
      font-size: 15px !important;
      margin-bottom: 0;
   }
   .print_bill_wp .panel-title strong {
      font-size: 15px !important;
   }
   .print_bill_wp .invoice-title img.logobill {
      max-width: 55%;
      height: 50px;
      margin-top: 10px;
      margin-bottom: 15px;
   }
   .print_bill_wp button {
      display: none;
   }

   .print_bill_wp strong {
      white-space: nowrap;
      padding-right: 10px;
   }
   .print_bill_wp p {
      font-size: 12px;
   }
   .print_bill_wp tbody.listItem tr td.total strong {
      font-size: 20px;
   }
   .print_bill_wp .row_item .column address {
      display: flex;
      margin-bottom: 5px;
   }
   .print_bill_wp .row_item .column address p {
      margin: 0px;
   }
   .print_bill_wp .btn_wp {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: 10px;
   }
   .print_bill_wp .btn_wp button {
      cursor: pointer;
      color: #000;
      padding: 5px 20px;
      background-color: #cacaca;
      border: none;
      border-radius: 10px;
   }
   .print_bill_wp .btn_wp button:first-child {
      margin-right: 10px;
   }
   .print_bill_wp table {
      width: 100%;
   }
   .print_bill_wp table thead tr td strong {
      font-size: 12px;
   }
   .print_bill_wp table tbody.listItem tr td {
      font-size: 10px !important;
   }
   .print_bill_wp table tbody.listItem tr td.total strong {
      font-size: 13px;
   }
   .print_bill_wp p,
   .print_bill_wp address {
      margin-bottom: 5px;
   }
   .print_bill_wp .sub-heading {
      font-size: 22px;
   }
   .print_bill_wp .ft {
      margin-top: 15px;
      display: block;
   }
   .print_bill_wp .ft p {
      margin: 0px 0px 2px 0px;
      font-size: 8px;
   }
}

.wrapper-sidebar-menu {
   height: calc(100vh - 47px);
   overflow: auto;
}
.wrapper-sidebar-menu .ant-layout-sider,
.wrapper-sidebar-menu {
   background-color: #1a2241 !important;
}
.wrapper-sidebar-menu .logo svg {
   color: white;
   font-size: 35px;
}
.wrapper-sidebar-menu .logo {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #1a2241;
}
.wrapper-sidebar-menu .logo a {
   color: white;
   font-size: 22px;
   text-shadow: 2px 2px 4px #0000003b;
}

.wrapper-custom-sidebar,
.wrapper-custom-sidebar .ant-menu-sub {
   background-color: #1a2241 !important;
}

.wrapper-custom-sidebar .active-menu,
.wrapper-custom-sidebar .active-menu:hover {
   background-color: #283156;
}
.wrapper-custom-sidebar .active-menu .active-sub-menu {
   background-color: #283156;
}
.wrapper-custom-sidebar .active-menu > a {
   color: #fff !important;
}

.pre-line-select-option .ant-select-item-option-content {
   white-space: pre-line !important;
}

.search-box-clone {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: -1;
}

.err-voucher-card {
   min-width: 120px;
   text-align: right;
   margin: 0 16px;
   font-weight: bold;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


