/* @import url("https://fonts.googleapis.com/css?family=Lato:400,700"); */
:root {
  /* #F85914 main color
#000000 secundary color */
  /*
--color-01:#a63e0f;
--color-0: #cc4f10;
--color-1: #F85914;
--color-2: #f8814c;
--color-3: #f88351;
--color-4: #f89466;
--color-5: #f8d0bb;
--color-6: #f8e8dd;
*/
  --color-01: #a63e0f;
  --color-0: #cc4f10;
  --color-1: #f85914;
  --primaryColor: #f85914;
  --color-2: #f96829;
  --color-3: #f9773f;
  --color-4: #fa8654;
  --color-5: #fb9569;
  --color-6: #fba47f;
  --color-7: #ffbc9f; /*#fcb494;*/
  --color-8: #fcc3aa;
  --color-9: #ffd0bb;
  --color-a: #fee1d4;
  --color-dd: #ffe8dd;
  --color-b: #FFEEE3;
  --color-c: #FFF1E8;
  --color-cdd: #cdd;
  
  --bgBarColor: #f7f7f7;
  --mainTotal: #f7f7f7;
  --NoFilter: #8b9bbf;
  --labelColor: grey;
  --mainBlack: #222;

  --yellowBar: #fbe0c0;
  --greenLight: #e7ffe8;
  --redLight: #ffeaea;

  --contentBg: rgb(255, 254, 250);
  --mainTransition: all 0.3s linear;
  --bgLeftBar: #abbecb;
  --danger: rgb(171, 94, 94);

  --mainSpacing: 0.1rem;
  --radius: 1rem;
  --loginTop: 32px;
  --barHeight: 64px;
  --editHeight: 40px;
  --lineHeight: 36px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Graphik", sans-serif;
  font-size: 14px;
  color: var(--mainBlack);
}
.foot-dlg {
  height: 60px;
  padding: 5px;
  width: 100%;
  display: flex;
  align-items: right;
  background: var(--color-dd);
  z-index: 4;
}
.services {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--color-c) !important;
  padding: 2rem 0;
}
.header {
  height: 50px;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-top: 2px solid lightgrey;
  border-bottom: 2px solid lightgrey;
  transition: var(--mainTransition);
}
/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  transition: var(--mainTransition);
}
.content {
  padding: 0px;
}
.cell-total {
  font-weight: 600;
  vertical-align: middle !important;
}
.cell-total .table_label_mobile {
  font-weight: 400;
}
/* for horizontal radio buttons */
.d-flex {
  display: flex !important;
}
.d-flex > .form-check {
  margin-right: 20px;
}
.fx-tr-header {
  background-color: white;
  color: rgb(83, 83, 83);
  border-top: 3px solid white;
  font-size: 1.1rem;
}
.bg-table-hd {
  background: #cefffc;
}
.bg-bar {
  background: whitesmoke;
}
.bg-lightgrey {
  background: lightgrey;
}
.bg-whitesmoke {
  background: whitesmoke;
}
.bg-green {
  background: var(--greenLight);
}
.bg-yellow {
  background: #ffc107;
}
.color-lightgreen {
  color: var(--greenLight);
}
.color-green {
  color: green;
}
.color-grey {
  color: grey;
}
.color-ccc {
  color: #ccc;
}
.color-ddd {
  color: #ddd;
}
.bg-edit-yellow {
  background: darksalmon;
}
.bg-edit {
  background: var(--yellowBar);
}
.bg-green-head {
  background-color: rgba(178, 255, 244, 0.6);
}
.status_green {
  border: 2px solid #4caf50;
}
.status_green b {
  color: #4caf50;
  font-weight: 500;
}
.status_red {
  border: 2px solid #f44336;
}
.status_red b {
  color: #f44336;
  font-weight: 500;
}
.status_yellow {
  border: 2px solid #ffc107;
}
.status_yellow b {
  color: #ffc107;
  font-weight: 500;
}
.bg-title {
  font-size: 1.3rem;
  padding: 0.2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0.4rem;
  border-radius: 2rem;
  background: whitesmoke;
}

.totals {
  background: var(--mainTotal);
}

tr.spaceUnder > td {
  padding: 10px;
  align-items: flex-end;
}
.padding td {
  vertical-align: middle;
  padding: 10px;
}
.th-table {
  background-color: #007bff;
  color: white;
}
.grid-box {
  border: 1px solid grey;
}

.bg-content {
  background: var(--contentBg);
}
.container {
  align-items: center;
  justify-content: center;
  width: 100%;
  background: yellow;
}
.doc-header {
  font-size: 1.2rem;
}

.CheckForm {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/images/check2.png") top left no-repeat;
}
.UnCheckForm {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/images/uncheck2.png") top left no-repeat;
}
.great-icon {
  font-size: 2.5rem;
  width: 40px;
  color: black;
}
.big-icon {
  font-size: 1.5rem;
  width: 30px;
  color: black;
}
.big-icon-green {
  font-size: 1.5rem;
  width: 30px;
  color: green;
}
.big-icon-orange {
  font-size: 1.8rem;
  width: 30px;
  color: #ff6624;
}
.big-icon-red {
  font-size: 1.5rem;
  width: 30px;
  color: #ff6624;
}
.big-icon-blue {
  font-size: 1.5rem;
  width: 30px;
  color: #3d6d8d;
}
.green-circle {
  color: white;
  padding: 5px 0 0 0;
  border-radius: 50%;
  margin: auto;
  width: 1.9rem;
  height: 1.9rem;
  background: green;
}

.round-spot {
  border-radius: 50%;
  margin: auto;
  padding-top: 0.2rem;
  width: 2.3rem;
  height: 2.3rem;
  /*width:1.9rem;
height:1.9rem; */
  /* background: grey; */
}
.round-spot-1 {
  border-radius: 50%;
  width: 2.42rem;
  height: 2.42rem;
  background: lightgrey;
}
.round-spot:hover,
.round-spot-0:hover {
  background: lightgrey;
}
.round-spot-1:hover {
  background: var(--color-b);
}
.tb-check-icon {
  /* font-size: 1.5rem; BBI */
  margin-top: 0.35rem;
  font-size: 1.2rem;
  cursor: pointer;
}

#notes {
  margin-top: 0px;
  transition: var(--mainTransition);
}
/* #notes:hover{ */
.notes-hover {
  display: none;
  bottom: 0px;
  transform: translateY(-100%);
}
.green-box {
  border: 3px solid rgb(96, 96, 221);
  padding: 3px;
  padding-left: 13px;
  background: rgb(95, 192, 95);
  color: black;
}
.red-box {
  padding: 3px;
  padding-left: 13px;
  border: 3px solid blue;
  background: red;
  color: white;
}
.plus-border {
  border: 3px solid blue;
}

.tb-border {
  border: 1px solid lightgrey;
}

/* =================== End of Back-office =============== */
/* ------------------- MENU ----------------------------- */
.flex-box {
  display: flex;
  flex-direction: column; /* or:   flex-flow: column wrap; */
}
.flex-fill {
  /* Add this class to the element you want to expand */
  flex: 1;
}
.menu-overlay,
.modal-overlay {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  transition: all 0.2s linear;
}
.dlg-overlay {
  visibility: hidden;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 200;
  transition: all 0.2s linear;
}
.dlg-base {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 200;
}
.dlg-rack {
  display: none;
  position: fixed;
  top: 80px;
  left: calc(50% - 280px);
  width: calc(100% - 560px);
  max-width: 560px;
  max-height: calc(100% - 80px);
  /* top: 80px;
left: 100px;
width: 400px;
height: 300px; */
  background: rgba(0, 0, 0, 0.2);
  z-index: 200;
}
.modal-rack-2 {
  /* display: none; */
  visibility: hidden;
  position: fixed;
  top: 80px;
  left: 100px;
  width: 400px;
  height: 300px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 202;
}

