/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : 8 Nov 2019, 18:06:13
    Author     : elazarchuk
*/
.chart-canvas-area {
  min-width: 600px;
  max-width: 100%;
  height: 400px;
  margin: 0 auto;
  position: relative;
}
.chart-canvas-area #chart-canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.chart-canvas-area #no-data {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.chart-canvas-area #no-data .no-data-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: bold;
}
.chart-area {
  min-width: 600px;
  max-width: 100%;
}
.chart-area .chart-header {
  position: relative;
  width: 100%;
  height: 100px !important;
  background: #f7f8f9;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 47px 0 43px;
}
.chart-area .chart-header .chart-ref-logo {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
.chart-area .chart-header .chart-ref-logo .logo a:before {
  height: 32px;
  background-image: url(../img/logo-red.png);
}
.chart-area .chart-header .head {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: calc(159px - 63px);
  width: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.chart-area .chart-header .head .left-b h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.chart-area .chart-header .head .left-b span {
  color: #797979;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  text-transform: none;
}
.chart-area .chart-header .head .right-b {
  margin-top: -7px;
}
.chart-area .chart-header .head .right-b .value-type {
  margin: 7px;
  font-size: 15px;
  font-weight: 500;
  color: #949494;
  padding-top: 3px;
}
.chart-area .chart-header .head .right-b .value-type:hover {
  cursor: pointer;
}
.chart-area .chart-header .head .right-b .value-type.active {
  color: black;
  border-top: 2px solid #ea312a;
}
.chart-area .chart-parameters {
  padding: 25px 12px;
}
.chart-area .chart-parameters .value-parameter {
  color: #a5a5a6;
  text-transform: uppercase;
  font-weight: 300;
  padding: 10px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.chart-area .chart-parameters .value-parameter:hover,
.chart-area .chart-parameters .value-parameter.active {
  background: #e73332;
  color: #fff;
  box-shadow: 0px 0px 19px -6px #000;
  font-weight: 300;
}
.chart-area .chart-periods {
  padding: 12px 12px;
}
.chart-area .chart-periods .value-period {
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  padding: 12px 20px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 6px;
  transition: 0.3s;
  text-transform: capitalize;
}
.chart-area .chart-periods .value-period:hover,
.chart-area .chart-periods .value-period.active {
  background: #e73332;
  color: #fff;
  box-shadow: 0px 0px 19px -6px #000;
  text-transform: capitalize;
  font-weight: 300;
}
.chart-area .chart-periods .value-period-description {
  float: right;
  font-weight: 300;
  line-height: 1.5;
  padding: 14px 0;
}
/*# sourceMappingURL=external-charts.css.map */