@import url("standard.css");

#mySidenav{
  width :66px;
  z-index: 9999;
  transition: width 0.35s ease-out;
}
#mySidenav .menuEle h1{
  display: none;
}
#mySidenav .bilingual-sidebar{
  display: none;
}
#mySidenav >ul>li ul{
  display: none;
}
#mySidenav:hover{
  width :380px;
  transition: width 0.35s ease;
}
#mySidenav:hover .menuEle h1{
  display: block;
}
#mySidenav:hover .bilingual-sidebar{
  display: block;
}
#mySidenav:hover >ul>li.active ul{
  display: block;
}

.login {
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 48%;
  transform: translate(0, -50%);
  left: 0;
  right: 0;
}
form {
  display: inline-block;
  width: 100%;
}

.cursor-pointer{
	cursor: pointer;
}

.cust-col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 62.222227%;
  -ms-flex: 0 0 62.222227%;
  flex: 0 0 62.222227%;
  max-width: 62.222227%;
}

.cust-col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 37.777773%;
  -ms-flex: 0 0 37.777773%;
  flex: 0 0 37.777773%;
  max-width: 37.777773%;
}
.themelabel {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.themelabel input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--white);
  padding: 8px 3px;
  font-size: 0.95em;
}
.themelabel input:focus {
  border-bottom: 1px solid var(--darkcolor);
  transition: 0.4s ease-in;
}
.loginBg {
  background: red;
  background: -webkit-radial-gradient(circle, var(--maincolor) 5%, #126278);
  background: -o-radial-gradient(circle, var(--maincolor) 26%, #126278);
  background: -moz-radial-gradient(circle, var(--maincolor) 26%, #126278);
  background: radial-gradient(circle, var(--maincolor) 26%, #126278);
  height: 100vh;
  position: relative;
}
.login input {
  color: var(--white);
}
.login input::placeholder {
  color: var(--white);
  font-weight: 300;
}
.iconuser,
.iconpass,
.hush {
  position: relative;
}
.iconuser:before,
.iconpass:before,
.hush:before {
  position: absolute;
  font-family: "FontAwesome";
  top: 5px;
  left: 0;
  color: var(--white);
  font-size: 1.2em;
}
.iconuser:before {
  content: "\f007";
}
.iconpass:before {
  content: "\f023";
}
.hush:before {
  content: "\f292";
}
.iconuser input,
.iconpass input,
.hush input {
  padding-left: 25px;
}
/********* animate-check modern ************/
.animate-check {
  display: inline-block;
  min-height: 26px;
}
.animate-check input[type="checkbox"] {
  display: none;
  line-height: 28px;
}
.animate-check label {
  position: relative;
  cursor: pointer;
  padding: 0 0 0 30px;
  width: auto;
  float: left;
  line-height: 26px;
}
.animate-check label:before,
.animate-check label:after {
  font-family: FontAwesome;
  /*absolutely positioned*/
  position: absolute;
  top: 3px;
  left: 0;
  font-style: normal;
}
.animate-check label:before {
  content: "";
  border: 1px solid rgb(169, 169, 169);
  min-height: 18px;
  width: 18px;
}
.animate-check.gray1 label:before {
  border: 1px solid var(--gray1);
}
.animate-check label:before {
  min-width: 18px;
}
.animate-check label:after {
  content: "\f00c";
  font-family: "FontAwesome";
  max-width: 0;
  overflow: hidden;
  opacity: 0.5;
  width: 18px;
  height: 18px;
  display: block;
  top: 1px;
  left: 0;
  font-size: 0.9em;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
}
/* Animating the Checkbox Icon */
.animate-check input[type="checkbox"]:checked + label:after {
  max-width: 20px;
  opacity: 1;
  margin-right: 0px;
  line-height: 20px;
}
/********* animate-check modern ************/
/********* animate-radio modern ************/
.animate-radio {
  display: inline-block;
}
.animate-radio input[type="radio"] {
  display: none;
  line-height: 28px;
}
.animate-radio label {
  position: relative;
  cursor: pointer;
  padding: 0 0 0 22px;
  width: auto;
  line-height: 16px;
  margin-bottom: 0;
}
.animate-radio label:before,
.animate-radio label:after {
  font-family: FontAwesome;
  font-size: 30px;
  /*absolutely positioned*/
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.animate-radio label:before {
  content: "";
  border: 1px solid var(--gray5);
  background: none;
  min-height: 15px;
  width: 15px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.animate-radio label:before {
  min-width: 15px;
}
.animate-radio label:after {
  content: "\f111 ";
  font-family: "FontAwesome";
  color: var(--maincolor);
  max-width: 0;
  overflow: hidden;
  opacity: 0.5;
  width: 15px;
  height: 15px;
  display: block;
  top: 0px;
  left: 0px;
  font-size: 15px;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
/* Animating the Checkbox Icon */
.animate-radio input[type="radio"]:checked + label:after {
  max-width: 14px;
  opacity: 1;
  margin-right: 0px;
  line-height: 15px;
}
.animate-radio input:disabled + label:after {
  color: var(--gray5);
}
.animate-radio input:disabled + label:before {
  border: 1px solid var(--gray1);
}
/********* animate-radio.animate-radio label:before modern ************/
.borderlogin {
  border-left: 1px dashed;
  margin-left: 20px;
  padding-left: 20px;
}
/****** sidebar ********/
.sidenav {
  height: 100%;
  width: 66px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: scroll;
  transition: 0.7s;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.sidenav a {
  text-decoration: none;
  font-size: 1em;
  color: var(--maincolor);
  display: flex;
  transition: 0.3s;
  min-width: 250px;
  padding: 13px 0;
  white-space: nowrap;
  justify-content: space-between;
  padding-right:10px;
}
.sidenav a >div {
  display:flex;
}
.sidenav a:hover {
  background: var(--gray2);
  transition: background 0.4s ease-all;
}
.sidenav a:hover span {
  color: var(--darkcolor);
  transition: background 0.4s ease-all;
}
.sidenav li.active > a {
  background: var(--gray6);
}
.sidenav a .fa {
  font-size: 1.5em !important;
  width: 60px;
  text-align: center;
  margin-top: 0;
}
.sidenav a img {
  width: 25px;
  height: 25px;
  margin: 0px 18px;
}
.sidenav a span {
}
#main {
  transition: margin-left 0.2s;
  margin-left: 70px;
  background: var(--gray2);
}
#header {
  transition: margin-left 0.7s;
}
.width-250 {
  width: 300px !important;
}
.margin-left-180 {
  margin-left: 227px !important;
}
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
.opensidebar {
  font-size: 1.5em;
  cursor: pointer;
}
/****** sidebar ********/
header {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
    0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  background: var(--maincolor);
  color: var(--white);
  position: fixed;
  top: 0;
  right: 0;
  left: 66px;
  z-index: 100;
}
#main-wrapper {
  margin-top: 64px;
  background: var(--white);
  height: 100%;
}
.headerchip {
  height: 50px;
  line-height: 57px;
  cursor: pointer;
  padding: 5px 8px;
  margin: 7px 0;
  width: 300px;
  justify-content: space-around;
}
.headerchip img {
  float: right;
  margin: 0px 0 0 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.menuEle {
  padding: 14.7px 0;
  border-bottom: 1px solid var(--gray1);
  min-width: 300px;
}
.menuEle .fa {
  width: 90px;
  text-align: center;
  font-size: 1.4em;
  color: var(--maincolor);
}
.menuEleopen {
  background: var(--maincolor) !important;
}
.menuEleopen h1,
.menuEleopen .fa {
  color: var(--white) !important;
}
.profileFix {
  position: absolute;
  top: 57px;
  right: 15px;
  background: var(--white);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
    0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  min-width: 250px;
  padding: 15px 0;
  display: none;
  z-index: 2;
}
.profileFix a {
  color: var(--maincolor);
}
.headerMenu {
  display: inline-block;
  margin: 13px 0 0 15px;
}
.headerMenu li {
  cursor: pointer;
  float: left;
  margin-right: 30px;
}
.headerMenu li .fa {
  font-size: 1.5em;
  margin-right: 5px;
}
.tooltip.tooltip-top .tooltip-arrow,
.tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
  border-top-color: #fff !important;
}
.block-box {
  background: var(--white);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
    0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  border-radius: 3px;
  display: inline-block;
  width: 100%;
}
.department-box {
  background: var(--white);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
    0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
  border-radius: 10px;
  display: inline-block;
  width: 100%;
}
.highcharts-credits {
  display: none !important;
}
.highchart {
  min-width: 310px;
  height: 400px;
  margin: 0 auto;
}
.highchart1 {
  min-width: 310px;
  height: 300px;
  margin: 0 auto;
}
.highcharts-container {
  width: 100%;
}
.zipperbg li {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 3px 30px;
}
.zipperbg li:nth-child(even) {
  background: var(--gray2);
}
.vertical-bg tr td:first-child,
.vertical-bg tr th:first-child {
  background: var(--pale-orange);
}
.vertical-bg tr td:nth-child(2),
.vertical-bg tr th:nth-child(2) {
  background: var(--pale-green);
}
.vertical-bg tr td:nth-child(3),
.vertical-bg tr th:nth-child(3) {
  background: var(--pale-purple);
}
.table td,
.table th {
  border-top: 1px solid #f5f5f5;
}
.no-border.table td,
.no-border.table th {
  border: 0;
}
/*.attachHead{
    position: fixed;
    top:64px;
    left:70px;
    right:0;
    padding:15px 0 0;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.14), 0 2px 2px 0 rgba(0,0,0,.098), 0 1px 5px 0 rgba(0,0,0,.084);
    z-index:2;
    background:var(--white);
}
.filter{
    margin-top:158px;
    display: inline-block;
    width:100%;
    position: relative;
    z-index: 1;
}*/
.addBox {
  display: inline-block;
  border-radius: 3px;
  width: 60px;
  height: 45px;
  text-align: center;
  cursor: pointer;
  line-height: 45px;
}
.addBox .fa {
  font-size: 1.1em;
}
.addBox:hover .fa {
  color: var(--white);
}
.addFloatBox {
  position: absolute;
  right: 30px;
  top: 30px;
  transition: 0.5s;
  z-index: 1;
}
.select-dropdown
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active {
  background-color: var(--maincolor) !important;
  border-color: var(--maincolor) !important;
}
.date-relative {
  position: relative;
}
.date-relative:after {
  left: 47%;
  position: absolute;
  top: 7px;
  content: "To";
}
.sticky-header {
  background: var(--white);
}
/*#clientTable_wrapper .dataTables_length{
    display: none;
}*/
#theme-table thead th {
  padding: 10px 18px;
  border-bottom: 1px solid var(--black);
}
#theme-table tr:hover {
  background: #f6f6f6;
}
#theme-table.no-hover tr:hover {
  background: unset;
}
#theme-table td {
  border-top: 1px solid #ddd;
  padding: 8px 10px;
}
.dataTables_wrapper .dataTables_scrollHead,
#theme-table,
.theme-table thead {
  background: var(--gray4);
}
.dataTables_wrapper .dataTables_scroll,
#theme-table {
  border: 1px solid var(--gray1);
  border-radius: 3px;
  margin-bottom: 20px;
}

