.page-graph aside {
  display: none;
}
.open-sans-font * {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.page-graph #content-inner > .row > section{
  width: 100%
}
#caltha-module .lined-items {
  display: inline-block;
}
#caltha-module .dropdown-label {
  display: block;
  margin-bottom: 5px
}
/*Styling Selectbox*/
#caltha-module .dropdown {
  width: 300px;
  display: inline-block;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 2px rgb(131, 131, 131);
  transition: all .5s ease;
  position: relative;
  font-size: 14px;
  color: #474747;
  height: 100%;
  text-align: left
}
#caltha-module .dropdown.small {
  width: 200px;
}
#caltha-module .dropdown.small.active {
  max-height: none;
}
#caltha-module .dropdown .select {
  cursor: pointer;
  display: block;
  padding: 7px 8px
}
#caltha-module .dropdown .select > i {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  transition: all .3s ease-in-out;
  float: right;
  line-height: 20px
}
#caltha-module .dropdown:hover {
  box-shadow: 0 0 4px rgb(204, 204, 204)
}
#caltha-module .dropdown:active {
  background-color: #f8f8f8
}
#caltha-module .dropdown.active:hover,
#caltha-module .dropdown.active {
  box-shadow: 0 0 4px rgb(204, 204, 204);
  border-radius: 2px 2px 0 0;
  background-color: #f8f8f8
}
#caltha-module .dropdown.active .select > i {
  transform: rotate(-90deg)
}
#caltha-module .dropdown .dropdown-menu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  left: 0;
  margin-top: 1px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  overflow: hidden;
  display: none;
  max-height: 144px;
  overflow-y: auto;
  z-index: 9;
  background-clip: unset;
}
#caltha-module .dropdown .dropdown-menu li {
  padding: 10px !important;
  transition: all .2s ease-in-out;
  cursor: pointer;
  list-style: none !important;
}
#caltha-module .dropdown.small .dropdown-menu li {
  display: inline-block;
}
#caltha-module .dropdown.small .dropdown-menu li.active {
  background: none;
  color: #000;
}
#caltha-module .dropdown .dropdown-menu li.active {
  background: #00b0f0;
  color: #fff;
}
#caltha-module .dropdown .dropdown-menu li:before {
  display: none !important
}
#caltha-module .dropdown .dropdown-menu {
  padding: 0;
  list-style: none
}
#caltha-module .dropdown .dropdown-menu li:hover {
  background-color: #fff;
  color: #000;
}
#caltha-module .dropdown .dropdown-menu li:active {
  background-color: #e2e2e2
}
#caltha-module .load-graph-details form {
  text-align: center;
}
#caltha-module .load-graph-details form .lined-items {
  text-align: left;
}
#caltha-module .load-graph-details .flatpickr-input[readonly] {
  background: #fff
}
#caltha-module .load-graph-details *:focus-visible,
#caltha-module .load-graph-details *:focus{
  outline: none
}
#caltha-module .load-graph-details input:focus {
  box-shadow: none;
}
#caltha-module .load-graph-details [type="submit"] {
  padding: 5px 10px 7px 10px;
  box-shadow: none;
  outline: none;
  font-family: Lato,Arial,sans-serif;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  transition: all 0.5s linear;
  transition-property: border-color,background-color;
}
.page-graph #caltha-module .load-graph-details [type="submit"] {
  padding: 6px 10px;
}
#caltha-module .load-graph-details [type="submit"]:hover {
  color: #fff;
  background-color: #4e5be8;
  border-color: #4e5be8;
}
#caltha-module .caltha-chart-wrapper .loader,
#caltha-module .caltha-chart-wrapper.loading canvas,
#caltha-module .caltha-chart-wrapper.loading .chart-label{
  display: none
}
#caltha-module .caltha-chart-wrapper.loading .loader{
  display: block;
  margin: 10% auto;
}
#caltha-module .chart-label {
  text-align: center;
  font-size: 20px;
  padding: 2%;
}
/*--------- LOADER ----------*/
#caltha-module {
  position:relative;
}
#caltha-module .loader-large {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  text-align: center;
  background: #fff;
  z-index: 1000;
  top: 0;
  bottom: 0;
}
.page-graph #caltha-module .loader-large {
  position: fixed;
}
#caltha-module .loader-large .loader-wrapper{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#caltha-module .loader {
  --path: #2F3545;
  --dot: #5628EE;
  --duration: 3s;
  width: 44px;
  height: 44px;
  position: relative;
}
#caltha-module .loader:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  display: block;
  background: var(--dot);
  top: 37px;
  left: 19px;
  transform: translate(-18px, -18px);
  -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
#caltha-module .loader svg {
  display: block;
  width: 100%;
  height: 100%;
}
#caltha-module .loader svg rect,
#caltha-module .loader svg polygon,
#caltha-module .loader svg circle {
  fill: none;
  stroke: var(--path);
  stroke-width: 10px;
  stroke-linejoin: round;
  stroke-linecap: round;
}
#caltha-module .loader svg polygon {
  stroke-dasharray: 145 76 145 76;
  stroke-dashoffset: 0;
  -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
#caltha-module .loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
#caltha-module .loader svg circle {
  stroke-dasharray: 150 50 150 50;
  stroke-dashoffset: 75;
  -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
#caltha-module .loader.triangle {
  width: 48px;
}
#caltha-module .loader.triangle:before {
  left: 21px;
  transform: translate(-10px, -18px);
  -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@-webkit-keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}

