:root{
    --DarkTheme-Sidebar: #1f1f23;
    --DarkTheme-Navbar: #18181b;
    --DarkTheme-Body: #242425;
    --DarkTheme-Font: #fff;
    --DarkTheme-Description: #d2d2d2;
    --DarkTheme-Items: #31353D;
}


.skin-blue .sidebar-menu>li.active>a{
    border-left-color: #222429;
}

.skin-blue .sidebar-menu>li:hover>a, .skin-blue .sidebar-menu>li.active>a, .skin-blue .sidebar-menu>li.menu-open>a{
    color: #fff;
    background: #3a3f48;
}

::-webkit-scrollbar{
    width: 5px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb {
    background: #525965;
    border: 0px none #ffffff;
    border-radius: 0px;
}

.skin-blue .sidebar-menu>li>.treeview-menu{
    margin: 0 1px;
    background: #3a3f48;
}

.main-footer {
    background: #3a3f48;
    padding: 15px;
    color: #d2d2d2;
    /* border-top: 1px solid #31353D; */
    border: none;
}

.box-header {
    color: #fff;
    display: block;
    padding: 10px;
    position: relative;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #31353D;
}

div.dataTables_wrapper div.dataTables_length select {
    width: 75px;
    display: inline-block;

    background: #3a3f48;
    color: #fff;
    border: none;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;

    background: #3a3f48;
    color: #fff;
    border: none;
    outline: none;
    
    transition: all .2s ease-in-out;
}

div.dataTables_wrapper div.dataTables_filter input:hover {
    background: #222429;
}

.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;

    background: #222429;
    color: #fff;
    border-color: #222429;

    transition: all .2s ease-in-out;
}

.pagination>li:first-child>a:hover, .pagination>li:first-child>span:hover, .pagination>li:last-child>a, .pagination>li:last-child>span:hover{
    background: #3a3f48;
    border-color: #3a3f48;
    color: #fff;
}

.box .nav-stacked > li:hover, .nav-stacked > li > a:hover{
    background: #3a3f48;
    border-color: #222429;
    color: #fff;
}
.box .nav-stacked > li{
    border-color: #222429;
    color: #fff;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    border-left-color: #222429;
    background: #3a3f48;
}

.pagination>li:last-child>a, .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    
    background: #222429;
    color: #fff;
    border-color: #222429;

    transition: all .2s ease-in-out;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #3a3f48;
    border-color: #3a3f48;
}

.table > thead > tr > th {
    border-bottom: 2px solid #3a3f48;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: text-top;
}

table.dataTable {
    clear: both;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    max-width: none !important;
    /* border-collapse: separate !important; */
}

.btn-settings{
    background: #31353D;
    color: #fff;
    transition: all .1s ease-in-out;
}


.btn-settings:hover, .btn-poll:hover, .btn-dealer:hover{
    background: #525965;
    color: #fff;
}

.btn-dealer{
    background: #3a3f48;
    color: #fff;
    transition: all .1s ease-in-out;
    width: 100%;
}


.btn-poll{
    background: #3a3f48;
    color: #fff;
    transition: all .1s ease-in-out;
    padding: 4px 26px;
    font-size: 17px;
}

.btn-card{
    background: darkred;
    color: #fff;
    transition: all .1s ease-in-out;
    outline: none;
}


.btn-card:hover{
    background: rgb(100, 1, 1);
    color: #fff;
}


.btn-table:hover{
    background: #525965;
    color: #fff;
}

#btn-delete{
    background: #3a3f48;
    color:#fff;
    transition: all .1s ease-in-out;
    padding: 3px 8px;
}

#btn-delete:hover{
    background: #525965;
}

#btn-save{
    color:#fff;
    transition: all .1s ease-in-out;

    background-color: #3a3f48;
    border-color: #3a3f48;
}

#btn-save:hover{
    transform: scale(1.03);
        background: #525965;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 3px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(9px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .example-modal .modal {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    display: block;
    z-index: 1;
  }

  .example-modal .modal {
    background: transparent !important;
  }

  .modal-footer {
    padding: 15px;
    text-align: center;
    border: none;
}

.modal-header {
    border: none;
}

/* @media (min-width: 992px){
    .col-md-4 {
        width: 563px;
    }
} */

.nav-tabs-custom > .nav-tabs > li.active {
    border-top-color: #222429;
}

.nav-tabs {
    border: none;
}

.nav-tabs-custom > .nav-tabs > li.active > a, .nav-tabs-custom > .nav-tabs > li.active:hover > a {
    background-color: #3a3f48;
    border: none;
    color: #fff;
}

.nav-tabs-custom > .nav-tabs > li > a:hover {
    color: #d2d2d2;
}

.nav-tabs-custom > .nav-tabs > li > a {
    color: #fff;
    border-radius: 0;
}

.nav-tabs-custom > .tab-content {
    background: #31353D;
    max-height: 233px;
    padding: 10px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    overflow-y: auto;
}

.chiller-theme .sidebar-footer {
    background: #3a3f48;
    box-shadow: 0px -1px 5px #282c33;
    border-top: 1px solid #464a52;
}

@media (max-width: 1076px) {
    #table-body{
        overflow-x: auto;
    }    
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}

.dropdown-menu{
    background: #31353D;
    color: #fff;
    border: none;
}

.dropdown-header{
    background: #31353D;
    color: #fff;
    border: none;
}

.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  font-size: 12px;
  background-color: #31353D!important;
  padding: 7px 10px;
  border: none;
  color: #fff !important;
  text-align: center;
}

.navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  text-decoration: none;
  font-weight: normal;

  background-color: #3a3f48!important;
}

.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  background: #3a3f48;
  text-decoration: none;
}

.navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
.navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  display: block;
  white-space: nowrap;
  /* Prevent text from breaking */
  border-bottom: 1px solid #464a52;
}
.nav-tabs-custom > .nav-tabs > li {
    margin-bottom: 0px;
    margin-right: 0px;
}

.timeline > li > .timeline-item > .timeline-header {
    margin: 0;
    color: #555;
    border-bottom: 1px solid #f4f4f4;
    padding: 6px;
    font-size: 16px;
    line-height: 1.1;
}

.timeline > li > .timeline-item > .timeline-body, .timeline > li > .timeline-item > .timeline-footer {
    padding: 7px;
}

.timeline > li {
    position: relative;
    margin-right: 10px;
    margin-bottom: 5px;
}

#calendar {
    max-height: 78vh;
    overflow: auto;
}

.fc-unthemed .fc-today {
    background: #222429!important;
}
.fc-widget-header {
    background: #31353D!important;
}

.profile-avatar:hover{
    cursor: pointer;
}

.user-panel > .image > img {
    width: 100%;
    max-width: 45px;
    height: auto;
    max-height: 45px;
}
#toast-container>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
    color: #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity = 80);
}