html, body {
  height: 100%
}
html.has-navbar-fixed-top, body.has-navbar-fixed-top {
  padding-top: 4.75rem;
}

/** LOGIN **/
.hero.has-background {
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.company img {
  width: 80%;
}
.box-7 {
  width: 70%;
}

/** CONTENT WRAPPER **/
.wrapper {
  min-height: 100%;
  width: 100%;
  display: flex;
}
.columns:last-child {
  margin-bottom: 0;
}
.columns {
  margin-top: 0
}

/** CORNER RADIUS **/
.cr-3 {
  border-radius: 6px;
}

/** MENU **/
.w300 {
  width: 300px;
}

/* CARDGRID */

.cardgrid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
	grid-gap: 2em;
}
.cardgrid2{
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(360px,1fr));
grid-gap: 1em;
}

.cardgrid3{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(420px,1fr));
	grid-gap: 1em;
}

.cardgrid4{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	grid-gap: 1em;
}

.br-1 {
  border: 1px solid #eee;
}

.box:not(:last-child) {
  margin-bottom: 0;
}

/* dashboard table */

/* MEDIA ELEMENTS */

.media + .media.bt-0 {
  border-top: 0px;
  margin-top: 0;
}

/* HORIZONTAL CARD */

/*.card.card--reverse-order {
  flex-direction: row-reverse;
}*/
.card.is-horizontal {
  display: flex;
  flex-basis: 50ex;
  flex-grow: 0;
  flex-shrink: 1;
}
.card.is-horizontal .card-image {
  flex: 4;
  flex-shrink: 1;
}
.card.is-horizontal .card-image .image {
  display: block;
  position: relative;
  overflow: hidden;
  height: auto;
  width: 100%;
}
.card.is-horizontal .card-image .image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.card.is-horizontal .card-content {
  flex: 3;
}
.card-wrapper {
  height: 100%;
}

.colorind-1 {
  color: #8EB1C7;
}
.colorind-2 {
  color: #FE5F55;
}
.colorind-3 {
  color: #656256;
}
.bl-1 {
  border-left: 1px solid #f5f5f5;
}

.lh-1 {
	line-height: 1;
}

/* ------ GAUGE default ---------- */
.gauge-container {
  width: 100%;
  height: auto;
  display: block;
  padding: 0px;
  background-color: #fafafa;
  margin: 0px;
  border-radius: 3px;
  position: relative;
}
.gauge-container > .label {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  background: rgba(0,0,0,0.5);
  font-family: monospace;
  font-size: 0.8em;
  padding: 5px 10px;
}
.gauge-container > .gauge .dial {
  stroke: #334455;
  stroke-width: 2;
  fill: rgba(0,0,0,0);
}
.gauge-container > .gauge .value {
  stroke: rgb(47, 227, 255);
  stroke-width: 2;
  fill: rgba(0,0,0,0);
}
.gauge-container > .gauge .value-text {
  fill: rgb(181, 181, 181);
  font-family: sans-serif;
  font-weight: bold;
  font-size: 0.6em;
}

/* ------ GAUGE ---------- */
.gauge-container.two {
}
.gauge-container.two > .gauge .dial {
  stroke: #efefef;
  stroke-width: 10;
}
.gauge-container.two > .gauge .value {
  stroke: orange;
  stroke-dasharray: none;
  stroke-width: 13;
}
.gauge-container.two > .gauge .value-text {
  fill: #363636;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.625em;
}

/* ------ TABLE ---------- */
table.restable {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table.restable tr {
  background-color: none;
  border-bottom: 1px solid #dbdbdb;
  padding: .35em;
}

table.restable tr:hover{
  background-color: #f5f8fa;
  cursor: pointer;
}

table.restable th,
table.restable td {
  padding: .625em;
  text-align: right;
  font-size: 0.875em;
}

table.restable th.first,
table.restable td.first {
  padding: .625em;
  text-align: left;
  font-size: 0.875em;
}

table.restable th {
  font-family: 'Montserrat', sans-serif;
  font-size: .875em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  table.restable {
    border: 0;
    margin-bottom: 1em;
  }

  table.restable thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table.restable tr {
    /*border-bottom: 3px solid #ddd;*/
    display: block;
    margin-bottom: .625em;
    border: 1px solid #f5f5f5;
  }

  table.restable td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }

  table.restable td.first {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }

  table.restable td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table.restable td:last-child {
    border-bottom: 0;
  }
}


/* ------ XS-BUTTON ------ */
.xs-btn {
    background-color: white;
    border-color: #dbdbdb;
    border-width: 1px;
    color: #363636;
    cursor: pointer;
    justify-content: center;
    padding-bottom: 3px;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 3px;
    text-align: center;
    white-space: nowrap;
}

.select select.xs {
  height: 2.5rem;
  font-size: 0.875em;
  padding-bottom: calc(0.750em - 1px);
  padding-top: calc(0.750em - 1px);
}

/* ------ CHART ------ */
.has-chart-bg {
  background-color: #fafafa;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

/* ------ BORDERS ------ */
.bd-0 {
  border-style: none;
  box-shadow: none;
}

.bb-0 {
  border-bottom: 1px solid #ddd;
}
.bt-1 {
  border-top: 1px solid #eee;
}

/* ------ INFO TABLE ------ */
table#info {
  border: none;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table#info caption {
  font-size: .750em;
  margin: .5em 0 .75em;
}

table#info tr {
  background-color: #f8f8f8;
  border: none;
  padding: .35em;
}

table#info th,
table#info td {
  padding: .1em;
  text-align: left;
  font-size: .625em;
}

table#info th {
  font-size: .625em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  table#info {
    border: 0;
  }

  table#info caption {
    font-size: .750em;
  }

  table#info  thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table#info tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }

  table#info td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .625em;
    text-align: right;
  }

  table#info td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }

  table#info td:last-child {
    border-bottom: 0;
  }
}
