.login-page{height:auto;}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{background: #0a7ea4;}
.layout-fixed .main-sidebar{border-right: 2px solid #0a7ea4;}


/* INPUT TYPE NUMBER ARROW HIDE START */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: none;
    -moz-appearance: textfield;
}

/* INPUT TYPE NUMBER ARROW HIDE END */


/* SCROLL BAR STYLING */
/* Width */
::-webkit-scrollbar {
  width: 10px; 
  height: 15px;/* Width of the entire scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent; /* Background color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color:var(--gray);
  border-radius: 5px;
  /*Roundedcornersofthehandle*/:;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color:#405466; 
}

  .title1 {
    font-size: 2.25rem;
  }
  .title2 {
    font-size: 2rem;
  }
  .title3 {
    font-size: 1.75rem;
  }
  .title4 {
    font-size: 1.5rem;
  }
  .title5 {
    font-size: 1.25rem;
  }
  .title6 {
    font-size: 1rem;
  }
  .login-page {
    height: auto;
  }
  .sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
  .sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
    background: var(--primary-color);
  }
  .layout-fixed .main-sidebar {
    border-right: 2px solid var(--primary-color);
    overflow-x: hidden
  }
  .main-header {
    background: var(--primary-color);
    
  }
  .main-header ul li a {
    color: #fff;
  }
  .nav-pills .nav-link {
    color: #2a3547;
  }
  .info-box .progress .progress-bar {
    background: #222;
  }
  .info-box {
    border-width: 2px !important;
  }
  .nav-pills .nav-link:not(.active):hover {
    color: var(--primary-color) !important;
  }
  .uppercase-text {
    text-transform: uppercase;
  }
  .btn-theme,    
  .btn-danger {
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .btn-theme,
  .btn-danger,
  .btn-theme:hover,
  .btn-danger:hover {
    color: #fff;
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color) ;     
  }
/*   
  .btn-theme:hover::after,
  .btn-danger:hover::after {
    transition: all 0.5s ease-out;
    transform: scale(1, 1);
  } */
  /* .btn-theme::after,
  .btn-danger::after {
    content: "";
    background: var(--light-color);
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
    border-radius: 50%;
    left: -50%;
    right: -50%;
    top: -150%;
    bottom: -150%;
    line-height: 8.34em;      
    transform: scale(0, 0);
    transition: all 0.5s ease;
  } */
  .accordion-header {
    background: #FFDEAD;
    padding: 10px;
    cursor: pointer;
    user-select: none;
    border-radius: 15px;
    /* border-bottom: 1px solid #ddd; */
    /* color: #fff; */
  }
  .accordion-content {
    padding: 12px;
    display: none;
  }       
  .accordion-item.active .accordion-content {
    display: block;
  }