.z1000 {
  z-index: 1000;
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-4);
  padding: 1.5rem;
  transition: var(--mainTransition);
  transform: translateX(-100%);
  z-index: 3;
}
.menu-modal {
  position: relative;
  top: 60px;
  left: calc(50% - 580px);
  width: calc(100% - 40px);
  max-width: 1160px;
  max-height: calc(100% - 60px);
  background: #fff;
  padding: 12px;
  overflow-y: auto;
}
.modal-rack {
  display: none;
  position: fixed;
  /* position: relative; */
  top: 80px;
  left: calc(50% - 280px);
  width: calc(100% - 560px);
  max-width: 560px;
  max-height: calc(100% - 80px);
  background: #fff;
  padding: 12px;
  z-index: 10;
  /* overflow-y: auto; */
}
.dlg-modal {
  position: relative;
  top: 60px;
  left: calc(50% - 280px);
  max-width: 560px;
  max-height: calc(100% - 80px);
  background: #fff;
  padding: 8px;
  overflow-y: auto;
}
.menu-modal-close {
  position: fixed;
  top: 60px;
  right: calc(50% - 620px);
  cursor: pointer;
}
.menu-modal-close svg {
  fill: #fff;
  width: 30px;
  height: 30px;
  padding: 5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.update-box {
  padding: 1rem;
  border: 1px solid var(--color-3);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.05),
    0 6px 20px 0 rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.update-box-2 {
  border: 1px solid var(--color-3);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.1),
    0 6px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.update-box-3 {
  border: 1px solid var(--color-3);
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.svg-green {
  fill: green;
  width: 30px;
  height: 30px;
  /* padding: 5px; */
  /* border: 3px solid green; */
  cursor: pointer;
}
.pointer {
  cursor: pointer;
}

.showMenu {
  transform: translateX(0);
}
.visible-yes {
  visibility: visible;
  opacity: 1;
}
.visible-no {
  visibility: hidden;
  opacity: 0;
}
.close-modal {
  font-size: 1.7rem;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
}
.a-center {
  margin: auto;
}
.menu h2 {
  text-transform: capitalize;
  text-align: center;
  letter-spacing: var(--mainSpacing);
  margin-bottom: 2rem;
}
/*---------- End of Menu (Based on Cart) ---------- */
/* ------------------------- New injection ----------------- Dashboard*/
.products {
  padding: 4rem 0;
}
.product-2 {
  padding: 7px;
  margin: 15px;
  border-radius: 10px;
}
.product {
  padding: 7px;
  padding-left: 20px;
  margin: 20px;
  background-color: whitesmoke;
  border-radius: 10px;
}
.product-3 {
  padding: 5px;
  padding-left: 15px;
  padding-bottom: 10px;
  margin: 15px;
  border-radius: 8px;
}
.product-3 h3 {
  margin-top: 0.5rem;
  letter-spacing: var(--mainSpacing);
  text-align: left;
}
.product-3 h4 {
  margin-top: 0.5rem;
  letter-spacing: var(--mainSpacing);
  color: var(--primaryColor);
  text-align: left;
}
.img-container {
  position: relative;
  overflow: hidden;
}

.product-img {
  display: block;
  width: 100%;
  min-height: 12rem;
  transition: var(--mainTransition);
}
.dashboard {
  background-color: rgb(200, 255, 255);
}
.bg-dashboard {
  background-color: rgba(255, 250, 250);
}

#spinner {
  position: fixed;
  top: calc(50vh - 105px);
  left: calc(50vw - 105px);
}
.frame-rounded {
  text-align: center;
  padding: 12px 18px;
  border-radius: 2rem;
}
/* =============== */
.grid {
  display: grid;
}

.items {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
  grid-gap: 20px;
}

.items div:nth-child(2) {
  grid-column: 2 / 4;
}

.items div:nth-child(3) {
  grid-column: 1 / 3;
}

.items div:nth-child(4) {
  grid-column: 3;
  grid-row: 2 / 4;
}

.item {
  align-items: center;
  justify-items: center;
  background-color: brown;
  color: #fff;
  font-size: 25px;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Start Modal windows ===================== */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
.modal-body {
  padding: 2px 16px;
}
.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: white;
  padding: 1rem 0;
}
.footer img {
  height: 30px;
  margin-bottom: 0.75rem;
}
.footer div {
  text-align: center;
  font-size: 0.8rem;
  padding: 0 1rem;
}

/* End Modal windows */

/* [========================= Start Payment block ================] */
.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}
.col-25,
.col-50,
.col-75 {
  padding: 0 16px;
}
.icon-container {
  margin-bottom: 8px;
  padding: 4px 0;
  font-size: 24px;
}
span.price {
  float: right;
  color: grey;
}

