﻿/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
md-backdrop.md-opaque.md-default-theme {
  background-color: rgba(0, 0, 0, 0.52);
}
.clear-icon {
  position: absolute;
  left: 5px;
  top: 13px;
  fill: #f3f3f3;
  height: 44px;
  width: 44px;
}
.clear-icon > i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.clear-icon.toggled {
  opacity: 0;
}
/*
    Search

*/
.searchSideBar {
  position: absolute;
  top: 0px;
  left: 0px;
  padding-left: 5px;
  padding-top: 5px;
  vertical-align: middle;
  font-size: 0.8em;
  -moz-transition: all  0.5s ease;
  -o-transition: all  0.5s ease;
  -webkit-transition: all  0.5s ease;
  transition: all  0.5s ease;
  height: 52px;
  width: 250px;
}
.searchSideBar.toggled {
  background-color: rgba(255, 255, 255, 0.02);
}
.md-whiteframe-z2 {
  background-color: rgba(255, 255, 255, 0.02);
}
.searchSideBar input {
  display: inline-block !important;
  width: auto;
  color: #f3f3f3;
}
.searchSideBar input:focus {
  color: black;
}
.searchSideBar input:focus ~ .search-icon {
  display: none;
}
.inner-search-bar {
  position: relative;
  display: inline-block;
  -moz-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.search-icon {
  cursor: pointer;
  font-size: 16px;
  margin-left: -24px;
  margin-top: 5px;
  z-index: 2;
  color: #f3f3f3;
  display: inline-block;
}
#search {
  width: 210px;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
  -moz-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
md-sidenav.md-closed {
  display: block;
}
md-sidenav {
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  overflow-x: hidden;
  overflow-y: auto;
}
#clearFilter {
  /*display:none;*/
}
#clearFilter.toggled {
  display: block;
}
/* Toggle Styles */
#wrapper {
  padding-left: 0;
  /*-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;*/
}
#wrapper.toggled {
  padding-left: 250px;
}
#sidebar-wrapper {
  z-index: 500;
  position: fixed;
  left: 250px;
  width: 0;
  height: 100%;
  margin-left: -250px;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.02);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}
#page-content-wrapper {
  width: 100%;
  position: absolute;
  padding: 0;
}
#wrapper.toggled #page-content-wrapper {
  position: absolute;
  margin-right: -250px;
}
/* Sidebar Styles */
.sidebar-nav {
  position: absolute;
  top: 0;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav li {
  position: relative;
  width: 100%;
  text-indent: 20px;
  line-height: 40px;
  list-style-type: none;
  /*relative positioning for list items along with overflow hidden to contain the overflowing ripple*/
  overflow: hidden;
}
.sidebar-nav li.active > a {
  color: #01f8e7;
}
.sidebar-nav li a:hover {
  text-decoration: none;
  color: #48fef1;
  background-color: transparent;
}
.sidebar-nav .tickMark {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 1px;
  font-size: 10px;
  color: #48fef1;
}
.sidebar-nav li a {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: white;
  text-shadow: 1px 1px 1px #000000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font: normal 14px/38px Montserrat;
  /*static positioned elements appear behind absolutely positioned siblings(.ink in this case) hence we will make the links relatively positioned to bring them above .ink*/
  position: relative /*overflow: hidden;*/;
}
.sidebar-nav li:hover {
  text-decoration: none;
  color: #fff;
  background: transparent;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}
/*.ink styles - the elements which will create the ripple effect. The size and position of these elements will be set by the JS code. Initially these elements will be scaled down to 0% and later animated to large fading circles on user click.*/
.ink {
  display: block;
  position: absolute;
  background: rgba(1, 172, 160, 0.3);
  border-radius: 100%;
  transform: scale(0);
}
/*animation effect*/
.ink.animate {
  -moz-animation: ripple 0.65s linear;
  -o-animation: ripple 0.65s linear;
  -webkit-animation: ripple 0.65s linear;
  animation: ripple 0.65s linear;
}
@-moz-keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
@-webkit-keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
@keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.dropdown-menu li a {
  color: black;
}
.transparentInput {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 3px;
  border: none;
  min-height: 30px;
  line-height: 19px;
  z-index: 1;
  padding: 0 8px;
  cursor: pointer;
  -moz-transition: all  0.2s ease !important;
  -o-transition: all  0.2s ease !important;
  -webkit-transition: all  0.2s ease !important;
  transition: all  0.2s ease !important;
}
.transparentInput:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  background: white;
  outline: 0 none;
  color: black;
}
.sidebar-nav > .sidebar-brand {
  height: 65px;
  font-size: 18px;
  line-height: 60px;
}
.sidebar-nav > .sidebar-brand a {
  color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}
/*# sourceMappingURL=simple-sidebar.css.map */