@keyframes pathTriangle {
  33% {
    stroke-dashoffset: 74;
  }
  66% {
    stroke-dashoffset: 147;
  }
  100% {
    stroke-dashoffset: 221;
  }
}
@-webkit-keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}
@keyframes dotTriangle {
  33% {
    transform: translate(0, 0);
  }
  66% {
    transform: translate(10px, -18px);
  }
  100% {
    transform: translate(-10px, -18px);
  }
}
@-webkit-keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }
  50% {
    stroke-dashoffset: 128;
  }
  75% {
    stroke-dashoffset: 192;
  }
  100% {
    stroke-dashoffset: 256;
  }
}
@-webkit-keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}
@keyframes dotRect {
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(18px, -18px);
  }
  75% {
    transform: translate(0, -36px);
  }
  100% {
    transform: translate(-18px, -18px);
  }
}
@-webkit-keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
@keyframes pathCircle {
  25% {
    stroke-dashoffset: 125;
  }
  50% {
    stroke-dashoffset: 175;
  }
  75% {
    stroke-dashoffset: 225;
  }
  100% {
    stroke-dashoffset: 275;
  }
}
#caltha-module .loader {
  display: inline-block;
  margin: 0 16px;
}

.page-graph .main-container.container {
  width: 95%;
  max-width: 1320px;
}
.load-graph-details.open-sans-font {
  background: rgba(255, 255, 255, 0.7);
}
/*----------DOWNLOAD------*/
.download-wrap {
  text-align: right;
}
.download-wrap a {
  background: #ffffff;
  border: solid 1px #e6e6e6;
  border-radius: 2px;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  margin: 5px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 100px;
}

.download-wrap a span {
  background: #f2594b;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  padding: 5px 10px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.download-wrap a span:last-child {
  margin-left: -20px;
}

.download-wrap a:before,
.download-wrap a:after {
  background: #ffffff;
  border: solid 3px #9fb4cc;
  border-radius: 4px;
  content: '';
  display: block;
  height: 35px;
  left: 50%;
  margin: -17px 0 0 -12px;
  position: absolute;
  top: 50%;
  /*transform:translate(-50%,-50%);*/

  width: 25px;
}

.download-wrap a:hover:before,
.download-wrap a:hover:after {
  background: #e2e8f0;
}
/*a:before{transform:translate(-30%,-60%);}*/

.download-wrap a:before {
  margin: -23px 0 0 -5px;
}

.download-wrap a:hover {
  background: #e2e8f0;
  border-color: #9fb4cc;
}

.download-wrap a:active {
  background: #dae0e8;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25);
}

.download-wrap a span:first-child {
  display: none;
}

.download-wrap a:hover span:first-child {
  display: inline-block;
}

.download-wrap a:hover span:last-child {
  display: none;
}
/* ---- CHECKBOX ---- */

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .checkbox-wrapper-13 input[type=checkbox] {
    --active: #00b0f0;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #009dd7;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .checkbox-wrapper-13 input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .checkbox-wrapper-13 input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .checkbox-wrapper-13 input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .checkbox-wrapper-13 input[type=checkbox]:disabled + label {
    cursor: not-allowed;
  }
  .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .checkbox-wrapper-13 input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    width: 21px;
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --o: 1;
  }
  .checkbox-wrapper-13 input[type=checkbox] + label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
}

.checkbox-wrapper-13 * {
  box-sizing: inherit;
}
.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
  box-sizing: inherit;
}

#caltha-module .radio {
  display: inline-block;
  line-height: 25px;
  vertical-align: middle;
  margin: 10px 0;
}
.page-graph #caltha-module .radio:last-child {
  margin-left: 5px;
  padding-left: 8px;
}
#caltha-module .radio label {
  padding-left: 0;
  line-height: 18px;
}
#caltha-module .radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
#caltha-module .radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  margin-right: 0.4em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
#caltha-module .radio input[type=radio]:checked + .radio-label:before {
  background-color: #3197EE;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}
#caltha-module .radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #3197EE;
}
#caltha-module .radios-list {
  margin-right: 20px;
}

.contact-form .form-control {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 0;
  border: 0 none;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: none;
}
.contact-form .form-control:active, .contact-form .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}

.contact-form .btn, .contact-form .form-control {
  min-height: 60px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
}
.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}
.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}
.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}
.pt-2, .py-2 {
  padding-top: 0.5rem !important;
}

.contact-form form.border-right {
  padding-right: 6rem !important;
}
@media (max-width: 991.98px) {
  .contact-form form.border-right {
    padding-right: 0 !important;
    border-right: none !important;
  }
}

label.error {
  font-size: 12px;
  color: red;
}

#message {
  resize: vertical;
}

#form-message-warning, #form-message-success {
  display: none;
}

#form-message-warning {
  color: #B90B0B;
}

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold;
}

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: #000;
}
.charts-input {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
}
.charts-input.show{
  display: flex !important
}
.charts-input .charts-input-container {
  text-align: center;
  margin: 0 auto;
}
.charts-input .charts-input-container input{
  margin: 10px auto;
}
.charts-input .charts-input-container input[name="dates-input-range"] {
  max-width: 500px;
  width: 100%;
}
.charts-input .charts-input-container textarea {
  max-width: 300px;
  width: 100%;
  height: 200px;
}
.charts-input .charts-input-container .charts-input-text {
  padding: 10px;
  font-size: 20px;
}
.charts-input .charts-input-container .charts-input-text small {
  display: block;
  margin-bottom: 10px
}
.charts-input .charts-input-container .chart-input-error {
  color: #ff0000;
}