/*----------------------------------------------------------------------------
/*--------------------------NEW DESIGN----------------------------------------
/*--------------------------------------------------------------------------*/
@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Thin.eot");
  src:
    local("Graphik Thin"),
    local("Graphik-Thin"),
    url("/fonts/Graphik/Graphik-Thin.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Thin.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Thin.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-ThinItalic.eot");
  src:
    local("Graphik Thin Italic"),
    local("Graphik-ThinItalic"),
    url("/fonts/Graphik/Graphik-ThinItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-ThinItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-ThinItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Graphik Super";
  src: url("/fonts/Graphik/Graphik-SuperItalic.eot");
  src:
    local("Graphik Super Italic"),
    local("Graphik-SuperItalic"),
    url("/fonts/Graphik/Graphik-SuperItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-SuperItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-SuperItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-SuperItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Medium.eot");
  src:
    local("Graphik Medium"),
    local("Graphik-Medium"),
    url("/fonts/Graphik/Graphik-Medium.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Medium.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Medium.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Black.eot");
  src:
    local("Graphik Black"),
    local("Graphik-Black"),
    url("/fonts/Graphik/Graphik-Black.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Black.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Black.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Semibold.eot");
  src:
    local("Graphik Semibold"),
    local("Graphik-Semibold"),
    url("/fonts/Graphik/Graphik-Semibold.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Semibold.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Semibold.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Graphik Super";
  src: url("/fonts/Graphik/Graphik-Super.eot");
  src:
    local("Graphik Super"),
    local("Graphik-Super"),
    url("/fonts/Graphik/Graphik-Super.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Super.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Super.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Super.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-ExtralightItalic.eot");
  src:
    local("Graphik Extralight Italic"),
    local("Graphik-ExtralightItalic"),
    url("/fonts/Graphik/Graphik-ExtralightItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-ExtralightItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-ExtralightItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-ExtralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-BlackItalic.eot");
  src:
    local("Graphik Black Italic"),
    local("Graphik-BlackItalic"),
    url("/fonts/Graphik/Graphik-BlackItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-BlackItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-BlackItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-RegularItalic.eot");
  src:
    local("Graphik Regular Italic"),
    local("Graphik-RegularItalic"),
    url("/fonts/Graphik/Graphik-RegularItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-RegularItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-RegularItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-RegularItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Light.eot");
  src:
    local("Graphik Light"),
    local("Graphik-Light"),
    url("/fonts/Graphik/Graphik-Light.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Light.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Light.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Bold.eot");
  src:
    local("Graphik Bold"),
    local("Graphik-Bold"),
    url("/fonts/Graphik/Graphik-Bold.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Bold.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Bold.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Regular.eot");
  src:
    local("Graphik Regular"),
    local("Graphik-Regular"),
    url("/fonts/Graphik/Graphik-Regular.eot?#iefix") format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Regular.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Regular.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-BoldItalic.eot");
  src:
    local("Graphik Bold Italic"),
    local("Graphik-BoldItalic"),
    url("/fonts/Graphik/Graphik-BoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-BoldItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-BoldItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-SemiboldItalic.eot");
  src:
    local("Graphik Semibold Italic"),
    local("Graphik-SemiboldItalic"),
    url("/fonts/Graphik/Graphik-SemiboldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-SemiboldItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-SemiboldItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-LightItalic.eot");
  src:
    local("Graphik Light Italic"),
    local("Graphik-LightItalic"),
    url("/fonts/Graphik/Graphik-LightItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-LightItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-LightItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-Extralight.eot");
  src:
    local("Graphik Extralight"),
    local("Graphik-Extralight"),
    url("/fonts/Graphik/Graphik-Extralight.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-Extralight.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-Extralight.woff") format("woff"),
    url("/fonts/Graphik/Graphik-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url("/fonts/Graphik/Graphik-MediumItalic.eot");
  src:
    local("Graphik Medium Italic"),
    local("Graphik-MediumItalic"),
    url("/fonts/Graphik/Graphik-MediumItalic.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/Graphik/Graphik-MediumItalic.woff2") format("woff2"),
    url("/fonts/Graphik/Graphik-MediumItalic.woff") format("woff"),
    url("/fonts/Graphik/Graphik-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
a {
  text-decoration: none;
  font-size: 16px;
  color: #464646;
  transition: all 0.2s linear;
}
a.row-href {
  font-size: 14px;
  color: #1f00ac;
  transition: all 0.2s linear;
}
/* a:hover{ color: #ee3e34; } */
h1 {
  font-size: 34px;
  font-weight: 400;
}
h2 {
  font-size: 28px;
  font-weight: 400;
}
h3 {
  font-size: 24px;
  font-weight: 400;
}
h4 {
  font-size: 20px;
  font-weight: 400;
}
.back_link {
  padding: 10px 20px 10px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.back_link:hover {
  color: #000;
  text-decoration: none;
}
.back_link svg {
  width: 40px;
  height: 20px;
  fill: #464646;
}
.table-container {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); */
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
  overflow-x: auto;
}
table {
  border: 1px solid #dbd9d2;
  border-collapse: collapse;
  text-align: center;
  max-width: 100%;
  width: 100%;
  /* table-layout: fixed; */
}
.th-small {
  font-size: 10px !important;
}
table.fully_mobile th {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-9);
  vertical-align: middle;
  padding: 12px 12px !important;
  background-color: var(--color-9);
}
table.fully_mobile td {
  border-top: 1px solid rgb(221, 188, 170);
  vertical-align: middle;
  padding: 8px 8px !important;
}
table.fully_mobile tr:nth-child(2n) {
  background-color: var(--color-b);
}
table.fully_mobile tr:hover {
  background-color: #edfefe;
}
table.fully_mobile tr {
  transition: all 0.2s linear;
}

.full_width {
  width: 100%;
  display: block;
}
table.full_width {
  width: 100%;
  display: table;
}
table.fully_mobile td {
  word-break: break-word;
}
.table_label_mobile {
  display: none;
}
.table_label_mobile {
  height: 100%;
  text-align: left;
  left: 0;
  top: 0;
  width: 110px;
  min-width: 110px;
  padding: 0 10px 0 0;
  color: var(--labelColor);
}
/* .horizontal_table{ } */
.horizontal_table,
.horizontal_table tbody,
.horizontal_table tr {
  display: block !important;
}
.horizontal_table td {
  display: block;
  position: relative;
  padding: 10px 0 10px 120px !important;
  text-align: left;
  min-height: 37px;
  border: none;
  border-bottom: 1px solid #ffd5b2;
}
.horizontal_table .table_label_mobile {
  display: block;
}

.dlg-modal select {
  border: none;
  overflow-y: hidden;
}
.dlg-modal select:focus {
  border: none;
  overflow-y: hidden;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"],
select.form-control {
  /* padding: 0 20px; BBI */
  padding: 0 12px;
  /* line-height: 40px; BBI */
  line-height: 36px;
  /* border: 2px solid var(--color-3); */
  border: 1px solid var(--color-5);
  border-radius: 4px;
  transition: all 0.2s linear;
  max-width: 380px;
  /* height: 44px; BBI */
  height: var(--editHeight);
  font-size: inherit;
  color: #464646;
}

input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
  /* outline: none; */
  /* box-shadow: none; */
  /* border: 3px solid var(--color-0); */
  /* box-shadow: 0px 0px 5px 1px var(--color-01); */
  border: 1px solid var(--primaryColor);
  box-shadow: 0px 0px 5px 1px orange;
  -webkit-box-shadow: 0px 0px 5px 1px orange;
  -moz-box-shadow: 0px 0px 5px 1px orange;
  color: #464646;
  transition: all 0.2s linear;
}
textarea.form-control {
  border: 2px solid var(--color-3);
  border-radius: 4px;
}
/* .select2-container {
  max-width: 380px;
  width: 100% !important;
} */
.select2-container--default .select2-selection--single {
  border: 1px solid var(--color-3);
  border-radius: 4px;
  height: var(--editHeight);
}
.select2-container--default .select2-selection--multiple {
  border: 1px solid var(--color-3);
  border-radius: 4px;
  min-height: var(--editHeight);
}
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 2px solid #000;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered:focus,
.select2-container--default .select2-selection--single:focus {
  outline: none !important;
}
.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered,
.select2-container--default
  .select2-selection--multiple
  .select2-selection__rendered {
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 6px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 42px;
}
.inline_select + .select2-container {
  width: auto !important;
  margin: 0 10px;
}
.inline_select
  + .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 30px;
  padding-top: 0;
}
.inline_select
  + .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  height: 30px;
}
.inline_select + .select2-container .select2-selection--single {
  height: 30px;
}
.input_row,
.form-group {
  margin-bottom: 20px;
  /* max-width: 380px; */
}
.no-margin-b {
  margin-bottom: 0px;
}
.input_row label,
.form-group label {
  margin-bottom: 5px;
  color: var(--labelColor);
  width: 100%;
  text-align: left;
}
.custom_checkbox_label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.custom_checkbox_label input[type="checkbox"] {
  display: none;
}
.custom_checkbox_label .check {
  position: relative;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #464646;
  display: inline-block;
  border-radius: 4px;
  margin-right: 15px;
}
.custom_checkbox_label input[type="checkbox"]:checked + .check:before {
  content: "✓";
  position: absolute;
  /* left: 2px; */
  left: 0px;
  /* top: -8px; */
  top: -5px;
  width: 20px;
  height: 20px;
  display: block;
  font-weight: 600;
  /* font-size: 26px; */
  font-size: 18px;
  border-radius: 4px;
  line-height: 30px;
}
#company_general .form-check {
  padding-left: 0;
}
.form-check input[type="checkbox"] {
  display: none;
}
.form-check label {
  margin-bottom: 0.5rem;
  color: #464646;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 10px 30px;
}
.form-check label:before {
  position: absolute;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #464646;
  display: inline-block;
  border-radius: 4px;
  margin-right: 15px;
}
.form-check input[type="checkbox"]:checked + label:after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -8px;
  width: 20px;
  height: 20px;
  display: block;
  font-weight: 600;
  font-size: 26px;
  border-radius: 4px;
  line-height: 30px;
}
.btn {
  background: var(--primaryColor);
  /* border: 2px solid var(--color-3); */
  border: 2px solid var(--color-3);
  color: #fff;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-box-shadow:
    0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow:
    0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  font-size: 14px;
  display: inline-block;
}
.drp-buttons .btn {
  line-height: 20px;
}
.btn:hover {
  background: var(--color-0);
  -webkit-box-shadow:
    0 5px 11px 0 rgba(0, 0, 0, 0.18),
    0 4px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow:
    0 5px 11px 0 rgba(0, 0, 0, 0.18),
    0 4px 15px 0 rgba(0, 0, 0, 0.15);
  color: #fff;
}
.btn:hover svg {
  fill: #fff;
}
.btn.green_btn {
  background: #2bbbad;
  border: 2px solid #2bbbad;
}
.btn.copy-dn {
  color: #555555;
  background: none;
  border: 2px solid var(--color-3);
  box-shadow: none;
  height: var(--editHeight);
}
.btn.copy-dn:focus {
  box-shadow: none;
}
.green_btn.transparent_btn {
  background: none;
  color: #2bbbad;
}
.green_btn.transparent_btn svg {
  fill: #2bbbad;
  height: 20px;
  width: 20px;
  opacity: 0.6;
  margin: -3px -15px 0 5px;
}
.btn.green_btn:hover svg {
  fill: #fff;
}
.green_btn.transparent_btn:hover svg {
  fill: #2bbbad;
}
header {
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 0 0 auto;
  border-bottom: 1px solid var(--color-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /* height: 80px; BBI */
  height: var(--barHeight);
  position: fixed;
  background-color: var(--bgBarColor);
  width: 100%;
  z-index: 100;
}
.logo {
  width: auto;
  height: 55px;
  display: inline-block;
  margin: 0 20px 0 0;
}
.invoila {
  width: auto;
  height: 55px;
  display: inline-block;
  margin: 0 20px 0 0;
}
header .menu_wrap {
  display: contents;
}
header .menu_wrap .wrap {
  height: var(--barHeight);
}
header #header_menu {
  display: flex;
  height: 100%;
  margin: 0;
  align-items: center;
  list-style: none;
  padding: 0;
}
header #header_menu li.menu_item {
  /* margin: 0 10px; */
  margin: 0 10px;
  position: relative;
  height: 100%;
  line-height: var(--barHeight);
}
header #header_menu li.menu_item a {
  color: #464646;
}
header #header_menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}
header #header_menu .menu_item > a {
  transition: all 0.2s linear;
}
header #header_menu .menu_item > a {
  /* padding: 15px 15px; */
  padding: 12px 20px;
}
header #header_menu .menu_item > a:hover {
  /* background: #dedede; */
  background: var(--color-9);
  border-radius: 2rem;
}
header #header_menu .menu_item > a.current_item {
  border: 2px solid var(--color-3);
  border-radius: 25px;
}
header .header_link {
  margin: 0 0 0 30px;
  font-size: 16px;
  font-weight: 400;
}
header .navbar_right {
  display: flex;
  align-items: center;
}
header .navbar_right .dropdown_toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0 20px;
  height: var(--barHeight);
  position: relative;
}
header .navbar_right .dropdown_toggle.user_dropdown_toggle {
  margin: 0 0;
}
header .navbar_right .toggle_user_dropdown {
  display: flex;
  align-items: center;
  /* max-width: 180px; BBI */
  margin: 0 20px;
}
header .navbar_right .toggle_user_dropdown:hover {
  text-decoration: none;
  color: #464646;
}
header .navbar_right .photo {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 50%;
  text-align: center;
  margin: 0 10px 0 0;
  /* background: #ee3e34; */
  background: #dedede;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 18px;
  line-height: 48px;
  position: relative;
}
header .navbar_right .photo > div {
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  z-index: -1;
  left: -20px;
  top: -20px;
  filter: blur(10px);
}
/* header .navbar_right .name{
width: 120px;
} BBI */
.business-name {
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 1rem;
  margin-right: 2rem;
}
header .navbar_right .arrow_down {
  fill: #000;
  width: 15px;
  height: 10px;
  margin-left: 5px;
}
header .navbar_right .icon {
  fill: var(--labelColor);
  height: 30px;
  width: 35px;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.2s linear;
}
.help_icon {
  fill: var(--labelColor);
  height: 25px;
  width: 30px;
  /* margin: 0 25px; */
  cursor: pointer;
  transition: all 0.2s linear;
}
.help_icon:hover {
  fill: green;
  -webkit-animation: ease-in-out 3s linear infinite;
  -moz-animation: ease-in-out 3s linear infinite;
  animation: ease-in-out 3s linear infinite;
}