.table-right-stock {
  position: relative;
  height: 100%;
  width: 100%;
}

.table-right-stock .side1 {
  padding-top: 0 !important;
}

.table-right-stock .side2 {
  padding-top: 0 !important;
}

.table-right-stock .side3 {
  padding-top: 0 !important;
}

#theme-table2 thead th,  
#theme-table3 thead th {
  padding: 10px 18px;
  border-bottom: 1px solid var(--black);
}
#theme-table2 tr:hover , 
#theme-table3 tr:hover {
  background: #f6f6f6;
}
#theme-table2 td, 
#theme-table3 td {
  border-top: 1px solid #ddd;
  padding: 8px 10px;
}
.dataTables_wrapper .dataTables_scrollHead,
#theme-table2 thead,
#theme-table3 thead {
  background: var(--gray4);
}
.dataTables_wrapper .dataTables_scroll,
#theme-table2,
#theme-table3 {
  border: 1px solid var(--gray1);
  border-radius: 3px;
  margin-bottom: 20px;
}
.dataTables_wrapper .dataTables_scrollBody {
  border-bottom: none !important;
}
.dataTables_wrapper .sub-table {
  width: 80%;
  margin: 0 auto;
}
.dataTables_wrapper .sub-table td,
.dataTable .slider {
  background: var(--gray2);
}
.dataTables_wrapper .paginate_button {
  padding: 4px 10px !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--gray4) !important;
}

