* {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}
body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

a {
  color: #000;
  text-decoration: none;
}

.text-muted {
  color: #90939a;
}
.panel-heading > h2 {
    margin: 0;
    padding: 3px;
}

.panel-body > ul {
    padding: 9px;
}

.panel-default > .panel-heading {
  font-weight: bold;
  color: #444;
  text-transform: uppercase;
  padding: 10px 0 10px 0;
  background-color: #f6f6f6;
  border-color: #cfd9db;
}

.form-control {
  border-radius: 0;
}

.center-form {
  width: 330px;
  margin: 12% auto;
}

.signup-or-separator {
  position: relative;
  height: 34px;
  text-align: center;
  background: none;
}

.signup-or-separator hr {
  width: 90%;
  margin: -16px auto 10px auto;
  border-top: 1px solid #dce0e0;
}

.signup-or-separator .text {
  display: inline-block;
  padding: 8px;
  margin: 0;
  background-color: #fff;
}

.has-feedback .form-control-feedback {
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: #555;
}

.password-strength-indicator {
  position: absolute;
  top: 10px;
  right: 0;
  width: 5px;
  padding: 0 15px;
}

.password-strength-indicator span {
  display: block;
  width: 5px;
  height: 5px;
  margin-bottom: 2px;
  background: #ebeef1;
  border-radius: 5px;
}

[class^='ion-'] {
  font-size: 1.2em;
}

.alert-material {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-block;
  min-height: 48px;
  padding: 13px 24px 12px;
  font-family: 'Roboto', sans-serif;
  color: #f1f1f1;
  cursor: default;
  background: #323232;
  border-radius: 2px;
  outline: none;
}

.panel-body {
    padding: 0 10px 10px 10px;
    font-size: 10pt;
}


/*********************
* Animations
*********************/

.fadeZoom.ng-enter {
  -webkit-animation-duration: 0.6s, 0.2s;
  -moz-animation-duration: 0.2s, 0.2s;
  -ms-animation-duration: 0.2s, 0.2s;
  animation-duration: 0.2, 0.2s;
  -webkit-animation-name: fadeIn, zoomIn;
  -moz-animation-name: fadeIn, zoomIn;
  -ms-animation-name: fadeIn, zoomIn;
  animation-name: fadeIn, zoomIn;
}

.fadeZoomFadeDown.ng-enter {
  -webkit-animation-duration: 0.2s, 0.2s;
  -moz-animation-duration: 0.2s, 0.2s;
  -ms-animation-duration: 0.2s, 0.2s;
  animation-duration: 0.2s, 0.2s;
  -webkit-animation-name: fadeIn, zoomIn;
  -moz-animation-name: fadeIn, zoomIn;
  -ms-animation-name: fadeIn, zoomIn;
  animation-name: fadeIn, zoomIn;
}

.fadeZoomFadeDown.ng-leave {
  -webkit-animation: fadeOutDown 0.2s;
  -moz-animation: fadeOutDown 0.2s;
  -ms-animation: fadeOutDown 0.2s;
  animation: fadeOutDown 0.2s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    -moz-transform: scale3d(0.8, 0.8, 0.8);
    -ms-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}
.noteText {
    height: 300px !important;
}
.taskDone, .taskDone:hover {
    text-decoration: line-through;
}
p.ng-scope {
    margin: 0;
}

.pure-button {
    color: white;
    border: none;
    padding: 10px;
}
.button-error {
    background: #ca3c3c;
}
.button-success {
    background: #1cb841;
}
.pure-button-primary {
    background: #0078e7;
}
.button-secondary {
    background: rgb(66, 184, 221);
}
.splash {
    margin: 50px auto;
}
.noteform input, .noteform textarea {
    width: 98%;
}
.panel  ul li a {
    text-decoration: none !important;
}

nav .header {
    text-transform: uppercase;
    font-size: 0pt;
    color: #fff;
    background: #1f8dd6;
    padding: 0.6em 0px 0.6em 0.6em;

}
nav ul {
    padding: 0;
    margin: 0;
}
nav ul li {
    list-style: none;
    padding: 10px;
    font-size: 0pt;
}
nav ul li a i {
    font-size: 20pt !important;
}
nav a {
    color: #999;
    display: block;
    text-decoration: none;
}
.content-side li {
    list-style: none;
}

.content-side li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 80%;
    overflow: hidden;
}

/* Flexbox trickery */
html,
body {
    padding: 0;
    margin: 0;
}

.flexbox {
    position: absolute;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
}

.flex {
    background: #fff;
    flex: 1;
    display: flex;
}

.nav {
    background: #2A363B;
    flex: 0 0 2.9em;
    display: block;
    position: fixed;
    height: 100%;
    left: 0;
}
.fadeZoom {
    display: flex;
    flex: 1 100;
    margin-left: 45px;
}

.content-side {
    background: #eee;
    display: block;
    flex: 0 0 5em;
}

.content-main {
    flex: 1;
}

@media (min-width: 768px) {
    nav .header {
        font-size: 110%;
    }
    nav ul li { font-size: 11pt; }
    nav ul li a i { font-size: 0pt !important; }
    .nav {
        flex: 0 0 9em;
        position: static;
    }
    .content-side {
        flex: 0 0 9em;
    }
    .fadeZoom { margin-left: 0; }
}

.grid {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.grid-cell {
    flex: 1;
}
.grid-flexcells > .grid-cell {
    display: flex;
}
.grid-top {
    align-items: flex-start;
}
.grid-bottom {
    align-items: flex-end;
}
.grid-center {
    align-items: center;
}
.grid-justify {
    justify-content: center;
}
.grid-cell-top {
    align-self: flex-start;
}
.grid-cell-bottom {
    align-self: flex-end;
}
.grid-cell-center {
    align-self: center;
}
.grid-cell-auto {
    flex: none;
}
.grid-fit > .grid-cell {
    flex: 1;
}
.grid-full > .grid-cell {
    flex: 0 0 100%;
}
.grid-1of2 > .grid-cell {
    flex: 0 0 50%;
}
.grid-1of3 > .grid-cell {
    flex: 0 0 33.3333%;
}
.grid-1of4 > .grid-cell {
    flex: 0 0 25%;
}

@media (min-width: 24em) {
    .small-grid-fit > .grid-cell {
        flex: 1;
    }
    .small-grid-full > .grid-cell {
        flex: 0 0 100%;
    }
    .small-grid-1of2 > .grid-cell {
        flex: 0 0 50%;
    }
    .small-grid-1of3 > .grid-cell {
        flex: 0 0 33.3333%;
    }
    .small-grid-1of4 > .grid-cell {
        flex: 0 0 25;
    }
}
@media (min-width: 48em) {
    .large-grid-fit > .grid-cell {
        flex: 1;
    }
    .large-grid-full > .grid-cell {
        flex: 0 0 100%;
    }
    .large-grid-1of2 > .grid-cell {
        flex: 0 0 50%;
    }
    .large-grid-1of3 > .grid-cell {
        flex: 0 0 33.3333%;
    }
    .large-grid-1of4 > .grid-cell {
        flex: 0 0 25%;
    }
}
button { border: none; }
.pure-u-2-3 ul li {
    list-style: none;
}
.pure-u-2-3 ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.pure-u-2-3 ul {
    margin: 0;
    padding: 0;
}
.list {
    font-size: 1.5em;
}