.notifications_icon_wrap {
  position: relative;
}
.notifications_icon_wrap .counter {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  color: #fff;
  /* line-height: 18px; */
  line-height: 20px;
  font-size: 13px;
  font-weight: 600;
  top: -8px;
  right: -2px;
  background: #f00;
}
header .navbar_right .icon:hover {
  fill: #515151;
}
header .navbar_right .icon.settings_icon:hover {
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.dropdown {
  position: absolute;
  perspective: 70px;
  top: calc(100% - 5px);
  /* top: 100%; */
  right: 0;
}
header .dropdown {
  visibility: hidden;
}
header .dropdown_toggle:hover .dropdown {
  visibility: visible;
}
.dropdown .dropdown_inner_wrap {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9, 0.85) rotateX(-10deg);
  border-radius: 4px;
  padding: 0.4rem 0rem;
}
.notifications_dropdown_toggle .dropdown .dropdown_inner_wrap {
  transform: scale(0.9, 0.85) rotateX(-4deg);
}
.notifications_dropdown_toggle .dropdown_list_item a {
  font-size: inherit;
  color: #007bff;
}
header .dropdown_toggle .dropdown .dropdown_inner_wrap {
  display: flex;
  flex-direction: column;
  background: #fff;
  /* padding: 0; */
  border: 1px solid var(--color-3);
}
header .dropdown_toggle:hover .dropdown .dropdown_inner_wrap {
  transform: scale(1) rotateX(0);
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
  visibility: visible;
  opacity: 1;
}
.dropdown_inner_wrap:before {
  content: "";
  background: #fff;
  border-left: 1px solid var(--color-3);
  border-bottom: 1px solid var(--color-3);
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: -6px;
  right: 20px;
  transform: rotate(135deg);
}
.dropdown .dropdown_list_item {
  display: flex;
  align-items: center;
  padding: 14px 27px 14px 20px;
  border-bottom: 1px solid #ededed;
  line-height: 1.5;
  transition: all linear 0.2s;
  text-decoration: none;
}
.dropdown .dropdown_list_item:hover {
  background: var(--color-dd);
  color: #464646;
  /* 18/05/2020 Bulat */
  z-index: 2;
}
.dropdown .dropdown_list_item:nth-last-of-type(1) {
  border: none;
}
.dropdown .dropdown_list_item .dropdown_link_icon {
  width: 25px;
  height: 30px;
  margin-right: 10px;
  fill: var(--labelColor);
  transition: all 0.2s linear;
}
.dropdown .dropdown_list_item:hover .dropdown_link_icon {
  fill: #515151;
}
.notifications_dropdown_toggle .dropdown {
  width: 400px;
}
.notifications_dropdown_toggle .dropdown_list_item {
  font-size: 14px;
}
.notifications_dropdown_toggle .dropdown_list_item .icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  min-width: 25px;
  border: 1px solid #000;
  text-align: center;
  line-height: 25px;
  color: #000;
  font-weight: 600;
  margin-left: 0;
}
.main-content {
  flex: 1 0 auto;
  padding: 64px 0 0 0;
}
.main-content.login_page {
  padding: 0;
}
.main-content.login_page .page_wrap {
  max-width: 100%;
  padding-bottom: 40px;
}
.page_wrap {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}
.success_alert {
  position: absolute;
  top: 5px;
  width: 100%;
  background: #cbe8ba;
  text-align: center;
  padding: 10px;
  left: 0;
}
footer {
  /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
  flex: 0 0 auto;
  text-align: center;
  border-top: 1px solid var(--color-3);
  /* padding-top: 30px; BBI */
  padding-top: 15px;
  /* padding-bottom: 20px; BBI */
  padding-bottom: 6px;
  background-color: var(--bgBarColor);
}
footer .logo {
  width: 120px;
  height: 40px;
  display: inline-block;
  /* background: url(../images/fluxplus102-6sm.png) center / contain no-repeat; */
  background: url(../../../../images/qv/quickvoice2.png) center / contain
    no-repeat;
  /* margin-bottom: 15px; BBI */
  margin-bottom: 5px;
}
footer .copyright {
  padding: 0 0 10px 0;
}
.burger-wrap {
  display: none;
}

