@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

html, body {
    height: 100%;
    font-family: "Roboto";
}

section.content {
    background: #f4f4f4;
    min-height: calc(100% - 64px);
    padding: 10px;
    padding-left: 205px;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    -moz-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*----------------------------------------------------
    STYLES FOR FULL WIDTH CONTENT SECTION
------------------------------------------------------*/
body.full header nav .page-title{
    margin-left: 15px !important;
}
body.full .sidenav.main_menu{
    transform: translateX(-100%) !important;
}
body.full .sidenav.main_menu.show_menu {
    transform: translateX(0%) !important;
    -webkit-transition: -webkit-transform 0.25s;
    -o-transition: -o-transform 0.25s;
    transition: transform .25s;
}
body.full section.content{
    padding-left: 0;
}
body.full .pagination_row{
  width: 100%;
}

/*----------------------------------------------------
                    ADMIN LOGIN
------------------------------------------------------*/
body.login_page {
  display: flex;
  justify-content: space-evenly;
}
body.login_page,
.left_div,
.right_div {
  background-color: #fff;
  height: 100%;
  width: 100%;
}
.login_page .left_div {
  /*background: url(/images/admin-login-banner.jpg);*/
  display: none;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.login_page .right_div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_page .right_div .login_box {
  max-width: 350px;
  width: 100%;
  box-shadow: #cccccc 0 0 20px;
  padding: 15px;
  border-radius: 15px;
}
.login_box .profile-image-login {
  max-width: 180px;
}
.login_box .brand_logo {
  margin-bottom: 10px;
  text-align: center;
}
.login_box .login_header {
  font-size: 1.3rem;
}

/*----------------------------------------------------
    HEADER
------------------------------------------------------*/
header nav {
    color: #fff;
    background-color: #fff;
    width: 100%;
}
header nav .nav-wrapper{
    padding: 0 10px;
}
header nav .brand-logo{
    left: 22px;
}
header nav .brand-logo img{
    padding-top: 3px;
    width: 100px;
}
header nav li.password_dropdown a:hover, header nav li.password_dropdown a:active{
    background-color: transparent;
}
header nav .page-title{
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 205px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s; 
}
header nav .page-title .material-icons{
    color: #000;
    margin-left: -3px;
}
header nav .sidenav-trigger i{
    color: #000;
    line-height: 59px;
}


header .chip{
    background: #fff;
    color: rgba(0,0,0,0.8);
}
header .chip i{
    color: #000;
    height: 32px;
    line-height: 32px;
}
header .chip i.left{
    margin-right: 8px;
}
header .chip i.right {
    margin-left: 0px;
}

.page-title {
  color: #333333;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.page-title .material-icons {
  color: #fff;
  margin-right: 15px;
}
.page-title span {
  font-weight: 400;
}
.page-title .switch label .lever{
  vertical-align: baseline;
}
.page-title .switch {
  float: right;
}
.page-title .switch label{
  font-size: 1.1rem;
  font-weight: 600;
}
.page_header {
  position: relative;
  margin: 5px 0;
}
.page_header .filters {
  position: absolute;
  right: 15px;
  top: 0;
  margin: 0;
  padding: 0;
  display: flex;
}
.page_header .filters li {
  margin-right: 10px;
}
.page_header .filters li:last-child {
  margin-right: 0;
}
.page_header .filters .chip {
  background-color: transparent;
  border: 2px solid #ddd;
  color: #244daf;
  font-size: 11px;
  line-height: 23px;
  margin: 0;
  min-width: 120px;
  padding: 2px 3px;
}
.page_header .filters .chip.applied {
  border-color: #0e3994;
}
.page_header .filters .chip i.main {
  background-color: rgba(20, 80, 191, 0.2);
  border-radius: 30px;
  color: #095adc;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
  margin-right: 5px;
  text-align: center;
  width: 24px;
  vertical-align: middle;
}
.page_header .filters .chip i.right {
  color: #5276b1;
  font-size: 20px;
  line-height: 24px;
  margin-left: 0;
}
.panel_header_title {
  color: #15398d;
  font-size: 13px;
  font-weight: 600;
}
.panel_header_title .edit-icon{
  color: #ed3237;
  font-size: 19px;
  float: right;
}
.panel_header_title .edit-icon:hover{
  color: #db2328;
  transition: all 0.5s;
}
#settings-dropdown{
    width: 150px !important;
}

@media (max-width: 1000px){
    header nav .brand-logo{
        left: 70px;
    }
}


@media (max-width: 600px){
    header nav .brand-logo img{
        padding-top: 7px;
        width: 90px;
    }
    header nav .page-title{
        font-size: 1rem;
        margin-left: 0
    }
}
/*----------------------------------------------------
    SIDEBAR
------------------------------------------------------*/
.sidenav{
    background-color: #2b426e;
}
@media (min-width: 993px){
    .sidenav{
        height: calc(100%);
        height: -moz-calc(100%);
        overflow: hidden;
        padding-bottom: 40px;
        width: 200px;
    }
}

.navigation_menu.desktop{
    display: none;
    float: left;
    margin: 0;
}
.sidenav .menus{
    overflow: hidden;
    height: 100%;
}

.sidenav.sidenav-fixed .ps-scrollbar-y-rail {
    right: 0 !important;
}
.sidenav.sidenav-fixed li>a>i {
    color: rgba(0,0,0,1);
    line-height: 47px;
}
.sidenav.sidenav-fixed > li:first-child{
    line-height: normal;
}
.sidenav.sidenav-fixed .user-view, .sidenav.sidenav-fixed .userView {
    border-bottom: 1px solid rgba(0, 0, 0,0.2);
    margin-bottom: 0;
    padding: 10px;
}
.sidenav .user-view .circle {
    margin: auto;
    height: 80px;
    width: 80px;
}
.sidenav .user-view a img {
    width: 140px;
}
.sidenav.sidenav-fixed .user-view .name{
    color: #eeeeee;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 19px;
}
.sidenav.sidenav-fixed .user-view .app-version{
    color: #dddddd;
    margin-top: 2px;
    font-weight: 400;
    font-size: 0.785rem;
}
.sidenav.sidenav-fixed li>a {
    color: #eeeeee;
    font-weight: 400;
    padding: 0 10px;
}
.sidenav.sidenav-fixed li>a:hover, .sidenav.sidenav-fixed li>a:hover > i {
    color: #dddddd;
}
.sidenav li.active{
    background-color: #236df2;
    color: #ffffff;
}
.sidenav.sidenav-fixed,
.sidenav.sidenav-fixed ul,
.sidenav.sidenav-fixed li,
.sidenav.sidenav-fixed a {
    display: block;
    font-weight: normal;
}
.sidenav.sidenav-fixed li>a.active>i{
    color: #fff;
}
.sidenav.sidenav-fixed > li > ul > li > a.active, .sidenav.sidenav-fixed li>a.active:hover, .sidenav.sidenav-fixed ul ul li a.active, .sidenav.sidenav-fixed ul ul li.active a {
    background-color: rgba(0,0,0,0.05);
}
.sidenav.sidenav-fixed ul ul {
    display: none;
}
.sidenav.sidenav-fixed ul ul a {
    height: 40px;
    line-height: 40px;
    padding-left: 40px;
}
.sidenav.sidenav-fixed ul ul ul a {
    padding-left: 70px;
}
.sidenav.sidenav-fixed ul li a i {
    color: #dddddd;
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
    width: 20px;
}
.sidenav.sidenav-fixed ul li .arrow {
    -webkit-transition: -webkit-transform 0.15s;
    -o-transition: -o-transform 0.15s;
    transition: transform .15s;
    position: absolute;
    right: 10px;
    display: inline-block;
    font-family: 'Material Icons';
    -webkit-font-feature-settings: 'liga';
    text-rendering: auto;
    font-size: 24px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    color: #888;
}
.sidenav.sidenav-fixed ul li .arrow:before {
    content: "chevron_right";
}
.sidenav.sidenav-fixed ul li a.subdrop .arrow {
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*----------------------------------------------------
    FILTER PANEL
------------------------------------------------------*/

#SelectAllRecordsDiv{
    background-color: #e5f5ff;
    margin: 10px 0;
    padding: 15px;
}

.filter-panel {
    -webkit-transition: -webkit-box-shadow .25s;
    transition: -webkit-box-shadow .25s;
    transition: box-shadow .25s;
    transition: box-shadow .25s, -webkit-box-shadow .25s;
    position: relative;
    margin: 0;
    padding: 10px;
    border-radius: 2px;
    background-color: #fff;
}
.filter-panel .filters{
    display: block;
}
.filter-panel .search-input{
    float: left;
    vertical-align: top;
}
.filter-panel .search-input .input-field {
    margin-top: 0rem;
}
.filter-panel .action-buttons{
    position: absolute;
    right: 5px;
    top: -5px;
}
.filter-panel .action-buttons > li{
    display: inline-block;
    margin-bottom: 8px;
    padding-right: 10px;
    vertical-align: top;
}
.filter-panel .action-buttons > li:last-child{
    padding-right: 0px;
}
.filters{
    margin: 0;
    padding: 0px;
}
.filters > li{
    display: inline-block;
    padding-right: 10px;
    vertical-align: top;
}
.filters > li:last-child{
    padding-right: 0px;
}
.filters > li .search {
    width: 200px;
}
.filters > li .input-field {
    margin: 0;
}
.filters li .input-field .input-group-text{
    padding: 0 5px;
}
.filters > li input[type=text]:not(.browser-default){
    font-size: 0.9rem;
    height: 2.5rem;
    margin: 0;
}
.filters > li .select-wrapper input.select-dropdown {
    height: 2.5rem;
    line-height: 2.5rem;
    width: 100%;
    font-size: 12px;
    margin: 0;
}
.filters > li .dropdown-content li {
    min-height: 40px;
    line-height: 1.2rem;
}
.filters > li .dropdown-content li>a {
    font-size: 12px;
    color: #333;
    display: block;
    line-height: 22px;
    padding: 10px 15px;
}
.filters > li .select-dropdown li.disabled, .select-dropdown li.disabled>span, .select-dropdown li.optgroup {
    color: rgba(0,0,0,0.8);
}

.filter-panel .filters .input-field .prefix {
    color: #888;
    top: 8px;
    width: 2rem;
    font-size: 1.5rem;
}
.filter-panel .filters .input-field .prefix ~ input{
    width: calc(100% - 2rem);
    padding-left: 2rem;
    height: 2.2rem !important;
}

.filter-panel ul.action_buttons{
    position: absolute;
    right: 15px;
    top: 0;
}
.filter-panel ul.action_buttons > li{
    display: inline-block;
    margin-right: 10px;
}
.filter-panel ul.action_buttons > li:last-child{
    margin-right: 0px;
}
.filter-panel ul.action_buttons > li > a.btn{
    padding: 0 10px;
}
.filter-panel ul.action_buttons > li > a.btn i.right{
    margin-left: 5px;
}
.filter-chips .chip{
    background-color: #ef3910;
    color: white;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
}
.filter-chips .chip .material-icons{
    color: white;
    line-height: 29px;
}
.filter-panel .collapsible-body [type="checkbox"]+label {
    line-height: 18px;
}
.filter-panel .collapsible-body [type="checkbox"].filled-in:not(:checked)+label:after {
    height: 16px;
    width: 16px;
}
.filter-panel .select-wrapper input.select-dropdown {
    border: none;
    border-bottom: 1px solid #999;
    height: 35px;
    line-height: 40px;
    padding-left: 0px;
    width: calc(100% - 10px);
}
.filter-panel .select-wrapper .dropdown-content li>a, .filter-panel .select-wrapper .dropdown-content li>span{
    font-size: 12px;
}
.filter-panel .fixed-action-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    padding-top: 0px;
    margin-bottom: 0;
    z-index: 2;
}
.filter-panel .fixed-action-btn.horizontal ul {
    right: 45px;
}
.filter-panel .fixed-action-btn.horizontal ul li {
    margin: 0px 15px 0 0;
}
.filter-panel .fixed-action-btn.open ul a.btn-floating.expanded i{
    display: inline-block;
}
.filter-panel .fixed-action-btn.open ul a.btn-floating.expanded span{
    display: none;
}
.filter-panel .fixed-action-btn .btn-floating{
    height: 35px;
    width: 35px;
}
.filter-panel .fixed-action-btn .btn-floating,
.filter-panel .fixed-action-btn i{
    line-height: 35px;
}
.filters .browser-default{
    height: 2.2rem;
    border-radius: 3px;
    padding: 0.19rem 0.37rem;
    font-size: 0.95rem;
    min-width: 120px;
    max-width: 180px;
}
.filters .browser-default.dateRangePicker,
.filters .browser-default.ajaxDateRangePicker{
    min-width: 200px;
    max-width: 200px;
}
@media (min-width: 1150px)
{
    .filter-panel .fixed-action-btn.open > a.btn-floating.red{
        display: none;
    }
    .filter-panel .fixed-action-btn.horizontal.open ul{
        right: 0;
        visibility: visible;
    }
    .filter-panel .fixed-action-btn.open ul a.btn-floating{
        transform: scaleY(1) scaleX(1) translateY(0px) translateX(0px);
        opacity: 1;
    }
    .filter-panel .fixed-action-btn.open ul a.btn-floating.expanded{
        border-radius: 50px;
        padding: 0 15px;
        width: auto;
    }
    .filter-panel .fixed-action-btn.open ul a.btn-floating.expanded i{
        display: none;
    }
    .filter-panel .fixed-action-btn.open ul a.btn-floating.expanded span{
        display: inline-block;
    }
}

