@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

/* src/styles.scss */
.clearfix:after,
.section:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  width: 0;
  visibility: hidden;
}
a.clickable {
  text-decoration: underline;
}
.clickable:hover {
  cursor: pointer;
}
body {
  height: 100%;
  width: 100%;
  background: #f1f1f1;
}
div.app-container {
  min-height: 100vh;
  background: #fff;
}
div.page-wrapper {
  max-width: 700px;
  height: 100%;
  margin: 0 auto 0 auto;
}
div.page-wrapper h1 {
  text-align: center;
  margin-bottom: 25px;
}
.spinner {
  height: 40px;
  width: 40px;
  margin: 94px auto 0 auto;
  position: relative;
  -webkit-animation: spinnerRotation 0.6s infinite linear;
  -moz-animation: spinnerRotation 0.6s infinite linear;
  -o-animation: spinnerRotation 0.6s infinite linear;
  animation: spinnerRotation 0.6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, 0.15);
  border-right: 6px solid rgba(0, 174, 239, 0.15);
  border-bottom: 6px solid rgba(0, 174, 239, 0.15);
  border-top: 6px solid rgba(0, 174, 239, 0.8);
  border-radius: 100%;
}
@-webkit-keyframes spinnerRotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes spinnerRotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes spinnerRotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes spinnerRotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.w10 {
  width: 10px;
}
.w15 {
  width: 15px;
}
.w20 {
  width: 20px;
}
.w30 {
  width: 30px;
}
.w40 {
  width: 40px;
}
.w50 {
  width: 50px;
}
.w60 {
  width: 60px;
}
.w70 {
  width: 70px;
}
.w80 {
  width: 80px;
}
.w100 {
  width: 100px;
}
.w120 {
  width: 120px;
}
.w125 {
  width: 125px;
}
.w130 {
  width: 130px;
}
.w140 {
  width: 140px;
}
.w150 {
  width: 150px;
}
.w160 {
  width: 160px;
}
.w180 {
  width: 180px;
}
.w200 {
  width: 200px;
}
.w220 {
  width: 220px;
}
.w230 {
  width: 230px;
}
.w240 {
  width: 240px;
}
.w250 {
  width: 250px;
}
.w275 {
  width: 275px;
}
.w300 {
  width: 300px;
}
.w350 {
  width: 350px;
}
.w375 {
  width: 375px;
}
.w400 {
  width: 400px;
}
.w480 {
  width: 480px;
}
.w500 {
  width: 500px;
}
.w550 {
  width: 550px;
}
.w600 {
  width: 600px;
}
.w650 {
  width: 650px;
}
.w700 {
  width: 700px;
}
.w750 {
  width: 750px;
}
.w800 {
  width: 800px;
}
.w900 {
  width: 900px;
}
input[required].ng-invalid {
  border-left: 5px solid #CC0000;
}
input[required].ng-valid {
  border-left: 5px solid green;
}
textarea[required].ng-invalid {
  border-left: 5px solid #CC0000;
}
textarea[required].ng-valid {
  border-left: 5px solid green;
}
.wrapper {
  display: flex;
  align-items: stretch;
}
#sidebar {
  min-width: 250px;
  max-width: 250px;
  min-height: 100vh;
  height: 100%;
}
#sidebar a[data-toggle=collapse] {
  position: relative;
}
#sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#sidebar.active {
  margin-left: -250px;
}
@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }
  #sidebar.active {
    margin-left: 0;
  }
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
}
p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}
a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
#sidebar {
  background: #2183c2;
  color: #fff;
  transition: all 0.3s;
}
#sidebar .sidebar-header {
  padding: 20px;
  background: #2183c2;
}
#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #47748b;
}
#sidebar ul p {
  color: #fff;
  padding: 10px;
}
#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
}
#sidebar ul li a:hover {
  color: #7386D5;
  background: #fff;
}
#sidebar ul li.active > a,
a[aria-expanded=true] {
  color: #fff;
  background: #2183c2;
}
#sidebar ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #2183c2;
}
#content {
  padding: 15px 15px 100px 15px;
  width: 100%;
}
#content h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}
@media print {
  #sidebar {
    display: none;
  }
}
.clearfix {
  width: 100%;
}
a.sort {
  cursor: pointer;
  color: blue;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