/*Dashboard*/
.bordered_bottom_date {
  border-bottom: 1px solid var(--color-3);
  padding: 0 40px 0 0;
  display: inline-block;
  position: relative;
  width: 290px;
  height: 40px;
}
.bordered_bottom_date b {
  font-weight: 500;
}
.bordered_bottom_date input.datepicker_range {
  border: none;
  padding: 10px 0;
  line-height: inherit;
  height: auto;
  position: absolute;
  width: 100%;
  background: none;
}
.bordered_bottom_date input.datepicker_range:focus {
  outline: none;
}
input.x-datepicker {
  border: none;
  padding: 10px 0;
  line-height: inherit;
  height: auto;
  position: absolute;
  width: 100%;
  background: none;
}
input.x-datepicker:focus {
  outline: none;
}
.bordered_bottom_date + .round-spot-sort {
  margin-left: -29px !important;
}
.vertical_align_center {
  display: flex;
  align-items: center;
}
.update_icon_link {
  /* display: inline-block; */
  float: left;
  cursor: pointer;
}
.update_icon {
  width: 40px;
  height: 40px;
  fill: var(--labelColor);
  transition: all 0.2s linear;
}
.update_icon:hover {
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
  fill: #515151;
}
.round-spot-sort {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid var(--color-3);
  transition: all 0.2s linear;
  text-align: center;
  cursor: pointer;
}
.round-spot-sort .arrow_down {
  fill: #000;
  width: 15px;
  height: 10px;
  transition: all 0.2s linear;
}
.round-spot-sort .arrow_up {
  fill: #000;
  width: 15px;
  height: 10px;
  transition: all 0.2s linear;
  transform: rotate(180deg);
}
.round-spot-sort:hover {
  background: var(--bgBarColor);
}
.round-spot-sort i:hover {
  color: white;
}
.table_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sort_th > div {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.tabs_wrapper .tabs {
  border-bottom: 2px solid var(--color-3);
  margin-bottom: 20px;
}
.tabs_wrapper .tab {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: var(--labelColor);
  padding: 15px 0;
  margin-right: 25px;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}
.tabs_wrapper .tab:after {
  content: "";
  height: 2px;
  display: block;
  width: 0;
  transition: all 0.2s linear;
  bottom: -2px;
  left: 0;
  position: absolute;
}
.tabs_wrapper .active {
  color: #464646;
}
.tabs_wrapper .active:after {
  background: #464646;
  width: 100%;
}
.tabs_wrapper .tab_svg_icon {
  fill: var(--labelColor);
  height: 30px;
  width: 35px;
  margin: -3px 5px;
  cursor: pointer;
  transition: all 0.2s linear;
}
.tabs_wrapper .tab.active .tab_svg_icon,
.tabs_wrapper .tab_svg_icon:hover {
  -webkit-animation: spin 3s linear infinite;
  -moz-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
  fill: #515151;
}
.accounting_icon {
  border: 1px solid #ee3e34;
  color: #ee3e34;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 16px;
}
.time_tracking_icon {
  border: 1px solid #16956f;
  color: #fff;
  background: #16956f;
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  font-weight: 100;
  font-size: 16px;
}
.tab_item {
  display: none;
  /*overflow: auto;*/
}
.tab_item:first-child {
  display: block;
}
.tab_item h2 {
  margin: 25px 0;
}
.tab_item h3 {
  margin: 20px 0;
}
.cols_wrap:after {
  content: "";
  clear: both;
  display: block;
}
.col_2 {
  width: calc(50% - 15px);
  float: left;
}
.col_2:nth-child(2n + 1) {
  margin-right: 30px;
}

.user_profile_photo {
  height: 90px;
  width: 90px;
  min-width: 70px;
  border-radius: 50%;
  text-align: center;
  margin: 0 30px 0 0;
  background: #ffbdb9;
  color: #451a8a;
  font-size: 22px;
  line-height: 68px;
  float: left;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-3);
}
.user_profile_photo > div {
  position: absolute;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  z-index: -1;
  left: -20px;
  top: -20px;
  filter: blur(10px);
}
.upload_btn_wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}
.upload_btn_wrapper input[type="file"] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.tab_content .custom-file-label {
  padding: 0 20px;
  line-height: 40px;
  border: 2px solid var(--color-3);
  border-radius: 4px;
  transition: all 0.2s linear;
  max-width: 380px;
  height: 38px;
}
.tab_content .custom-file-label::after {
  height: 100%;
  padding: 0 10px;
  line-height: 35px;
}
.btn svg.upload_icon {
  fill: #fff;
  height: 16px;
  width: 16px;
  opacity: 0.6;
  margin: -5px -10px 0 5px;
}
.btn svg.upload_icon {
  fill: #fff;
  height: 16px;
  width: 16px;
  opacity: 0.6;
  margin: -5px -10px 0 5px;
}
.btn svg.add_icon {
  fill: #fff;
  height: 20px;
  width: 20px;
  opacity: 0.6;
  margin: -3px -15px 0 5px;
}
.calculate_btn {
  padding: 0 5px 0 5px;
  font-size: 10px;
}
.btn svg.calculate_icon {
  fill: #555555;
  height: 23px;
  width: 23px;
  opacity: 0.6;
  margin: -8px -2px -8px -6px;
}
.btn svg.update_icon {
  fill: #fff;
  height: 20px;
  width: 20px;
  opacity: 0.6;
  margin: -3px -16px 0 5px;
}
.btn svg.logout_icon {
  fill: #fff;
  height: 20px;
  width: 20px;
  opacity: 0.6;
  margin: -3px -16px 0 5px;
}
.btn svg.link_icon {
  fill: #fff;
  height: 20px;
  width: 20px;
  opacity: 0.6;
  margin: -3px -16px 0 5px;
}
a.pdf_link,
a.extended_link {
  color: #0e53a7;
}
a.pdf_link:hover,
a.extended_link:hover {
  text-decoration: none;
  color: #4284d3;
}
a.pdf_link svg {
  height: 25px;
  width: 25px;
  fill: #0e53a7;
  font-weight: 600;
  transition: all 0.2s linear;
}
a.pdf_link:hover svg {
  fill: #4284d3;
}
.btn:hover svg.update_icon {
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.btn svg.notification_icon {
  fill: #fff;
  height: 22px;
  width: 22px;
  opacity: 0.6;
  margin: -3px -16px 0 5px;
}
.tab_content .custom-file {
  width: calc(100% - 120px);
  max-width: 260px;
  margin: 0; /* 0 10px; */
}
.edit_row_icon svg,
.view_row_icon svg,
.delete_row_icon svg,
.share_row_icon svg,
.download_row_icon svg,
.undo_row_icon svg {
  width: 20px;
  height: 20px;
  margin: 0 5px;
  fill: var(--labelColor);
  transition: all 0.2s linear;
}
.edit_row_icon:hover,
.view_row_icon:hover,
.delete_row_icon:hover,
.share_row_icon:hover,
.download_row_icon:hover,
.undo_row_icon:hover {
  text-decoration: none;
}
.edit_row_icon:hover svg,
.view_row_icon:hover svg,
.delete_row_icon:hover svg,
.share_row_icon:hover svg,
.download_row_icon:hover svg,
.undo_row_icon:hover svg {
  fill: #515151;
}
.nowrap {
  white-space: nowrap;
}
ul.accordion {
  list-style: none;
  padding: 0;
  /* border-top: 1px solid var(--color-3); */
  margin: 40px 0;
}
ul.accordion .inner {
  padding: 30px 20px;
  overflow: hidden;
  display: none;
}
/* ul.accordion .inner.show { display: block; } */
ul.accordion li {
  margin: 0;
  /* border-bottom: 1px solid var(--color-3); */
}
ul.accordion li a.toggle {
  border: 1px solid lightgrey;
  width: 100%;
  /*display: block;*/
  padding: 15px;
  /* border-radius: 0.15em; */
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
}
ul.accordion li a.toggle img {
  max-height: 50px;
  max-width: calc(100% - 75px);
}
ul.accordion li a.toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  border-right: 4px solid var(--color-0);
}
ul.accordion li a.toggle.aktive {
  border-right: 4px solid var(--color-3);
}
ul.accordion .arrow_down {
  width: 25px;
  min-width: 25px;
  height: 25px;
  margin-right: 20px;
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transition: all 0.2s linear;
}
ul.accordion .arrow_down.down {
  transform: rotate(0);
  -ms-transform: rotate(0);
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  -o-transform: rotate(0);
}
.arrow-down-svg {
  height: 0.6rem;
  width: 1.5rem;
}
.fill-icon-orange {
  fill: var(--color-6);
}
.e-case-p {
  padding: 2rem 0rem 2rem 2rem;
}
.e-case-up-dn {
  position: absolute;
  /* left: 3rem; */
  /* bottom: 4rem; */
  left: 0;
  bottom: 0;
  background-color: #8091b0;
  padding: 1rem 3rem;
  width: 100%;
  display: flex; 
  justify-content: space-between;
}
.ul-case-none {
  list-style-type: none;
}
.avatar-img {
  border-radius: 50%;
  object-fit: cover;
  width: 50px;
  height: 50px;
}
.menu-user-name {
  margin-left: 1rem;
  color: #777;
  font-weight: bold;
}
.no-filter {
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  fill: var(--NoFilter);
}
.th-w-actions {
  width: 8%;
  padding: 0.5rem !important;
}
/*datepicker*/
.ui-datepicker-header.ui-widget-header {
  border: 1px solid var(--color-3);
  background: var(--bgBarColor);
  margin-bottom: 2px;
}
.ui-datepicker table {
  border: 1px solid var(--color-3);
  background: var(--bgBarColor);
}
#ui-datepicker-div {
  border: 1px solid var(--color-3);
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #dedede;
  background: #dedede;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  border: 1px solid transparent;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  background: #bcbcbc;
  font-weight: normal;
  color: #212121;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 2px;
}