@media only screen and (max-width: 992px){
    section.content {
        padding: 10px 0 0 0;
    }
    .filter-panel {
        padding: 10px;
    }
    .filter-panel .search_options_trigger{
        display: block;
    }
    .filters li{
        padding-bottom: 10px;
    }
    .filters li:last-child{
        padding-bottom: 0px;
    }
    .filters > li:last-child{
        padding-right: 10px;
    }
    .filter-panel .fixed-action-btn {
        height: 40px;
        position: fixed;
        right: 16px;
        top: 67px;
        padding-top: 0px;
        margin-bottom: 0;
        z-index: 997;
    }
    .filter-panel.visible ul.action_buttons{
        margin-bottom: 0;
        position: inherit;
    }
}
@media only screen and (max-width: 500px){
    .filter-panel.visible .filters{
        display: block;
    }
    .filters li{
        display: block;
        padding-bottom: 10px;
    }
    .filters .browser-default.dateRangePicker, .filters .browser-default.ajaxDateRangePicker,
    .browser-default.chart-filter,
    .filters > li .input-field, .filters > li .search :not(.input-group .search){
        width: 100%;
        max-width: 100%;
    }
}

#right-sidebar{
    overflow: hidden;
    width: 250px;
}

#right-sidebar h4{
    background-color: #4caf50;
    color: #f5f5f5;
    margin: 0;
    padding: 8px 0 8px 10px;
}
#right-sidebar h4 i{
    padding-right: 5px;
}
#right-sidebar h4 .btn{
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
}
#right-sidebar form{
    height: 100%;
}
#right-sidebar .collapsible{
    height: 100%;
    height: calc(100% - 60px);
    height: -moz-calc(100%);
    overflow: hidden;
}
#right-sidebar .collapsible li .collapsible-body{
    line-height: normal;
    padding: 10px;
}
#right-sidebar .collapsible-header{
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
    font-weight: 600;
}
#right-sidebar .collapsible-body {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding-left: 10px;
    padding-right: 10px;
}
#right-sidebar label {
    color: #666;
}
#right-sidebar .full_width label{
    display: block;
    line-height: 3;
}
#right-sidebar footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    text-align: center;
    width: 100%;
}
#right-sidebar footer button{
    width: 100%;
}