td.details-control {
  background: url("../images/expand.png") no-repeat center center;
  cursor: pointer;
}
tr.shown td.details-control {
  background: url("../images/minus.png") no-repeat center center;
}

.hide-filter,
.show-filter {
  position: absolute;
  bottom: 0;
  left: 30px;
}
/*.show-filter{
    display: none;
}*/
.select-icon:before {
  font-family: "FontAwesome";
  font-size: 1.2em;
  left: 10px;
  top: 3px;
  position: absolute;
  z-index: 1;
}
.select-icon {
  position: relative;
}
.select-icon-lang:before {
  content: "\f1ab";
  pointer-events: none;
}
.select-icon-lang select {
  padding-left: 35px;
}
sup.imp {
  color: var(--orange);
  font-size: 1.2em;
  font-weight: bold;
  top: -0.2em;
}
.theme-tab .nav-tabs .nav-item.show .nav-link,
.theme-tab .nav-tabs .nav-link.active {
  border: 0;
  border-bottom: 2px solid;
  background: none;
}
.theme-tab .nav-tabs {
  border: 0;
}
.theme-tab .nav-tabs .nav-link {
  border: 0;
  color: var(--gray3);
  transition: 0.3s;
  padding-left: 20px;
  padding-right: 20px;
}
.theme-tab .nav-tabs .nav-link.active {
  color: var(--maincolor);
}
.remove-select,
.remove-input {
  position: relative;
}
.remove-select .fa {
  content: "";
  position: absolute;
  right: 33px;
  top: 10px;
  z-index: 1;
  color: var(--gray3);
  font-size: 1.1em;
  cursor: pointer;
  display: none;
}
.remove-input .fa {
  content: "";
  position: absolute;
  right: 16px;
  top: 10px;
  z-index: 1;
  color: var(--gray3);
  font-size: 1.1em;
  cursor: pointer;
  display: none;
}
.advan_search,
.row-adder {
  cursor: pointer;
  color: var(--orange) !important;
  font-size: 1.1em;
  position: relative;
}
.advan_search:after,
.row-adder:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--orange);
  content: "";
}
.advan_box {
  display: none;
  position: absolute;
  top: 138px;
  background: var(--white);
  z-index: 2;
  left: 0;
  right: 0;
  padding: 30px;
  border: 1px solid var(--pale-orange);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
    0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.bank_advan {
  top: 70px;
}
.tri {
  position: relative;
}
.tri:before {
  content: "\f0d8";
  font-family: "FontAwesome";
  position: absolute;
  top: -88px;
  left: 48%;
  font-size: 3em;
  color: #fff;
  text-shadow: 0px -2px 0px var(--pale-orange);
}
.select-dropdown .select2-container {
  width: 100% !important;
}
.row-adding td {
  max-width: 140px;
}
.row-adding label {
  width: 100%;
  margin-top: 10px;
}
.row-adding input,
.row-adding .select-dropdown,
.row-adding textarea {
  max-width: 130px;
  min-width: 130px;
}
.row-adding .select-dropdown select {
  width: 100%;
}
.row-adding tr:hover {
  background: none !important;
}
.text-center td,
.text-center th {
  text-align: center;
}
select[disabled] {
  background-color: #eee;
}
.invoice_table_row input,
.invoice_table_row .select-dropdown,
.invoice_table_row textarea {
  max-width: 180px;
  min-width: 180px;
}
.activity_table_row input,
.activity_table_row .select-dropdown,
.activity_table_row textarea {
  max-width: 90%;
  min-width: 90%;
}
.terminate-ele {
  display: none;
}
.overlay-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  content: "";
  display: none;
  height: 100%;
}
.overlay-modal {
  background: var(--white);
  position: fixed;
  top: 55%;
  transform: translate(0, -50%);
  padding: 50px 30px 30px;
  border-radius: 2px;
}
.overlay-modal.small-box {
  width: 24%;
  left: 40%;
}
.overlay-modal.tiny {
  width: 30%;
  left: 35%;
}
.overlay-modal.medium {
  width: 40%;
  left: 30%;
}
.overlay-modal.half {
  width: 50%;
  left: 30%;
}
.overlay-modal.big {
  width: 70%;
  left: 15%;
}
.overlay-modal.large {
  width: 90%;
  left: 7.5%;
}
.popup-closer {
  position: absolute;
  right: 8px;
  top: 5px;
  background: none;
  color: var(--maincolor);
  font-size: 1.6em;
}
.clientBoard {
  border: 1px solid var(--pale-orange);
  padding: 7px 20px;
  font-size: 0.7em;
  color: var(--orange);
  margin: 0 0 10px 15px;
  display: inline-block;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
    0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}
