render-view {
  display: none;
}
body {
  margin: 0;
  font-family: 'Nunito Sans';
}
h1,
h2,
h3,
h4,
button,
input,
select {
  font-family: 'Exo';
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
main {
  padding-bottom: 100px;
}
button {
  background: #fff;
  color: #e7002a;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid #dcdcdc;
  cursor: pointer;
}
button.base-color {
  color: #fff;
  background-color: #e7002a;
}
button[disabled] {
  color: #999;
  cursor: not-allowed;
}
input[type=text],
input[type=password],
input[type=number] {
  border-radius: 4px;
  border: 1px solid #909090;
  padding: 10px;
  width: 200px;
}
input[type=text].short,
input[type=password].short,
input[type=number].short {
  width: 60px;
}
nav .content {
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
nav .content .logo img {
  height: 50px;
}
nav .content .navigation {
  flex-grow: 1;
  text-align: center;
}
nav .content .navigation a {
  font-family: 'Exo';
  text-transform: uppercase;
  font-weight: 700;
  color: #909090;
  margin-left: 10px;
  margin-right: 10px;
}
nav .content .navigation a:hover {
  text-decoration: none;
}
nav .content .navigation a.active {
  color: #e7002a;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
}
table.basic thead tr th,
table.basic tbody tr td {
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
}
table.basic thead tr th {
  font-weight: 900;
  border-color: #aaa;
}
.note {
  font-size: 14px;
  color: #888;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.margin-top {
  margin-top: 30px;
}
.margin-bottom {
  margin-bottom: 30px;
}
.margin-left {
  margin-left: 30px;
}
.margin-right {
  margin-right: 30px;
}
.padding {
  padding: 30px;
}
.padding-top {
  padding-top: 30px;
}
.padding-bottom {
  padding-bottom: 30px;
}
.padding-left {
  padding-left: 30px;
}
.padding-right {
  padding-right: 30px;
}
.small-margin-top {
  margin-top: 15px;
}
.small-margin-bottom {
  margin-bottom: 15px;
}
.small-margin-left {
  margin-left: 15px;
}
.small-margin-right {
  margin-right: 15px;
}
.very-small-margin-top {
  margin-top: 7px;
}
.very-small-margin-bottom {
  margin-bottom: 7px;
}
.very-small-margin-left {
  margin-left: 7px;
}
.very-small-margin-right {
  margin-right: 7px;
}
.small-padding {
  padding: 15px;
}
.small-padding-top {
  padding-top: 15px;
}
.small-padding-bottom {
  padding-bottom: 15px;
}
.small-padding-left {
  padding-left: 15px;
}
.small-padding-right {
  padding-right: 15px;
}
.border {
  border: 1px solid #f5f5f5;
}
.border-bottom {
  border-bottom: 1px solid #f5f5f5;
}
.border-top {
  border-top: 1px solid #f5f5f5;
}
.border-left {
  border-left: 1px solid #f5f5f5;
}
.border-right {
  border-right: 1px solid #f5f5f5;
}
.hidden {
  display: none;
}
.clickable {
  cursor: pointer;
}
.uppercase {
  text-transform: uppercase;
}
.text-light-gray {
  color: #f5f5f5;
}
.text-dark-gray {
  color: #909090;
}
.full-width {
  width: 100%;
}
.link {
  cursor: pointer;
  color: #e7002a;
}
.link:hover {
  text-decoration: underline;
}
.flex {
  display: flex;
}
.flex.vertical-center {
  align-items: center;
}
.flex .flex-grow {
  flex-grow: 1;
}
.flex .flex-basis {
  flex-basis: 0;
}
.fill {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content {
  width: 1000px;
  margin: auto;
}
.modal {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.modal.open {
  display: flex;
}
.modal .modal-box {
  background: #fff;
  width: 500px;
  border: 1px solid #f5f5f5;
}
.modal .modal-box .modal-header {
  position: relative;
  padding: 30px;
  border-bottom: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.modal .modal-box .modal-header h2 {
  flex-grow: 1;
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
}
.modal .modal-box .modal-header .close-modal {
  color: #e7002a;
}
.modal .modal-box .modal-content {
  padding: 30px;
}
.modal .modal-box .modal-content h3 {
  margin: 0;
  font-size: 15px;
  color: #e7002a;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.header {
  background: #f5f5f5;
  padding-top: 30px;
  padding-bottom: 30px;
}
.header h1 {
  font-size: 18px;
}
.header + .content {
  padding-top: 30px;
}
.file-manager {
  position: relative;
}
.file-manager .loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  display: none;
}
.file-manager .loader.show {
  display: flex;
}
.list .item {
  border-bottom: 1px solid #f5f5f5;
  padding: 15px;
  display: flex;
  align-items: center;
}
.list .item .icon {
  margin-right: 15px;
}
.list .item .icon svg {
  width: 40px;
  height: 40px;
}
.list .item .rename {
  display: none;
  flex-grow: 1;
}
.list .item .name {
  flex-grow: 1;
}
.list .item .menu {
  cursor: pointer;
}
.list .item:hover {
  background: #f5f5f5;
}
.dropdown .dropdown-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.dropdown .dropdown-button .dot {
  width: 4px;
  height: 4px;
  background: #888;
  margin-left: 2px;
  margin-right: 2px;
}
.user-menu {
  display: flex;
  align-items: center;
}
.user-menu .dropdown-button {
  margin-left: 15px;
  order: 1;
}
.dropdown,
.user-menu {
  position: relative;
}
.dropdown .dropdown-items,
.user-menu .dropdown-items {
  z-index: 1000;
  display: none;
  flex-direction: column;
  top: 30px;
  right: 0px;
  position: absolute;
  background: #fff;
  width: 250px;
  border: 1px solid #efefef;
}
.dropdown .dropdown-items .dropdown-item,
.user-menu .dropdown-items .dropdown-item {
  padding: 15px;
  border-bottom: 1px solid #efefef;
}
.dropdown .dropdown-items .dropdown-item:last-child,
.user-menu .dropdown-items .dropdown-item:last-child {
  border-bottom: none;
}
.dropdown.open .dropdown-button .dot,
.user-menu.open .dropdown-button .dot {
  background-color: #e7002a;
}
.dropdown.open .dropdown-items,
.user-menu.open .dropdown-items {
  display: flex;
}
.breadcrumbs {
  display: flex;
  align-items: center;
}
.breadcrumbs .breadcrumb {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  color: #909090;
}
.breadcrumbs .breadcrumb.clickable:hover {
  color: #e7002a;
}
.breadcrumbs .breadcrumb::before {
  content: ">";
  margin-right: 8px;
  display: block;
}
#message {
  position: fixed;
  top: 30px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  display: none;
  justify-content: center;
}
#message.show {
  display: flex;
}
#message div {
  background: #323232;
  color: #fff;
  margin: auto;
  border-radius: 4px;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}
.number-input {
  display: flex;
}
.number-input .input input {
  border: none;
}
.number-input .unit {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 14px;
  display: flex;
  min-width: 30px;
  padding-left: 10px;
  padding-right: 10px;
  align-items: center;
  justify-content: flex-start;
  transition: 200ms;
  transform: translate(-4px, 0px);
}
.number-input.focus {
  color: #e7002a;
}
.number-input.focus input {
  border-color: #e7002a;
}
.number-input.focus .unit {
  font-weight: 900;
  color: #e7002a;
  transform: translate(2px, 0px);
}
.number-input.disabled {
  color: #aaa;
}
.calculations-list {
  width: 400px;
}
.calculations-list div:hover {
  background: #f6f6f6;
}
.calculator select {
  padding: 5px;
  width: 180px;
  border-color: #ddd;
}
.calculator textarea {
  border-color: #ddd;
  font-family: 'Nunito Sans';
}
.calculator input[type=number] {
  width: 60px;
}
.calculator input[type=text],
.calculator input[type=number] {
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 4px;
  outline: none;
}
.calculator input[type=text]:focus,
.calculator input[type=number]:focus {
  border-color: red;
}
.calculator .calculator-wrapper .calculator-parameters {
  margin-left: 80px;
  width: 560px;
  border-right: 1px solid #f5f5f5;
}
.calculator .transmission-template {
  border: 1px solid #ddd;
  padding: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 10px;
}
.calculator .transmission-template:hover {
  background: #f6f6f6;
}
.calculator .transmission-calculator {
  width: 700px;
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #ddd;
  position: absolute;
  background: #fff;
  z-index: 100;
  left: calc(160%);
  top: -146px;
}
.calculator .transmission-calculator::before {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  transform: rotate(45deg);
  top: 150px;
  left: -12px;
  content: "";
}
.calculator .input-group {
  display: flex;
  position: relative;
  border-left: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  padding: 30px;
}
.calculator .input-group .title {
  text-align: right;
}
.calculator .input-group .title svg {
  fill: #323232;
}
.calculator .input-group .text {
  position: absolute;
  transform: rotate(90deg);
  top: 16px;
  left: -37px;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  display: none;
}
.calculator .input-rows {
  width: 100%;
}
.calculator .input-rows h2 {
  font-weight: 900;
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 10px;
}
.calculator .input-group .input-rows {
  padding-left: 10px;
}
.calculator .input-row {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.calculator .input-row span {
  width: 200px;
}
.building-object {
  padding: 50px;
  padding-top: 100px;
  display: flex;
  position: relative;
}
.building-object .wattsum {
  position: absolute;
}
.building-object .wattsum strong {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  display: block;
}
.building-object .wattsum span {
  font-size: 18px;
  font-weight: 300;
  color: #e7002a;
}
.building-object .wattsum.sun {
  left: 30px;
  top: 150px;
}
.building-object .wattsum.people {
  left: 100px;
  top: 210px;
}
.building-object .wattsum.lighting {
  left: 430px;
  top: 192px;
}
.building-object .wattsum.transmission {
  right: -190px;
  top: 120px;
}
.building-object .wattsum.pc {
  left: 454px;
  top: 274px;
}
.building-object .temperature {
  position: absolute;
}
.building-object .temperature strong {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  display: block;
}
.building-object .temperature span {
  font-size: 22px;
  font-weight: 300;
}
.building-object .temperature.operative {
  top: 5%;
  left: 8%;
}
.building-object .temperature.operative span {
  color: blue;
}
.building-object .temperature.room {
  left: 40%;
  top: 60%;
}
.building-object .temperature.ceiling {
  left: 255px;
  top: 90px;
}
.building-object .temperature.airinflow {
  left: 102px;
  top: 30%;
}
.building-object .temperature.airinflow.second {
  left: auto;
  right: 129px;
}
.building-object .outside {
  width: 200px;
}
.building-object .outside .sun {
  background: orange;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: relative;
}
.building-object .outside .sun .ray {
  background: orange;
  height: 5px;
  width: 220px;
  position: absolute;
  z-index: 20;
}
.building-object .outside .sun .ray:nth-child(1) {
  transform: rotate(45deg);
  z-index: 50;
  top: calc(100% + 62px);
  left: calc(100% - 46px);
}
.building-object .outside .sun .ray:nth-child(2) {
  transform: rotate(75deg);
  top: calc(100% + 95px);
  left: calc(100% - 105px);
}
.building-object .outside .sun .ray:nth-child(3) {
  transform: rotate(25deg);
  top: calc(100% - 15px);
  left: calc(100% - 85px);
}
.building-object .roof {
  position: relative;
  height: 80px;
  top: -33px;
}
.building-object .roof div {
  width: 63%;
  height: 20px;
  top: 10px;
  background: #ccc;
  position: absolute;
  z-index: 70;
}
.building-object .roof div:nth-child(1) {
  left: -63px;
  transform: rotate(-20deg);
}
.building-object .roof div:nth-child(2) {
  left: calc(50% - 15px);
  transform: rotate(20deg);
}
.building-object .building {
  height: 340px;
  position: relative;
  border: 1px solid black;
  background: #fff;
  z-index: 30;
}
.building-object .building .ceiling .ceiling-gradient {
  display: flex;
  flex-wrap: wrap;
}
.building-object .building .ceiling .ceiling-gradient .gradient-cell {
  display: block;
  width: 3px;
  height: 3px;
  background: gray;
  margin: 1px;
}
.building-object .building .ceiling .ceiling-gradient.large {
  position: absolute;
  top: -80px;
  left: 760px;
  width: 54px;
}
.building-object .building .ceiling .ceiling-gradient.large .gradient-cell {
  width: 6px;
  height: 6px;
}
.building-object .building .ceiling .ceiling-gradient.large .text {
  position: absolute;
  transform: rotate(90deg);
  top: 48px;
  left: -52px;
  font-size: 18px;
  font-weight: 900;
}
.building-object .building .ceiling .inflow-shaft {
  position: absolute;
  top: 26px;
  background: #fff;
  width: 40px;
  height: 48px;
}
.building-object .building .ceiling .inflow-shaft.first {
  left: 20%;
}
.building-object .building .ceiling .inflow-shaft.second {
  right: 25%;
}
.building-object .building .ceiling .inflow-shaft svg {
  transform: rotate(180deg);
  position: absolute;
  top: 18px;
}
.building-object .building.cool .ceiling .ceiling-gradient .gradient-cell {
  transition: 200ms;
}
.building-object .building.cool .ceiling .ceiling-gradient .gradient-cell.light {
  background: #89d8dd;
}
.building-object .building.cool .ceiling .ceiling-gradient .gradient-cell.medium {
  background: #38bbe5;
}
.building-object .building.cool .ceiling .ceiling-gradient .gradient-cell.dark {
  background: #3850a4;
}
.building-object .building.climate .ceiling .ceiling-gradient .gradient-cell {
  transition: 200ms;
}
.building-object .building.climate .ceiling .ceiling-gradient .gradient-cell.light {
  background: #F1D55B;
}
.building-object .building.climate .ceiling .ceiling-gradient .gradient-cell.medium {
  background: #EF942A;
}
.building-object .building.climate .ceiling .ceiling-gradient .gradient-cell.dark {
  background: #DE5C00;
}
.airflow-arrow {
  position: relative;
  display: flex;
  align-items: center;
}
.airflow-arrow .arrow-head {
  width: 10px;
  height: 10px;
  position: relative;
  right: 10px;
}
.airflow-arrow .arrow-head::before {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  border-top: 3px solid #82d6da;
  border-left: 3px solid #82d6da;
  transform: rotate(135deg);
}
.airflow-arrow .arrow-line {
  width: 30px;
  height: 4px;
  right: 10px;
  background: #82d6da;
}
.airflow-arrow.warm .arrow-line {
  background: #ff8198;
}
.airflow-arrow.warm .arrow-head::before {
  border-color: #ff8198;
}
.airflow-arrow.red .arrow-line {
  background: #e7002a;
}
.airflow-arrow.red .arrow-head::before {
  border-color: #e7002a;
}
.airflow-arrow.blue .arrow-line {
  background: #284ca3;
}
.airflow-arrow.blue .arrow-head::before {
  border-color: #284ca3;
}
.summary {
  padding-top: 0px;
  display: flex;
}
.summary .summary-item {
  flex-basis: 0;
  flex-grow: 1;
  line-height: 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  border-radius: 1px solid #f5f5f5;
  padding: 30px;
}
.summary .summary-item svg {
  width: 40px;
  height: 40px;
  fill: #323232;
  margin-right: 15px;
}
.summary .summary-item strong {
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}
.summary .summary-item .number {
  font-size: 18px;
  font-weight: 300;
}
.transmission-arrow {
  position: absolute;
  top: 100px;
  left: 580px;
  width: 80px;
  height: 80px;
}
.round-number {
  position: absolute;
  background: #284ca3;
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 250;
  border-radius: 50%;
}
.round-number.one {
  top: 78px;
  left: 22px;
}
.round-number.two {
  top: 50px;
  left: 100px;
}
.round-number.three {
  top: 134px;
  left: 355px;
}
.round-number.four {
  top: 24px;
  left: 250px;
}
.outflow-shaft {
  position: absolute;
  left: 800px;
  top: 180px;
  z-index: 1000;
}
.outflow-shaft .main {
  position: absolute;
  left: 0px;
  top: 0px;
  background: #e7002a;
  height: 75px;
  width: 11px;
}
.outflow-shaft .round {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 4px solid #284ca3;
  left: -17px;
  top: -30px;
}
.outflow-shaft .upper-tip {
  position: absolute;
  top: -40px;
  left: 5px;
  background: #284ca3;
  width: 4px;
  height: 10px;
}
.outflow-shaft .upper-tip.two {
  left: -8px;
}
.outflow-shaft .another-arrow-line {
  position: absolute;
  top: 4px;
  left: -10px;
  background: #284ca3;
  width: 3px;
  height: 40px;
}
.outflow-shaft .bottom-tip {
  position: absolute;
  top: 4px;
  left: -12px;
  background: #284ca3;
  width: 8px;
  height: 10px;
}
.outflow-shaft .airinflow-temperature {
  background: #fff;
  border-radius: 2px;
  padding: 4px;
  position: absolute;
  top: 30px;
  left: -89px;
  font-size: 12px;
  font-weight: 900;
  width: 36px;
  text-align: center;
  border: 1px solid #535353;
}
.outflow-shaft.invert .main {
  background: #284ca3;
}
.outflow-shaft.invert .round {
  border-color: #e7002a;
}
.outflow-shaft.invert .upper-tip,
.outflow-shaft.invert .another-arrow-line,
.outflow-shaft.invert .bottom-tip {
  background: #e7002a;
}
.validation-error {
  align-items: center;
  height: 40px;
}
.validation-error svg {
  width: 40px;
  height: 40px;
  fill: #323232;
}
.isolations {
  position: absolute;
  top: 153px;
  left: 223px;
  bottom: 23px;
  width: 656px;
}
.isolations .isolation {
  background: url('/img/isolation.png');
  position: absolute;
  border: 1px solid black;
}
.isolations .isolation.left {
  background: url('/img/isolation-rotated.png');
  left: 0px;
  width: 26px;
}
.isolations .isolation.left.one {
  top: 0px;
  height: 120px;
}
.isolations .isolation.left.two {
  bottom: 26px;
  height: 120px;
}
.isolations .isolation.right {
  background: url('/img/isolation-rotated.png');
  top: 0px;
  bottom: 26px;
  right: 0px;
  width: 26px;
}
.isolations .isolation.top {
  top: 0px;
  height: 26px;
  left: 0px;
  right: 0px;
}
.isolations .isolation.bottom {
  bottom: 0px;
  height: 26px;
  left: 0px;
  right: 0px;
}
.round-number-points {
  position: absolute;
  top: 200px;
  left: calc(100% + 100px);
}
.round-number-points div {
  width: 200px;
  height: 35px;
}
.round-number-points div::before {
  background: #284ca3;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -40px;
}
.round-number-points div:nth-child(1)::before {
  content: "1";
}
.round-number-points div:nth-child(2)::before {
  content: "2";
}
.round-number-points div:nth-child(3)::before {
  content: "3";
}
.round-number-points div:nth-child(4)::before {
  content: "4";
}
.building-illustration .people {
  position: absolute;
  left: 60px;
  bottom: -22px;
  width: 120px;
  height: 120px;
}
.building-illustration .lighting {
  position: absolute;
  left: 500px;
  top: 190px;
  width: 60px;
  height: 60px;
  transform: rotate(180deg);
}
.building-illustration .computer {
  position: absolute;
  left: 380px;
  top: 270px;
  width: 60px;
  height: 60px;
}
