.blue-login {
    border: 1px solid #f99517;
    border-radius: 10px;
    padding: 20px 40px;
}

.auth-wrapper .auth-box {
    background: #2a2a2a;
    position: absolute;
    right: 150px;
}

.auth-wrapper .auth-box.box-white {
    background: #fff;
}

.blue-login .input-group-text {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.blue-login .input-group>.form-control:not(:first-child) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.waves-effect {
    border-radius: 10px;
}

.form-control {
    font-size: .875rem;
    width: 92%;
    height: 22px;
}

html[dir="ltr"] body .m-b-20 {
    margin-bottom: 0;
}

.shadow {
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.15) !important;
}

.h-256 {
    height: 256px;
}

/* SIDEBAR - AIZAT */

#main-wrapper[data-layout="vertical"] .left-sidebar[data-sidebarbg="skin5"], #main-wrapper[data-layout="vertical"] .left-sidebar[data-sidebarbg="skin5"] ul, #main-wrapper[data-layout="horizontal"] .left-sidebar[data-sidebarbg="skin5"], #main-wrapper[data-layout="horizontal"] .left-sidebar[data-sidebarbg="skin5"] ul {
    /* box-shadow: 0 3px 3px -2px rgba(39,44,51,.1), 0 3px 4px 0 rgba(39,44,51,.04), 0 1px 8px 0 rgba(39,44,51,.02); */
    background: #ffffff;
}

#main-wrapper[data-layout="vertical"] .topbar .top-navbar .navbar-header[data-logobg="skin4"], #main-wrapper[data-layout="horizontal"] .topbar .top-navbar .navbar-header[data-logobg="skin4"] {
    background: #292929;
    border-bottom: 2px solid #F99417!important;
}

#main-wrapper[data-layout="vertical"] .topbar .navbar-collapse[data-navbarbg="skin6"], #main-wrapper[data-layout="vertical"] .topbar[data-navbarbg="skin6"], #main-wrapper[data-layout="horizontal"] .topbar .navbar-collapse[data-navbarbg="skin6"], #main-wrapper[data-layout="horizontal"] .topbar[data-navbarbg="skin6"] {
    background: #292929;
    border-bottom: 2px solid #F99417!important;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgb(249 148 23 / 61%);
}

.navbar-light .navbar-nav .nav-link i {
    color: #f99417;
}

.sidebar-nav ul .sidebar-item .sidebar-link i {
    color: #F99417;
}

.sidebar-nav ul .sidebar-item .sidebar-link {
    color: #464646;
    font-weight: 500;
}

.sidebar-nav ul .sidebar-item .sidebar-link span {
    padding-left: 10px;
}

.sidebar-nav .has-arrow::after {
    border-color: #3e3e3e;
}

/* Sidebar Hover Orange Theme */

.sidebar-nav ul .sidebar-item .first-level .sidebar-item.active .sidebar-link {
    background: #ffad35;
    color: #fff;
    /* margin: 5px 0;
    padding: 12px 10px; */
}

.sidebar-nav ul .sidebar-item .first-level .sidebar-item.active .sidebar-link i {
    color: #ffffff;
}

.sidebar-nav ul .sidebar-item .sidebar-link:hover {
    background: #fef1dd;
    color: #444444;
    border-radius: 0;
}

/* Breadcrumb - AIZAT */

