/* All theam related .css code should be written here */
/*---------------- THEAMING --------------------- color1:#1a939b, color2:#004bad*/ 
.thm-bg-color{
	/*background: linear-gradient(to right, #024c58 0%, #23863a 100%); 008080*/
	background-color: #1a939b !important;
}
.thm-color{
	color: #1a939b;
}
.thm-color-dark{
	color:#004bad;
}
.color-white{
    color:#ffff;
}
.thm-color-inv{
	color: #fff;
}
.thm-color-inv:hover{
	color: #1a939b;
}
.thm-bg-color-dark{
	background:#004bad;
}
.thm-bg-color-lite{
	background:#004bad;
}
.thm-bg-color-white{
	background:white;
}
.thm-info-card-height{
	height: 450px;
}
.dropdown-item:hover{
	background: linear-gradient(to right, #1a939b 0%, #1a939b 100%);
	color:white;
}
.scroll-item:hover{
    background: linear-gradient(to right, #1a939b 0%, #1a939b 100%);
    color:white;
}
.thm-btn{
  background-color: #1a939b !important;
}
.thm-btn:hover{
  background-color: #004bad !important;
  color:white !important;
}
a{
    text-decoration: none;
    color: #1a939b;
}
a:hover{
    text-decoration: none;
    color: #fff;
}
.leftNavItem{
    background-color: #1a939b !important;
    color:#fff!important;
    border-radius: 3px !important;
    margin-bottom: 3px !important;
    padding: 3px !important;
    height:35px;
    font-size:14px;
}
.leftNavItem:hover{
    background-color: #1a939b !important;
    color:#fff!important;
}
.rightNavItem{
    color:#1a939b!important;
    font-size:12px;
    border:none !important;
    padding: 3px !important;
    border-radius: 3px !important;
    height:30px;
}
.rightNavItem:hover{
    background-color:#1a939b !important;
    color:#fff !important;
}
/* Open menu on hover*/
.dropdown:hover>.dropdown-menu {
    display: block;
} 
.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
      pointer-events: none;
}
.special-link{
    height: 50px;
    width:auto;
    border-radius: 5px;
    border-style: solid;
    border-color: #1a939b;
    text-align: center;
    border-width: 1px;
    padding-top: 10px;
    background-color: #ecf5f5;
}
.special-link:hover{
    background-color: #1a939b;
    border-color: #1a939b;
    color:#ffffff;
    box-shadow: 3px 5px 5px #888888;
}
.tag{
    height: 35px;
    border-style: solid;
    border-width: 1px;
    border-color: #1a939b;
    background-color: #ecf5f5;
    text-align: center;
    padding: 4px 15px 5px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 2px 3px 3px #dad8d8;
}
.tag:hover{
    background-color: #1a939b;
    border-color: #1a939b;
    color:#ffffff;
    box-shadow: 3px 5px 5px #888888;
}
.info-textarea{
    width:100%;
    height:450px;
    border-color: #1a939b;
    border-radius: 5px;
}
/* NavBar */
.navbar-custom {
    background-color: #1a939b;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #ffffff !important;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
    border-radius: 3px;
    background-color: #1a939b !important;
    color: #ffffff !important;
}
.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus {
    color: #ffffff !important;
}
.navbar-custom .navbar-nav .nav-item.active .nav-link {
    color: #00BFBF !important;
}
.navbar-custom .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-custom .navbar-nav .dropdown-menu .dropdown-item:focus {
    background-color: #1a939b !important;
}
.navbar-custom .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}
.navbar-custom .navbar-toggler-icon {
    background-color: #fff;
}
.social-icons a:hover {
    background-color: #1a939b;
}

/* Application specific css codes starts ---------------------------- */
.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
  }
  .form-signin .checkbox {
    font-weight: 400;
  }
  .form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
  }
  .form-signin .form-control:focus {
    z-index: 2;
  }
  .form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  /* Application specific css codes Ends ---------------------------- */

  
  /*----------------------------------------------------*/
  /* 
  .feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  }
  
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 48px; 
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
  }
  
  .sidebar .nav-link {
    font-weight: 500;
    color: #333;
  }
  
  .sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
  }
  
  .sidebar .nav-link.active {
    color: #007bff;
  }
  
  .sidebar .nav-link:hover .feather,
  .sidebar .nav-link.active .feather {
    color: inherit;
  }
  
  .sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
  }
 
  .navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  }
  
  .navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
  }
  
  .form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
  }
  
  .form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  }
 
  .border-top { border-top: 1px solid #e5e5e5; }
  .border-bottom { border-bottom: 1px solid #e5e5e5; } */