.gst_box,
.imp-span,
.imp-num-alert {
  display: none;
}
input.important + .imp-fa,
input.input-num + .imp-fa,
textarea.important + .imp-fa {
  display: none;
}
.imp-fa {
  right: 30px;
  top: 33px;
  position: absolute;
  color: var(--green);
}
.timp-fa {
  right: 15px;
  top: 10px;
}
.input-file {
  position: relative;
}
.input-file input {
  border: none;
  padding-left: 0;
}
.input-file:after {
  position: absolute;
  content: "Upload Logo";
  background: var(--maincolor);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 2px;
  top: 6px;
  left: 0px;
  pointer-events: none;
  font-size: 0.9em;
}
.input-file.upload-file:after {
  content: "Upload File";
  padding: 5px 15px;
}
.input-file.select-file:after {
  content: "Select File";
  padding: 5px 17px;
}
.breadcramp {
  background: var(--gray2);
  padding: 5px 30px;
  display: inline-block;
  width: 100%;
  color: var(--gray3);
  font-size: 14px;
  float: left;
}
.breadcramp ul {
  float: left;
}
.breadcramp li {
  float: left;
}
tr.group,
tr.group:hover {
  background-color: var(--gray2) !important;
  color: var(--maincolor) !important;
  text-align: center;
  position: sticky;
  font-weight: bold;
}
td.border span:first-child {
  border-bottom: 1px solid var(--black);
  min-height: 50px;
}
td.border span {
  width: 100%;
  float: left;
}
input:disabled,
select:disabled,
textarea:disabled {
  background-color: var(--gray4) !important;
}
.scroll-popup {
  max-height: 50vh;
  overflow-y: auto;
}
.sidenav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