.breadcrumb {
    /*centering*/
    display: inline-block;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 5px;
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    counter-reset: flag;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 14px;
    line-height: 36px;
    color: #565656;
    padding: 0 10px 0 40px;
    background: #666;
    background: linear-gradient(#ffffff, #f4f4f4);
    position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
    padding-left: 46px;
    border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
    left: 14px;
}
.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
    padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
    background: #333;
    background: linear-gradient(#ffffff, #f4f4f4);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
    background: #333;
    background: linear-gradient(#ffffff, #f4f4f4);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
    content: '';
    position: absolute;
    top: 0; 
    right: -20px; /*half of square's length*/
    /*same dimension as the line-height of .breadcrumb a */
    width: 36px; 
    height: 36px;
    /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
    length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
    if diagonal required = 1; length = 1/1.414 = 0.707*/
    transform: scale(0.707) rotate(45deg);
    /*we need to prevent the arrows from getting buried under the next link*/
    z-index: 1;
    /*background same as links but the gradient will be rotated to compensate with the transform applied*/
    background: #666;
    background: linear-gradient(#ffffff, #f4f4f4);
    box-shadow: 2px -2px 0 2px rgb(249 148 23 / 40%);
    border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
    content: none;
}

.breadcrumb a.home {
    padding-left: 15px;
    color: #f99417;
    font-size: 20px;
}

/* INPUT CHECBOX -AIZAT */

.table td {
    padding: 10px;
    vertical-align: middle;
}

.table thead th, .table th {
    font-weight: 600;
    border-bottom: 0;
}

input {
  --s: 18px; /* adjust this to control the size*/
  
  height: calc(var(--s) + var(--s)/5);
  width: auto; /* some browsers need this */
  aspect-ratio: 2.25;
  border-radius: var(--s);
  /* margin: calc(var(--s)/2); */
  display: inline-grid;
  background-color:#e9e8e8;
  box-sizing: content-box;
  overflow: hidden;
  transition: .3s .1s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input:before {
    content: "";
    padding: calc(var(--s)/10);
    --_g: radial-gradient(circle closest-side at calc(100% - var(--s)/2) 50%,#3a4166 96%,#0000);
    background: var(--_g) 0 /var(--_p,var(--s)) 100% no-repeat content-box, var(--_g) var(--_p,0)/var(--s) 100% no-repeat content-box, #fff;
    mix-blend-mode: darken;
    filter: blur(calc(var(--s)/12)) contrast(11);
    transition: .4s, background-position .4s .1s, padding cubic-bezier(0,calc(var(--_i,-1)*200),1,calc(var(--_i,-1)*200)) .25s .1s;
}
input:checked {
  background-color: #ffb300;
}
input:checked:before {
  padding: calc(var(--s)/10 + .05px) calc(var(--s)/10);
  --_p: 100%;
  --_i: 1;
}


/* CONTENT - AIZAT */

/* body {
    color: #f2f9ff;
} */

a {
    color: #f99615;
}

.page-wrapper {
    background: #F5F5F5;
}

.card {
    border-radius: 10px;
    /* background-color: #22252e; */
    color: #535353;
}

.card-header:first-child {
    color: #444444;
}

.card-total {
    background-color: #ff4a00;
    color: #fff;
}

.card-warning {
    border: 1px solid #FFC107;
    /* background-color: #fff9e9; */
}

.card-primary {
    border: 1px solid #15b6ff;
    /* background-color: #ecf9ff; */
}

.card-success {
    border: 1px solid #8fff0d;
    /* background-color: #f9fff1; */
}

.card-danger {
    border: 1px solid #F44336;
    /* background-color: #fff4f4; */
}

.bg-total {
    background-image: url('assets/assets/images/indexing/total-1.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
}

.icon-status-warning {
    background-color: #ffb900;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
    box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
}

.icon-status-white {
    background-color: #ffffff;
    color: #ff4a00;
    font-size: 18px;
    padding: 15px 20px;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
    box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
}

.icon-status-primary {
    background-color: #4254ba;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
    box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
}

.icon-status-success {
    background-color: #0ee9d4;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
    box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
}

.icon-status-danger {
    background-color: #ff4537;
    color: #fff;
    font-size: 18px;
    padding: 15px 20px;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
    box-shadow: 2px 2px 3px rgba(27,23,30,.1)!important;
}

.btn-rounded {
    border-radius: 10px;
}

.content-search {
    background-color: #f7f7f7;
    border-radius: 10px;
    border: 1px solid #e3e2e2;
    padding: 20px;
    align-items: center !important;
    /* margin: 0 0 20px; */
}

.modal-header {
    background-color: #f7f7f7;
    border-radius: 10px;
}

.modal-content {
    border-radius: 10px;
}

.table .thead-light th {
    background-color: #f7f7f7;
}

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

.page-item.active .page-link {
    z-index: 1;
    color: #d6830b;
    background-color: #ffd393;
    border-color: #ffd393;
}

.page-link {
    color: #303e67;
}

.bg-lock {
  background-image: url("../images/indexing/bg-4.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.bg-lock:before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: #000f647a;
}

.btn-primary {
    color: #ffffff !important;
    background-color: #ffad35;
    border-color: #FB8C00;
    border-radius: 0.25rem;
}

.btn-primary:hover {
    color: #ef9e29 !important;
    background-color: #ffce88;
    border-color: #ef9e29;
}

.btn-info {
    background: linear-gradient(14deg, #506ee4 0%, rgba(80,110,228,0.6));
    color: #fff;
    -webkit-box-shadow: 0 7px 14px 0 rgba(80,110,228,0.5);
    box-shadow: 0 7px 14px 0 rgba(80,110,228,0.5);
    border: none;
}

.btn-info:hover {
    background: linear-gradient(14deg, #506ee4 0%, rgba(80,110,228,0.6));
    color: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
    box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
}

.btn-warning {
    background: linear-gradient(14deg, #f09004 0%, rgb(238 179 91));
    color: #2a2a2a;
    -webkit-box-shadow: 0 7px 14px 0 rgb(184 184 184 / 60%);
    box-shadow: 0 7px 14px 0 rgb(184 184 184 / 60%);
    border: none;
}

.btn-warning:hover {
    background: linear-gradient(14deg, #ffad35 0%, rgb(255 173 53 / 60%));
    color: #ffffff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
    box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
}

.btn-danger {
    background: linear-gradient(14deg, #ef4d56 0%, rgba(239,77,86,0.7));
    color: #fff;
    -webkit-box-shadow: 0 7px 14px 0 rgba(239,77,86,0.5);
    box-shadow: 0 7px 14px 0 rgba(239,77,86,0.5);
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(14deg, #ef4d56 0%, rgba(239,77,86,0.7));
    color: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
    box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
}

.btn-success {
    background: linear-gradient(14deg, #41cbd8 0%, rgba(65,203,216,0.7));
    color: #fff;
    -webkit-box-shadow: 0 7px 14px 0 rgba(65,203,216,0.5);
    box-shadow: 0 7px 14px 0 rgba(65,203,216,0.5);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(14deg, #41cbd8 0%, rgba(65,203,216,0.7));
    color: #fff;
    -webkit-box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
    box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
}

.btn-default {
    background: linear-gradient(14deg, #EEEEEE 0%, rgb(255 255 255 / 60%));
    color: #2a2a2a;
    -webkit-box-shadow: 0 7px 14px 0 rgb(184 184 184 / 60%);
    box-shadow: 0 7px 14px 0 rgb(184 184 184 / 60%);
    border: none;
}

.btn-default:hover {
    background: linear-gradient(14deg, #EEEEEE 0%, rgb(255 255 255 / 60%));
    color: #2a2a2a;
    -webkit-box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
    box-shadow: 0 1px 2px 0 rgba(234,240,249,0.5);
}

.badge-success {
    color: #1cb88d;
    background-color: #5ce9c24a;
    border: 1px solid #5ce9c2;
    border-radius: 0.25rem;
}

.btn-flat-gray {
    color: #fff;
    background-color: #9ba7ca;
    border-color: #9ba7ca;
    border-radius: 0.25rem;
}

.btn-flat-gray:hover {
    color: #fff;
    background-color: #8291bd;
    border-color: #7a8ab8;
}

.btn-flat-purple {
    color: #fff;
    background-color: #6150d3;
    border-color: #6150d3;
    border-radius: 0.25rem;
}

.btn-flat-purple:hover {
    color: #fff;
    background-color: #715fea;
    border-color: #715fea;
}

.badge-danger {
    color: #d72a34;
    background-color: #ff868d5e;
    border: 1px solid #ff868d;
    border-radius: 0.25rem;
}

.badge-warning {
    color: #fff;
    background-color: #ff9f43;
    border-radius: 0.25rem;
}

.badge.badge-soft-success {
    background-color: rgba(45,218,181,0.15) !important;
    color: #2ddab5 !important;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(45,218,181,0.05);
    box-shadow: 0px 0px 13px 0px rgba(45,218,181,0.05);
}

.badge.badge-soft-danger {
    background-color: rgba(239,77,86,0.15) !important;
    color: #ef4d56 !important;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(239,77,86,0.05);
    box-shadow: 0px 0px 13px 0px rgba(239,77,86,0.05);
}

.badge.badge-soft-purple {
    background-color: rgba(109,129,245,0.15) !important;
    color: #6d81f5 !important;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(109,129,245,0.05);
    box-shadow: 0px 0px 13px 0px rgba(109,129,245,0.05);
}

.label-success {
    color: #1cb88d;
    background-color: #5ce9c24a;
    border: 1px solid #5ce9c2;
    border-radius: 0.25rem;
}

.label-danger {
    color: #d72a34;
    background-color: #ff868d5e;
    border: 1px solid #ff868d;
    border-radius: 0.25rem;
}

.label-warning {
    color: #ff9f43;
    background-color: #ffc65252;
    border: 1px solid #ff9f43;
    border-radius: 0.25rem;
}

.label-default {
    background-color: #f8f9fa;
    color: #3e5569;
}

.select2-container {
    width: 100% !important;
    display: inline-block !important;
}

.select2-container--bootstrap4 .select2-results__option--highlighted, .select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] {
    color: #fff;
    background-color: #d88846 !important;
}

@media (min-width: 576px) {
.modal-dialog {
    margin: 6.75rem auto;
    }

.col-sm-8 {
    display: inline-block;
    }
}

/* Switch Color Theme */

.topbar .top-navbar .navbar-nav > .nav-item.switch {
    font-size: 0.875rem;
    line-height: 80px;
    height: 64px;
}

input[type="checkbox"].switch-color {
  position: relative;
  z-index: 1;
  appearance: none;
  /* width: 90px; */
  /* height: 30px; */
  border-radius: 30px;
  background: #f99516;
  outline: 0;
  cursor: pointer;
}

input[type="checkbox"].switch-color:checked{
  background: #f99516;
}

input[type="checkbox"].switch-color:after{
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: khaki;
  border-radius: 50%;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #f4f4f4;
  box-shadow: 0 0 0 3px rgba(0,0,0,.1);
  transition: all .35s;
}

input[type="checkbox"].switch-color:checked:after{
  left: calc(100% - 18px);
}