#transactions_logtime.form-inline,
#user_timerows_5_startdate.form-inline,
#user_timerows_4_startdate.form-inline,
#user_timerows_3_startdate.form-inline,
#user_timerows_2_startdate.form-inline,
#user_timerows_1_startdate.form-inline,
#user_timerows_0_startdate.form-inline,
#transactions_eventtime.form-inline {
  justify-content: space-between;
}
#transactions_logtime.form-inline .form-control,
#user_timerows_5_startdate.form-inline .form-control,
#user_timerows_4_startdate.form-inline .form-control,
#user_timerows_3_startdate.form-inline .form-control,
#user_timerows_2_startdate.form-inline .form-control,
#user_timerows_1_startdate.form-inline .form-control,
#user_timerows_0_startdate.form-inline .form-control,
#transactions_eventtime.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
  padding: 0 0 0 5px;
}

.search-box {
  /* height: 44px; */
  height: 40px;
  font-size: inherit;
  color: #464646;
  padding: 0 10px 0 20px;
  /* line-height: 40px; */
  line-height: 36px;
  border: 1px solid var(--color-3);
  border-radius: 4px;
}
.search-box input {
  border: none;
  height: 36px;
  width: calc(100% - 30px);
}
.search-box input:focus {
  outline: none;
}
.search-box .search_icon {
  width: 25px;
  height: 25px;
  fill: var(--labelColor);
  cursor: pointer;
}
.table_actions {
  align-items: flex-end;
  justify-content: space-between;
}
.table_actions > div {
  display: flex;
  flex-direction: column;
}

.fx-pagination {
  display: inline-block;
  flex-wrap: wrap;
}
.fx-pagination a {
  float: left;
  padding: 8px 0;
  width: 40px;
  text-align: center;
  text-decoration: none;
  color: #464646 !important;
}
.fx-pagination a.all-pgs {
  width: auto;
  padding: 0.5rem 1rem;
  border: 1px solid #aaa;
  border-radius: 3rem;
}
.fx-pagination a.all-pgs:hover {
  border: 1px solid #777;
  /* color: white!important; */
  background-color: var(--color-dd);
}