.sidenav::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

.sidenav::-webkit-scrollbar-thumb {
  background-color: var(--maincolor);
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.5, rgba(255, 255, 255, 0.2)),
    color-stop(0.5, transparent),
    to(transparent)
  );
}
.scrollthis::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  border-radius: 10px;
}

.scrollthis::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

.scrollthis::-webkit-scrollbar-thumb {
  background-color: var(--maincolor);
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    color-stop(0.5, rgba(255, 255, 255, 0.2)),
    color-stop(0.5, transparent),
    to(transparent)
  );
}
#mySidenav ul a.parent.level-1 + ul {
  padding-left:20px;
}
#mySidenav ul a.parent.level-2 + ul {
  padding-left:40px;
}
#mySidenav ul a.parent + ul {
  max-height: 0;
  overflow:hidden;
  transition: max-height 0.35s ease-out;
}
#mySidenav ul a.parent.open + ul {
  max-height: 10000px;
  transition: max-height 0.35s ease;
}
.sec_text {
  text-align: center;
  line-height: 38px;
  margin-right: 30px;
  font-size: 1.2em;
}
.short-menu .fa {
  color: var(--white);
}
.short-menu a {
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  position: relative;
}
.short-menu a:before {
  content: "";
  background-color: aliceblue;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0.001, 0.001);
  transform: scale(0.001, 0.001);
}
.short-menu a:focus {
  outline: 0;
  color: #fff;
}
.short-menu a:focus:before {
  -webkit-animation: effect_dylan 0.8s ease-out;
  animation: effect_dylan 0.8s ease-out;
}
@-webkit-keyframes effect_dylan {
  50% {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
  99% {
    -webkit-transform: scale(0.001, 0.001);
    transform: scale(0.001, 0.001);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(0.001, 0.001);
    transform: scale(0.001, 0.001);
    opacity: 1;
  }
}
@keyframes effect_dylan {
  50% {
    -webkit-transform: scale(2, 2);
    transform: scale(2, 2);
    opacity: 0;
  }
  99% {
    -webkit-transform: scale(0.001, 0.001);
    transform: scale(0.001, 0.001);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(0.001, 0.001);
    transform: scale(0.001, 0.001);
    opacity: 1;
  }
}
.os-change {
  background: var(--orange);
  color: var(--white);
  width: 35px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  border-radius: 30px;
  font-size: 0.9em;
}
.os-change:focus,
.os-change:clicked {
  text-decoration: none;
}
.timeline_dashboard li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 25px;
}
.timeline_dashboard li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 2px solid;
  border-radius: 30px;
  z-index: 1;
}
.timeline_dashboard li:nth-child(odd):before {
  border-color: var(--green);
}
.timeline_dashboard li:nth-child(even):before {
  border-color: var(--purple);
}
.timeline_dashboard li:after {
  content: "";
  position: absolute;
  top: -35px;
  left: 5px;
  width: 1px;
  background: var(--gray6);
  height: 142%;
}
.timeline_dashboard li:first-child:after {
  top: 5px;
}
.timeline_dashboard li:last-child:after {
  height: 41px;
}
.carousel-control-next .fa,
.carousel-control-prev .fa {
  font-size: 2.5em;
}
.hiderlodge {
  display: none;
}
.checkall-box {
  border: 1px solid var(--gray1);
  padding: 15px 20px;
}
.checkall {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid var(--gray1);
  padding-bottom: 10px;
}