/*----------------------------------------------------
    TABLE, PAGINATION WRAPPER
------------------------------------------------------*/
table.footable {
    margin-bottom: 10px;
}
table .total_records {
  border: 1px solid #15398d;
  border-radius: 50px;
  color: #15398d;
  display: inline-block;
  padding: 2px 0;
  text-align: center;
  width: 50px;
}
table th,
table td {
  font-size: 0.84rem;
}
table tbody tr td {
  color: #444;
}
table thead th{
    background-color: #e4edff;
}
table thead th:first-child, table tbody td:first-child, table tfoot td:first-child{
    padding-left: 10px;
}
table.highlight>tbody>tr:hover{
    background-color: rgba(228,237,255, 0.5);
}
.pagination_wrapper{
    display: flex;
    align-items: center;
}
.pagination_wrapper select,
.pagination_wrapper select:focus{
    border: none;
    padding: 0;
    width: auto;
}
.pagination_row{
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: calc(100% - 200px);
  -webkit-transition: .8s ease all;
    -o-transition: .8s ease all;
    -moz-transition: .8s ease all;
    transition: .8s ease all;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pagination_row .total_records_wrapper{
    font-weight: 500;
}
.pagination_row .page-selection ul {
  margin: 0;
}
.pagination_row .pagination li.active {
    background-color: #496b87;
    border-radius: 5px;
}
.pagination_row .pagination li a {
    font-size: 1rem;
    line-height: 28px;
}
.page-selection .pagination li.active {
    background-color: #1a44b7;
}

@media (max-width:  600px)
{
  table.footable{
    margin-bottom: 90px;
  }
  .pagination_row{
    flex-direction: column;
    width: 100%;
  }
  .pagination_row .total_records_wrapper{
    margin-bottom: 10px;
  }
}

.user_details .table_caption{
    display: flex;
    justify-content: space-between;
}
.user_details .ajaxContentForm .input-field{
    width: 180px;
}
.user_details .ajaxContentForm .buy{
    color: #2196f3;
}
.user_details .ajaxContentForm .sell{
    color: #f44336;
}
.users .profile_contact_details ul {
  margin: 0;
}
.users .profile_contact_details ul li {
  padding: 5px 0;
  color: #000;
  font-size: 13px;
  font-weight: 700;
}
.users .profile_contact_details ul li i {
  color: #999;
  float: left;
  font-size: 19px;
  margin-top: 8px;
}
.users .profile_contact_details ul li div {
  margin-left: 35px;
}
.users .profile_contact_details ul li label {
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 400;
}
.dashboard h4{
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    margin-left: 15px;
}
.dashboard .widget{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.dashboard .widget span{
    font-size: 3rem;
}
.dashboard .widget h2{
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-top: 10px;
}
.dashboard .widget h3{
    font-size: 1rem;
    font-weight: 400;
    color: #777;
    margin-top: 5px;
}
.chip.machine-running-status{
    background-color: #ff7e7e;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9rem;
}
.chip.machine-running-status.active{
    background-color: #5ec38f;
}
.chip.machine-running-status.idle{
    background-color: #ffa745;
}
.btn-floating{
    width: 32px;
    height: 32px;
    line-height: 32px;
    vertical-align: top;
}
.btn-floating.small{
    width: 22px;
    height: 22px;
    line-height: 22px;
}
.btn-floating.target-planner{
    background-color: #e54658;
}
.btn-floating i{
    line-height: 32px;
}
.btn-floating.small i{
    line-height: 22px;
    font-size: 1.2rem;
}
.browser-default.chart-filter{
    height: calc(2rem + 2px);
    padding: 0.16rem 0.38rem;
    font-size: 0.9rem;
    line-height: 1.2;
    border-color: #cccccc;
}
.browser-default.chart-filter.applied{
    border-color: #abbde1;
    background-color: #eaeff9;
    font-weight: 500;
}
.btn.chart-filter{
    height: calc(2rem + 2px);
    padding: 0.16rem 0.38rem;
    font-size: 0.9rem;
    line-height: 1.2;
    background-color: #2b426e;
    border-radius: 3px;
    color: #ffffff;
    box-shadow: none;
}
.chart-legend{
    display: inline-block;
    padding: 0;
    margin: 0;
    height: 12px;
    line-height: 12px;
    font-size: 0.85rem;
    font-weight: 400;
    margin-left: 15px;
}
.chart-legend.left-aligned{
    margin-left: 0;
    margin-right: 12px;
}
.chart-legend span{
    display: inline-block;
    float: left;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}
.popup-tooltip{
    font-size: 0.9rem;
    color: #c00;
}
@media only screen and (max-width: 500px){
    .btn.chart-filter{
        width: 100%;
        height: 36px;
        line-height: 36px;
        padding: 0;
    }
    .filters .browser-default{
        width: 100%;
        max-width: 100%;
    }
}
.autocomplete-suggestion{
    padding:6px 4px 6px 8px;
    font-size: 0.9rem;
}
.highlights .col{
    text-align: center;
    padding: 0;
}
.highlights .col .wrapper{
    border: #eeeeee solid 1px;
    background-color: #f2f2f2;
    margin: 5px;
}
.highlights .col span.label{
    color: #111111;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}
.highlights .col h4{
    color: #333333;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
}