.fx-pagination div.active {
  background-color: #dedede;
  border: 1px solid #dedede;
}
.fx-pagination div:hover:not(.active) {
  background-color: var(--color-3);
}
/* #user-list > div{ } */
.hero {
  /*min-height: 100%; */
  /*background: url('/images/garden2.png') center/cover no-repeat;*/
  background: var(--bgBarColor);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login_form {
  text-align: center;
  background: rgba(255, 255, 255, 1);
  padding: 40px 30px 55px 30px;
  max-width: 430px;
  width: 100%;
  border: 1px solid var(--color-3);
  position: relative;
  z-index: 1;
  /* margin: 30px 0; */
}
.login_form .btn {
  width: 100%;
}
.banner-title-2 {
  text-align: center;
}
.banner-title {
  margin-bottom: 3rem;
}
.login_bg {
  /* background-image: url('/images/fluxplus.png'); */
  /* background-repeat:repeat-y; */
  position: fixed;
  opacity: 0.04;
  width: calc(100% - 200px);
  left: 100px;
  z-index: 0;
}
.login_bg img {
  width: 100%;
  height: auto;
}
a.total-row {
  /* text-transform: none; */
  text-decoration: underline;
  font-size: 10px;
}
.pass-forgot {
  font-size: 12px;
}
/* a:active.total-row {
color: blue;
font-size:1rem;
} */

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@media (max-width: 1250px) {
  .menu-modal-close {
    right: 0;
    top: 19px;
  }
  /* .menu-modal-close svg {  } */
}
@media (max-width: 1200px) {
  .menu-modal {
    left: 20px;
  }
  header .navbar_right .dropdown_toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 10px;
  }
  header .header_link {
    margin: 0 0 0 15px;
  }
  header #header_menu li.menu_item {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  table th,
  table td {
    padding: 10px 5px !important;
  }
  header .burger-wrap {
    z-index: 1;
    position: relative;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    display: block;
    float: right;
    height: 100%;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    margin-left: 30px;
    margin-right: 10px;
  }

  header .burger {
    display: block;
    width: 30px;
    height: 20px;
    margin: 30px 0;
    position: relative;
    opacity: 1;
  }

  header .burger:before {
    top: 0;
  }

  header .burger:after {
    bottom: 0;
  }

  header .burger span {
    visibility: visible;
    opacity: 1;
    height: 2px;
    background: #000;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    position: absolute;
    -webkit-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }

  header .burger:before,
  header .burger:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    background: #000;
    left: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  header .burger.opened:before {
    top: calc(50% - 1px);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  header .burger.opened span {
    visibility: hidden;
    opacity: 0;
    width: 0;
    left: 50%;
  }

  header .burger.opened:after {
    bottom: calc(50% - 1px);
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }

  header .menu_wrap {
    position: fixed;
    display: flex;
    flex-direction: column;
    background: #fff;
    max-width: 320px;
    width: 100%;
    height: calc(100% - var(--barHeight));
    top: var(--barHeight);
    overflow-y: auto;
    right: -370px;
    transition: all 0.3s ease-in-out;
    border-left: 1px solid #dbd9d2;
  }
  header #header_menu li.menu_item {
    line-height: 16px;
    width: 100%;
    height: auto;
  }
  header .menu_wrap.active {
    right: 0;
  }

  header .navbar_right {
    order: -1;
    padding: 0 10px;
    position: relative;
  }
  header #header_menu {
    flex-direction: column;
    margin: 0;
  }
  .dropdown.hidden {
    display: none;
  }
  header #header_menu .dropdown {
    position: relative;
    top: auto;
  }

  header #header_menu a {
    padding: 20px 20px;
    display: block;
    border-top: 1px solid #ededed;
  }
  .notifications_dropdown_toggle {
    position: fixed !important;
    top: 0;
    right: 70px;
  }
  .notifications_dropdown_toggle .dropdown {
    width: 321px;
    right: -81px;
  }
  .dropdown_inner_wrap:before {
    right: 97px;
  }
  header .navbar_right .dropdown_toggle {
    position: initial;
  }
  .user_dropdown_toggle .dropdown {
    position: absolute;
    perspective: 70px;
    top: 100%;
    right: 0;
    width: 100%;
  }
  header .dropdown_toggle .dropdown .dropdown_inner_wrap {
    border-left: none;
    border-right: none;
  }
  .header #header_menu .dropdown .dropdown_list_item,
  .user_dropdown_toggle .dropdown .dropdown_list_item {
    padding: 14px 8px;
    border-top: none;
  }
  header .dropdown_inner_wrap {
    padding: 0 10px;
    border-left: none;
    background: var(--bgBarColor) !important;
  }
  header
    .dropdown_toggle.notifications_dropdown_toggle
    .dropdown
    .dropdown_inner_wrap {
    border-left: 1px solid #dbd9d2 !important;
  }
  header #header_menu .dropdown_inner_wrap:before {
    right: auto;
    left: 24px;
    background: var(--bgBarColor);
  }
  header #header_menu .menu_item > a:hover {
    background: #fff;
  }
  a.no-text-decor:hover {
    text-decoration: none;
    color: red;
    background-color: yellow;
  }
  .user_dropdown_toggle .dropdown_inner_wrap:before {
    right: auto;
    left: 214px;
    background: var(--bgBarColor);
  }
  /* .user_dropdown_toggle .dropdown .dropdown_list_item {  } */
  .header #header_menu .dropdown .dropdown_list_item:last-child,
  .user_dropdown_toggle .dropdown .dropdown_list_item:last-child {
    border: none;
  }
  header #header_menu .dropdown .dropdown_list_item {
    padding: 7px 20px;
    font-size: 14px;
    border-top: none;
    display: flex;
  }
  .navbar_right.user_menu_opened {
    margin-bottom: 177px;
    min-height: 79px;
  }
}
.loader {
  display: none;
  border: 24px solid #f3f3f359;
  /* border: 24px solid #f3f3f359; */
  border-radius: 50%;
  /* border-top: 24px dashed #eeeeeeaf; */
  /* border-top: 24px dotted #eeeeeeaf; */
  /* border-top: 24px outset #eeeeeeaf; */
  /* border-top: 24px ridge #eeeeeeaf; */
  border-top: 24px solid #eeeeeeaf;
  top: calc(50vh - 105px);
  left: calc(50vw - 105px);
  width: 210px;
  height: 210px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
}
.comment {
  margin-bottom: 1.5rem;
  padding: 10px;
  border-left: 4px solid grey;
  font-size: 0.9rem;
  background: #ededed;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@media (max-width: 767px) {
  .services {
    display: block;
  }
  .table_label_mobile {
    display: block;
  }
  .fully_mobile .select2-container {
    max-width: calc(100% - 110px) !important;
  }
  .mobile_full_width {
    width: calc(100% - 110px) !important;
  }
  .mobile_full_width .select2-container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .fully_mobile,
  .fully_mobile tbody,
  .fully_mobile tr {
    display: block !important;
  }
  .fully_mobile th {
    display: none;
  }
  .fully_mobile td {
    display: flex;
    padding: 10px !important;
    text-align: left;
    min-height: 37px;
    border: none;
    border-bottom: 1px solid #ffd6a9;
    align-items: center;
  }
  .hide_on_mobile {
    display: none !important;
  }
  .y-container {
    max-height: 100% !important;
  }
}

@media (max-width: 500px) {
  .col_2 {
    width: 100%;
  }
  .col_2:nth-child(2n + 1) {
    margin-right: 0;
  }
  .table_actions {
    flex-direction: column;
  }
  .table_actions > div {
    margin-bottom: 10px;
    width: 100%;
  }
  /*.login_form {
  width: 300px;
}*/
  .login_form h2 {
    font-size: 20px;
    margin: 10px 0 !important;
  }
  .login_form h3 {
    font-size: 18px;
    margin: 10px 0 !important;
  }
  .table_head {
    display: block; /*for dashboard page*/
  }
  .tr-drag {
    width: 150px;
    height: 50px;
    padding: 0.5em;
  }
}

/* Checkbox */
.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.custom-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 1.1rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox:checked + label::before {
  /* border-color: #0b76ef;
  background-color: #0b76ef; */
  /* border-color: #0b76ef; */
  border-color: #6f6f6f;
  background-color: #e5f1ff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 1 7 7'%3e%3cpath fill='%23777' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
/* стили при наведении курсора на checkbox */
.custom-checkbox:not(:disabled):not(:checked) + label:hover::before {
  /* border-color: #b3d7ff; */
  border-color: #a9a9a9;
}
/* стили для активного состояния чекбокса (при нажатии на него) */
.custom-checkbox:not(:disabled):active + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
/* стили для чекбокса, находящегося в фокусе */
.custom-checkbox:focus + label::before {
  /* box-shadow: 0 0 0 0.3rem rgba(0, 123, 255, 0.25); */
  box-shadow: 0 0 0 0.3rem rgba(31, 58, 79, 0.25);
}
/* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
.custom-checkbox:focus:not(:checked) + label::before {
  border-color: #80bdff;
}
/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox:disabled + label::before {
  background-color: #e9ecef;
}
.date-label {
  margin-top: 8px;
  width: 12rem;
  font-size: 1rem;
}

a.round-btn {
  display: inline-block;
  border: 1px solid #aaa;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
}
a.round-btn:hover {
  text-decoration: none;
  color: #333;
  background: #ddd;
  border-color: #00a9ff;
  /* background:#B5FFE7; 
border-color: #00D0FF; */
}
.box-val {
  border: 2px solid lightgreen;
  /* border-radius: 8px; */
  border-radius: 4px;
}
.comment-box {
  display: flex;
  border: 1px dashed orange;
  background-color: var(--color-b);
  border-radius: 4px;
  padding: 1rem 1rem;
  font-size: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.comment-box-raw {
  display: flex;
  border: 1px dashed green;
  background-color: var(--color-b);
  border-radius: 4px;
  padding: 1rem;
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.comment-box-0 {
  display: flex;
  border: 1px dashed green;
  background-color: var(--color-b);
  border-radius: 4px;
  padding: 1rem;
  font-size: 1rem;
}

#BtnToTop {
  display: none;
  position: fixed;
  bottom: 70px;
  /* Place the button at the bottom of the page */
  left: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  /*background-color: green;  Set a background color */
  background-color: #ddd;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px 15px;
  /* Some padding */
  border-radius: 28px;
  /* Rounded corners */
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.2);
  font-size: 18px;
  /* Increase font size */
}
#BtnToTop:hover {
  background-color: rgb(0, 132, 120);
  /* Add a dark-grey background on hover */
}