/*Outwork Section*/
#matriallistdetail .dataTables_scrollBody {
  height: 30vh !important;
}

#stocklistcover .dataTables_scrollHeadInner {
  width: 100% !important;
}

#stocklistcover .example3 {
  width: 100% !important;
}

#companyModal_cover .dataTables_scrollHeadInner {
  width: 100% !important;
}

#companyModal_cover .example3 {
  width: 100% !important;
}

#detailproductrepaybox .itemproduct {
  width: 145px !important;
}

#detailrepaybox .itemmaterial {
  width: 160px !important;
}

.btnsearchitem {
  cursor: pointer;
  max-height: 25px;
  margin: auto 10px;
}

#outworkModal_cover .dataTables_scrollHeadInner {
  width: 100% !important;
}

#outworkModal_cover .example3 {
  width: 100% !important;
}

/*#detailproductrepaybox_wrapper .select-dropdown:after{
    content:'\f107';
    position: absolute;
    top:19%;
    right:30px;
    font-family: 'FontAwesome';
    pointer-events: none;
}*/

/*

.select-icon select,.select-icon input{
    padding-left:37px;
}
.select-icon-user:before{
    content:'\f0c0';
}

.select-icon-contactperson:before{
    content:'\f2ba';
}
.select-icon-pie:before{
    content:'\f200';
}
*/

.error-div {
  color: #ff0000;
  font-size: 12px;
  margin-top: 5px;
}

.bilingual-sidebar {
  margin-right: 10px;
}
.bilingual-sidebar p {
  margin: 0px;
  padding: 0px;
  line-height: 25px;
  transition: background 0.4s ease-all;
}
.sidenav a:hover .bilingual-sidebar p {
  color: var(--darkcolor);
}

/* ADD STYLE */

textarea {
  max-width: 100%;
}

#nav-toggle {
  /* width: 50px; */
  padding-left: 0;
}
#nav-toggle i {
  text-align: center;
  /* font-size: 35px; */
  color: #ffffff;
}

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 14%), 0 2px 2px 0 rgb(0 0 0 / 10%),
    0 1px 5px 0 rgb(0 0 0 / 8%);
  background: var(--maincolor);
  color: var(--white);
  z-index: 999;
}

.navbar-brand {
  color: #ffffff;
}

.navbar-collapse {
  background: #ffffff;
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
}

table.dataTable th,
#theme-table thead th,
#theme-table2 thead th,
#theme-table3 thead th {
  font-size: 11px;
}

table.dataTable td,
#theme-table td,
#theme-table2 td,
#theme-table3 td {
  font-size: 12px;
}

