/* ----- RESET --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

    /**
  @desc:    defines the main layout incuding margins, paddings and heights / widths, excluding the modules
*/
body {
  margin: 0;
  padding: 0;
  overflow-x: none; }

[data-component=login],
[data-component=sidebar],
[data-component=content] {
  display: none; }

[data-state="signed-in"] [data-component=sidebar],
[data-state="signed-in"] [data-component=content] {
  display: block; }

[data-state="signed-out"] [data-component=login] {
  display: block; }

.sidebar {
  width: 240px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.sidebar header {
  padding: 0 0 0 1em;
  border-bottom: 1px solid; }

.sidebar h1 {
  margin-top: 0;
  line-height: 1.75em; }

.sidebar .helpers {
  display: none;
  position: absolute;
  bottom: 0;
  padding: 0 0 0 1em; }

.sidebar .helpers li {
  display: inline;
  padding: 0;
  margin: 0; }

.sidebar .helpers li:nth-child(n+2):before {
  content: "|";
  margin: 0 .25em 0 0; }

.pluginList {
  margin: 0;
  padding: 0; }

.pluginList a {
  height: 4em;
  padding: 0 0 0 1.25em;
  border-bottom: 1px solid;
  display: block; }

.content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 0 0 240px;
  height: 100%; }

.content header {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 1px;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 10; }
  .content header a {
    color: #DEDEDE; }
    .content header a:hover {
      color: #333; }

.dashboard {
  width: 99%;
  height: 100%;
  margin: 20px 1% 1%; }

/* clearfix */
.dashboard:after {
  content: ' ';
  display: block;
  clear: both; }

.pluginView {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0; }

.pluginView iframe {
  height: 100%;
  width: 100%; }

.login {
  width: 36%;
  background-color: #fff;
  color: #444;
  position: absolute;
  top: 22%;
  left: 32%;
  right: 32%;
  padding: 19px 19px 15px 20px;
  font-family: "helvetica neue", helvetica, sans-serif !important;
  font-weight: 300;
  letter-spacing: 0.1;
  border-radius: 1em;
  border: 4px solid #ECECEC; }
  .login img {
    width: 100%;
    height: auto;
    margin-bottom: 1em; }

.login label {
  line-height: 20px;
  padding-right: 15px;
  display: none; }

.login input {
  width: 72%;
  height: 2.75em;
  padding: 0 .5em;
  font-size: 16px;
  line-height: 1.75;
  color: #555555;
  vertical-align: middle;
  background-color: white;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .login input:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(102, 175, 233, 0.6); }

.login [type="submit"] {
  width: 25%;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.75;
  border-radius: 4px;
  margin: .5em 0 .5em .45em;
  background: white;
  border: 1px solid #CCC;
  color: #555555;
  position: relative;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s; }
  .login [type="submit"]:hover, .login [type="submit"]:focus {
    background: #9fcaec;
    border: 1px solid #66afe9;
    color: #FFF; }
  .login [type="submit"]:focus {
    box-shadow: 0 0 0 3px #9fcaec;
    outline: none; }

/**
  @desc:    defines all modules with concated submodules
*/
/*  ### DASHBOARD TILES / ITEMS ### */
.item {
  height: 230px;
  float: left;
  border: 5px solid transparent; }

.item .itemContent {
  position: relative;
  height: 100%;
  border: 0px solid rgba(0, 0, 0, 0.2); }

.item .itemContent section {
  padding: 15px;
  display: inline-block;
  height: 88%;
  opacity: 0.85;
  width: 100%; }

.w3 section .grid30 {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 10px; }

.w2 section .grid50 {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 10px; }

section span:last-child {
  border-right: none !important; }

.item .handle {
  width: 100%;
  height: 30px;
  bottom: 0;
  position: absolute;
  padding: 0 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  cursor: move; }

/* needed? */
.item.is-dragging .itemContent,
.item.is-positioning-post-drag .itemContent {
  z-index: 2; }

/**
  @desc:    defines all grids, which are aviable
*/
.w1 {
  width: 33%; }

.w2 {
  width: 65.5%; }

.w3 {
  width: 99%; }

.w2 .grid50 {
  width: 49%;
  height: 100%; }

.w3 .grid30 {
  width: 32.5%;
  height: 100%; }

/**
  @desc:    defines all colours and shemes
  @usage:   do not duplicate colours, concat class
*/
/* ----- ### BACKGROUNDS ----- */
/* light creamwhite */
body, .dashboard, .pluginList .active a {
  background: #f7f4f2; }

.pluginList a:hover {
  background-color: #585858; }

/* lightgray */
.sidebar {
  background-color: #333; }

/* light gray */
.content {
  background-color: #FDFBFA; }

/* white */
.item .itemContent, .item .handle {
  background: #FFF; }

/* ----- ### Font colours ----- */
/* light cold white */
a {
  color: #F1F1F1; }

/* light cold gray */
.sidebar {
  color: #FDFBFA; }

/* dark gray */
.pluginList .active a {
  color: #222; }

/* gray */
.item {
  color: #888; }

/* lighter gray */
.content header {
  color: #BFBFBF; }

/* darker gray */
.item .handle {
  color: rgba(10, 10, 10, 0.3); }

/* ----- ### border colours ----- */
/* light cold white*/
.sidebar header, .pluginList a {
  border-bottom-color: #585858 !important; }

/* #### themes for tiles on dashboard ----- */
/* blue */
.b {
  background-color: #79BDE0 !important;
  border-color: #D5D6F2 !important;
  color: white !important; }

.b .handle {
  background-color: #6CB0D5 !important;
  color: white; }

/* green */
.g {
  background-color: #4BBD78 !important;
  color: white !important; }

.g .handle {
  background-color: #38AB68 !important;
  color: white; }

/* red */
.r {
  background-color: #EB7D7C !important;
  border-color: #D5D6F2 !important;
  color: white !important; }

.r .handle {
  background-color: #D96F6F !important;
  color: white; }

/* orange */
.o {
  background-color: #F1A655 !important;
  border-color: #D5D6F2 !important;
  color: white !important; }

.o .handle {
  background-color: #D58641 !important;
  color: white; }

/* dark gray */
.dg {
  background-color: #59686B !important;
  border-color: #D5D6F2 !important;
  color: white !important; }

.dg .handle {
  background-color: #556063 !important;
  color: white; }

/* light gray */
.lg {
  background-color: #68777A !important;
  border-color: #D5D6F2 !important;
  color: white !important; }

.lg .handle {
  background-color: #626E70 !important;
  color: white; }

/**
  @desc:    defines all font-familys, sizes, line-heights, text-decorations / -transforms
*/
/* ----- ### GENERAL ----- */
body {
  font-family: sans-serif;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

/* ----- ### LINKS ----- */
a {
  text-decoration: none; }

.pluginList a {
  font-size: .9em;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 4em; }

/* ----- ### SIDEBAR ----- */
.sidebar h1 {
  font-weight: normal;
  font-size: 2em; }

.sidebar .helpers li {
  font-size: .75em;
  text-transform: uppercase; }

/* ----- ### TILES / ITEMS ----- */
.item .itemContent section {
  line-height: 1.4em;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 100; }

.w1 section, .w2 section {
  font-size: 1.4em !important; }

.item .handle {
  font-size: 11px;
  text-transform: uppercase;
  line-height: 30px;
  text-align: left !important; }

/* ----- ### TEXT-ALIGN ----- */
.secRight {
  text-align: right; }

.secCenter {
  text-align: center; }

.secLeft {
  text-align: left; }