#BtnToTop:hover svg {
  fill: white !important;
}
#BtnToBottom {
  display: none;
  position: fixed;
  bottom: 70px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 9;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  /*background-color: green;  Set a background color */
  background-color: #ddd;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px 15px;
  /* Some padding */
  border-radius: 28px;
  /* Rounded corners */
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.2);
  font-size: 18px;
  /* Increase font size */
}
#BtnToBottom:hover {
  background-color: rgb(0, 132, 120);
  /* Add a dark-grey background on hover */
}

#BtnToBottom:hover svg {
  fill: white !important;
}

.th-sort-hi {
  background-color: var(--primaryColor);
  fill: white;
  border: 1px solid var(--color-3);
}
.th-sort {
  background-color: var(--color-9);
  border: 1px solid var(--color-3);
  fill: grey;
}
.th-order {
  font-size: 10px !important;
  position: relative;
  background-color: var(--color-dd) !important;
  cursor: pointer;
}
.sort-asc,
.sort-desc {
  position: absolute;
  top: 1px;
  left: 10px;
  padding: 2px 5px;
  border-radius: 3px;
}
.shadow {
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.shadow2 {
  box-shadow:
    0 4px 8px 0 rgba(12, 145, 223, 0.07),
    0 6px 20px 0 rgba(12, 145, 223, 0.07);
}

.shadow3 {
  box-shadow:
    0 4px 8px 0 rgba(0, 112, 156, 0.2),
    0 6px 20px 0 rgba(0, 112, 156, 0.2);
}

.a-button {
  background-color: rgb(59, 130, 246);
  text-align: center;
  text-decoration: none;
  fill: cyan;
  color: white;
}
.a-button:hover {
  text-decoration: none;
  color: cyan;
  box-shadow:
    0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
.a-button-tiny {
  padding: 0.2rem 0.5rem;
  height: 35px;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
}
.a-button-small {
  padding: 0.7rem 2rem;
  border-radius: 3rem;
}
.menu_item_under::before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 1px;
  width: 76%; /* or 100px */
  border-bottom: 3px solid var(--primaryColor);
}
.hd-invoice {
  background-color: var(--color-4);
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  color: white;
}
.y-container {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 85vh;
  scroll-behavior: smooth;
}
.hd-title {
  background-color: var(--color-dd) !important;
  border-radius: 5px;
  padding: 0.6rem !important;
}
.this-title {
  display: flex;
  background: linear-gradient(135deg, var(--color-2) 0%, var(--color-b) 100%);
  padding: 0.9rem;
}
.this-title h3 {
  margin: 0 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}
.svg-img {
  transform: scale(1);
  width: 10rem;
  height: auto;
}
.logo-box {
  width: 10rem;
  height: 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-box {
  color: white;
  background: linear-gradient(135deg, var(--color-4) 0%, var(--color-9) 100%);
  padding: 1rem 0rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.title-box h1 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-shadow: 2px 2px 4px #333;
}
.title-box {
  display: grid;
  grid-template-columns: 5% 1fr 1fr 12% 12% 8% 8%;
  align-items: center;
}
.title-box h1 {
  grid-column: 2;
  margin: 0;
}
.title-box-btn {
  color: white;
  background: linear-gradient(135deg, var(--color-4) 0%, var(--color-9) 100%);
  padding: 1rem 0rem;
  padding-left: 5%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.title-box-btn h1 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-shadow: 2px 2px 4px #333;
}
.bg-clr-1 {
  background-color: var(--color-1);
}
.bg-clr-3 {
  background-color: var(--color-3);
}
.bg-clr-6 {
  background-color: var(--color-6);
}
.bg-clr-a {
  background-color: var(--color-a);
}
.bg-clr-b {
  background-color: var(--color-b);
}
.bg-clr-eee {
  background-color: #eee;
}
.bg-clr-dee {
  background-color: #dee;
}

.bg-clr-ccc {
  background-color: #ccc;
}
.bg-clr-eee {
  background-color: #eee;
}
.bg-clr-dee {
  background-color: #dee;
}
.bg-clr-cdd {
  background-color: #cdd;
}
.circle-xmark {
  z-index: 300;
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-bottom: -1rem;
  margin-right: -1.6rem;
  fill: white;
}
.img-h700-w1200 {
  max-height: 700px;
  max-width: 1200px;
}
.svg-sort {
  width: 18px;
  height: 12px;
}
.svg-question {
  margin-top: 0.5rem;
  fill: green;
  height: 1.2rem;
  width: 1.2rem;
}
.border-dashed-1 {
  border: 1px dashed var(--color-1);
}
.min-w-27 {
  min-width: 27%;
}
.new-item-header {
  padding: 1rem;
  background-color: var(--color-9);
  font-size: 1.2rem;
  border-top-right-radius: 1.5rem;
  border-top-left-radius: 1.5rem;
  text-align: center;
}
.min-w-16 {
  min-width: 16rem;
}
.e-case a:hover {
  text-decoration: none;
}
.e-case a li {
  width: 14rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
.e-case a li:hover {
  border-bottom-left-radius: 2rem;
  border-top-left-radius: 2rem;
  border-right: 5px solid var(--color-5);
  background-color: var(--color-c);
  color: black;
}

.e-case .anchor {
  padding-top: 4rem;
  margin-top: -4rem;
  display: inline-block;
}
.e-case .li-item {
  padding-left: 2rem; width:100%;
}
a.no-text-decor {
  border: 2px solid #ddd;
  padding: 0.25rem 1rem 0.2rem 1rem;
  border-radius: 1.2rem;
}
a.no-text-decor:hover {
  text-decoration: none;
  color: #333;
  background-color: var(--color-9);
  border-color: grey;
}
.e-case-login-bg {
  /* margin-top: 1.5rem; */
  padding: 0.8rem 2rem;
  background-color: var(--color-9);
  border-radius: 1.5rem;
}
.w-210px {
  width: 210px;
}
.no-filer-icon {
  margin: 0.5rem 2rem;
  fill: var(--NoFilter);
}
.invoila-title {
text-shadow: 1px 2px 4px var(--color-5);
color:#788 !important;
}
.search-container {
  display: flex;
  background-color: white;
  align-items: center;
  border: 1px solid var(--color-5); /* Default border style */
  padding: 3px 4px 3px 8px;
  border-radius: 0.3rem;
  /* width: 350px; */
  transition: border-color 0.3s ease; /* Smooth transition for the border color */
}
.search-container input {
  border: none!important; /* Removes the input control's default border */
  outline: none!important; /* Removes the default focus outline that browsers add */
  background-color: white!important;
  flex-grow: 1; /* Allows the input to fill the container space */
  margin-left: 0.4rem;
  padding: 5px;
  font-size: 16px;
  width: calc(100% - 30px);
}
.search-container:focus-within {
  border-color: var(--color-8);
  box-shadow: 0 0 3px 3px rgba(235, 133, 37, 0.2);
}
.search-container .search_icon {
  width: 1.1rem;
  height: 1.1rem;
  fill-opacity: 0.5;
  cursor: pointer;
}