table.dataTable thead th,
table.dataTable thead td {
  /*padding-top: 1px;*/
  /*padding-bottom: 1px;*/
}
table.dataTable input,
table.dataTable select {
  padding-top: 0;
  padding-bottom: 0;
}
table.dataTable tbody td {
  /*padding: 4px 10px;*/
}
table.dataTable tbody td .btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 11px;
  border-radius: 0.2rem;
}
table.dataTable tbody td .btn-fa {
  padding: 5px 7.5px;
}
.btn {
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  .cust-col-8,
  .cust-col-4 {
    max-width: 100%;
    -webkit-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}

@media screen and (max-width: 575px) {
  body {
    padding-top: 55px;
  }

  #backButton a {
    font-size: 14px;
  }

  .loginBg {
    padding-top: 0;
  }

  .login {
    position: relative;
    top: 0;
    transform: none;
  }

  .login #listdepartment h1,
  #loginbox h1 {
    font-size: 15px;
  }

  .login #listdepartment h4 {
    font-size: 14px;
  }

  /* #collapsibleNavbar ul.dropdown-menu{
      position: static;
  }  */

  .navbar {
    padding-bottom: 0;
  }

  .navbar .navbar-nav a {
    text-decoration: none;
    font-size: 1em;
    color: var(--maincolor);
    display: flex;
    transition: 0.3s;
    min-width: 250px;
    padding: 8px 0;
    justify-content: space-between;
  }
  .navbar .navbar-nav a div{
    display:flex;
    text-wrap-mode: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .bilingual-sidebar {
    display: inline-block;
  }

  .navbar a .fa {
    font-size: 1.5em !important;
    width: 24px;
    text-align: center;
    margin-top: 0;
    margin-right: 5px;
  }

  .navbar a img {
    width: 25px;
    height: 25px;
    margin: 0px 5px 0 0;
  }

  .navbar-nav li ul {
    padding-left: 15px;
  }

  .dropdown-toggle::after {
    content: none;
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 0.8em;
  }

  .dropdown-submenu .dropdown-menu.show {
    position: relative;
    display: block;
    top: 100%;
    left: 0;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
  }

  .dropdown-menu {
    border: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .sidenav {
    display: none;
  }
  #main {
    margin-left: 0;
    overflow: auto;
  }
  #header {
    display: none;
  }
  .navbar {
    display: block;
  }

  #main-wrapper {
    margin-top: 0;
  }

  .breadcramp {
    padding: 5px 15px;
  }

  .container-fluid.custom-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .form-wrapper.padding-rl-30,
  .form-wrapper .padding-30 {
    padding-left: 15px;
    padding-right: 15px;
  }

  textarea {
    max-width: 100%;
  }
}

@media screen and (min-width: 576px) {
  .navbar {
    display: none;
  }
}

#my-collapsible-navbar {
  display: block;
  background: #ffffff;
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
  box-sizing: inherit;
  color: var(--white);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  word-wrap: break-word;
}

/* MOBILE-NAVBAR */

#collapsibleNavbar > .navbar-nav {
  max-height: 50vh;
  overflow: auto;
}
#collapsibleNavbar .profile-navbar-mobile {
  display: flex;
  align-items: center;
  background-color: whitesmoke;
    padding: 5px;
    border: 1px solid gold;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
#collapsibleNavbar .avatar {
  border-radius: 50%;
  border: 3px solid blanchedalmond;
  padding: 1px;
  margin-right: 5px;
}
#collapsibleNavbar .avatar img {
  border-radius: 50%;
  border: 1px solid dodgerblue;
}
#collapsibleNavbar .profile div {
  color: deepskyblue;
}
.my-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.1s ease;
}
.my-dropdown-menu.aktif {
  background-color: seashell;
  max-height: 999px;
}

.scale-weight{
  width: 100%;
  position: relative;
  text-align: center;
  margin: 20px auto 50px;
}

.scale-weight .frame{
  position: absolute;
  top: 0;
  left: 0;
}

.autocomplete-container{
  position: relative;
}

.autocomplete-list{
  position: absolute;
  max-height: 150px;
  overflow: auto;
  width: 100%;
  z-index: 99;
}

label.error{
	color:red;
	font-size:0.8rem;
}

.remove_biaya {
  margin-top: 9px;
  display: inline-block;
  color: red;
}

#biayaWrapper label input{
  width: 120px !important;
}

	.kotak-keterangan{
		overflow: hidden;
		text-overflow:ellipsis;
        display: -webkit-box;
		-webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;

	}
#main{
  display:flex;
  flex-direction: column;
}