* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }
 body {
   font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol !important;
   font-variant: tabular-nums;
   color: rgba(0, 0, 0, 0.65) !important;
   font-size: 16px;
}

main {
    width: calc(100% - 300px);
    transition: width 0.5s ease-in;
    background-color: #f1f2f6;

}

#sidebar {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #1d242b;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: width 0.5s ease-in;
}
.menu__font {
    font-size: 16px;
    color: #ffffffa6;
}
.dropdown-content{
   background-color: #0e141b !important;
}
body.collapsed #sidebar {
    width: 90px;
    transition: width 0.5s ease-in;
}

body.collapsed .hide {
    display:none;
    transition-delay: .2s;
}
body.collapsed main {
    width: calc(100% - 90px);
}
body.collapsed .dropdown {
    position: relative;
}
body.collapsed .dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    left: 90px;
    background-color: #1d242b;
    white-space: nowrap;
    z-index: 1;
}
body.collapsed .dropdown:hover .dropdown-content {
    display: block !important;
}
body.collapsed .dropdown:hover .dropdown-content ul {
    display: block !important;
}

body.collapsed .dropdown:hover .dropdown-content ul li{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.dropdown-content ul li.nav-item:hover{
    background-color:#1d242b;
}
body.collapsed .dropdown:hover .dropdown-content ul li a{
    padding-left: 20px !important;
    padding-right: 20px !important;
}
.menu__font-child {
    font-size: 16px;
    color: hsla(0, 0%, 100%, 0.65);
    margin-left: 5px;
}
.logo {
    height: 65px;
    max-width: 100%;
}
 .nav-pills li {
    width: 100%;
    white-space:nowrap;
 }
.nav-item.active {
    background-color: #314254;
    pointer-events: none;
}
 .nav-item.active a{
     pointer-events:none;

 }
 .nav-item.active .nav-link span {
    color: #ffffff !important;
 }
 [aria-expanded="true"] .menu__font {
    color: #ffffff !important;
 }
 .feather-chevron-down{
     width: 20px;
 }
 /*account*/
.account {
  position: relative;
  display: inline-block;
}

.account-menu {
  display: none;
  position: absolute;
  right: 1%;
  min-width: 200px;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.account-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;

}

.account-menu a:hover {background-color: #ddd;}

.account:hover .account-menu {display: block;}

 /* header */
#header {
    height: 65px;
}
#breadscrumb{
    margin-top:1px;
}

#loader svg {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

#loader {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    width: 0;
    height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
#loader circle {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: loading 1.2s ease-in-out infinite;
}
   
@keyframes loading {
    100% {
     transform: rotate(360deg);
    }
}
   
@keyframes loading {
    0% {
     stroke-dasharray: 1, 200;
     stroke-dashoffset: 0;
    }
   
    50% {
     stroke-dasharray: 90, 200;
     stroke-dashoffset: -35px;
    }
   
    100% {
     stroke-dashoffset: -125px;
    }
}
   
 

.table-sticky-column{
    position:relative;
}

.table-sticky-column tr .sticky-column {
    position: -webkit-sticky;
    position: sticky;
    background: white;
    right: 0;
    z-index: 3;
}
.table-sticky-column tr .sticky-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    width: 100%;
}
.table-sticky-column tr .sticky-column-left {
    position: -webkit-sticky;
    position: sticky;
    background: white;
    left: 0;
    z-index:4;
}
.table-sticky-column tr .sticky-column-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.table-sticky-column tr .first.sticky-column-left::before{
    width:0 !important;
}
.table-sticky-column tr .sticky-column-left.sticky-column-left-last {
    left: 32px;
    z-index:3 !important;
}
.table-sticky-column tr .sticky-column-left.sticky-column-left-last::before{
    content: "";
    position: absolute;
    top: 0;
    left: -32px;
    height: 100%;
    width: calc(100% + 32px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.table-sticky-column tr > th:last-child::before {
    border-top-left-radius: 5px;
}
.table-sticky-column tr> td:last-child::before{
    border-bottom-left-radius: 5px;
}

/*inputgroup*/
.input-group_select {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    flex-grow: 0 !important;
    flex-basis: 100px !important;
}

.btn-uploadFile {
    background-color: #e9ecef !important;
    color: black !important;
    border: none !important;
    width: 40%;
}

/*SELECT LANGUAGE*/

#header_user .dropdown dd, .dropdown dt, .dropdown ul {
    margin: 0px;
    padding: 0px;
}

#header_user .dropdown dd {
    position: relative;
}
/* DT styles for sliding doors */
#header_user .dropdown dt a {
    background: url('../../assets/chevron-down.svg') no-repeat scroll right center;
    display: block;
    padding-right: 20px;
    padding-left:5px;
    border: 1px solid #ced4da;
    color: black;
    font-weight: normal;
    width: 100px;
    text-decoration: none;
    border-radius:3px;
}

#header_user .dropdown dt a span {
    cursor: pointer;
    display: block;
    padding: 3px;
}
/* UL styles */
#header_user .dropdown dd ul {
    background: white none repeat scroll 0 0;
    display: none;
    list-style: none;
    padding: 5px 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: auto;
    min-width: 100px;
    z-index: 1000;
    border: 1px solid #ced4da;
}

#header_user .dropdown span.value {
    display: none;
}
#header_user .dropdown dd ul li:hover {
    background-color: #ced4da
}
#header_user .dropdown dd ul li a {
    text-decoration: none;
    padding: 3px;
    display: block;
    color: black;
}

.list_wallet {
    color: #e3c787
}