@import "root.css";
@import "colors.css";
@import "card.css";

/* Elements */
a {
  color: var(--body-blue);
  text-decoration: none;
}
a:hover {
  color: var(--neutral-400) !important;
  cursor: pointer;
}

/* Sizes */
.h-px-260 {
    height: 260px;
}
.h-px-300 {
  height: 300px;
}
.h-px-330 {
    height: 330px !important;
}
.h-px-375 {
    height: 375px;
}
.h-px-450 {
  height: 450px !important;
}
.h-3rd {
  height: 33.333333% !important;
}
@media (min-width: 1200px) {
    .h-xl-50 {
        height: 50% !important;
    }
}
@media (min-width: 576px) {
    .h-sm-50 {
        height: 50% !important;
    }
}
@media (max-width: 576px) {
    .h-xl-50 {
        font-size: 8px;
        margin-top: 10px !important;
    }
    .h-sm-50 {
        font-size: 12px;
    }
}


/* General */
.chart svg {
    width: 100%;
}
.energy-totals {
    margin-bottom: 1rem !important;
    font-weight: 500;
}
.fa-info-circle {
  line-height:1 !important;
  color: var(--green-300);
}
.pointer {
    cursor: pointer;
}

/* Font Awesome */
.fa-pagelines,
.fa-sun,
.fa-head-side-virus,
.fa-procedures,
.fa-running,
.fa-skull-crossbones,
.fa-thermometer-half,
.fa-tint,
.fa-wind,
.fa-tachometer-alt,
.fa-location-arrow {
  float:right;
  opacity: 80%;
}
.selector {
    cursor: pointer;
}

/* Utilities */
.rb-form-control {
    display: block;
    width: 95%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--neutral-800);
    background-color: var(--neutral-300);
    background-clip: padding-box;
    border: 1px solid var(--neutral-700);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.15rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.rb-form-label {
    margin-bottom: 0.5rem !important;
}