html {
  font-family: "Myrid Pro Regular", sans-serif;
}

body {
  min-height: 100vh;
  width: 100vw;
  margin: 0;
}

header {
  font-size: 1.2em;
  color: #14344d;
  margin: 100px 0;
}

section {
  margin: 90px;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0.5em;
  border-radius: 15px;
  color: #14344d;
}

.table-voltaic {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.table-voltaic tr:nth-child(2n) {
  background-color: #f9f9f9;
}
.table-voltaic tr:nth-child(2n+1) {
  background-color: #ffffff;
}
.table-voltaic th {
  font-size: 1.2em;
  text-transform: uppercase;
  border-top: none !important;
  background-color: #14344d;
  color: #ffffff;
}
.table-voltaic td {
  font-size: 1.1em;
}
.table-voltaic th, .table-voltaic td {
  border: 1px solid black;
  border-left: none !important;
  border-right: none !important;
  padding-top: 10px;
  padding-bottom: 10px;
}
.table-voltaic tr:last-child th, .table-voltaic tr:last-child td {
  border-bottom: none !important;
}

.blue-headers {
  border: none;
}
.blue-headers th {
  color: #14344d;
}

select {
  appearance: none;
  max-width: 30ch;
  border: 1px solid #14344d;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
}
select:focus {
  -webkit-box-shadow: inset 0 0 50px -25px rgba(116, 193, 241, 0.6509803922);
  -moz-box-shadow: inset 0 0 50px -25px rgba(116, 193, 241, 0.6509803922);
  box-shadow: inset 0 0 50px -25px rgba(116, 193, 241, 0.6509803922);
  outline: 1px solid #1248fc;
}

input {
  border: 1px solid #14344d;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  line-height: 1.1;
  background-color: #fff;
}
input:focus {
  -webkit-box-shadow: inset 0 0 50px -25px rgba(116, 193, 241, 0.6509803922);
  -moz-box-shadow: inset 0 0 50px -25px rgba(116, 193, 241, 0.6509803922);
  box-shadow: inset 0 0 50px -25px rgba(116, 193, 241, 0.6509803922);
  outline: 1px solid #1248fc;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  max-width: 10ch;
  text-align: right;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns with equal width */
  gap: 20px; /* Adjust the gap between grid items */
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#wizard_form {
  background-color: #ffffff;
  margin: 30px 0;
  padding: 20px 40px;
  width: 100%;
}
#wizard_form h3 {
  color: #1248fc;
}
#wizard_form .form-tab {
  display: none;
}
#wizard_form .form-rows {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
#wizard_form .form-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  padding: 10px 20px;
  width: 100%;
  background-color: #f9f9f9;
}
#wizard_form .add-row {
  cursor: pointer;
}
#wizard_form .add-row i {
  color: green;
}
#wizard_form .add-row:hover i {
  color: darkgreen;
}
#wizard_form .remove-row {
  cursor: pointer;
  margin-left: 10px;
}
#wizard_form .remove-row i {
  color: red;
}
#wizard_form .remove-row:hover i {
  color: darkred;
}
#wizard_form .invalid {
  background-color: #ffdddd;
}
#wizard_form .indicators {
  text-align: center;
}
#wizard_form .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}
#wizard_form .step.active {
  opacity: 1;
}
#wizard_form .step.finish {
  background-color: #04AA6D;
}

#wizard_form .skip-tab {
  display: none;
}
#wizard_form .warning {
  color: #1248fc;
  padding: 5px;
  margin: 0;
}
#wizard_form #investor_tab .form-row {
  margin: 0;
}
#wizard_form #investor_tab label {
  min-width: 15ch;
}
#wizard_form #mod-const-tab .module_error {
  display: none;
  color: red;
}
#wizard_form #summary_tab table {
  width: 100%;
  border-collapse: collapse;
}
#wizard_form #summary_tab table th, #wizard_form #summary_tab table td {
  border: 1px solid black;
}

.offer-list-table {
  width: 100%;
  border-collapse: collapse;
}
.offer-list-table tr:hover:nth-child(n+2) {
  cursor: pointer;
  outline: 1px solid #1248fc;
  background-color: rgba(116, 193, 241, 0.6509803922);
}
.offer-list-table tr:hover:nth-child(n+2) td {
  border: 1px solid #1248fc;
  border-bottom-color: rgba(116, 193, 241, 0.6509803922);
}
.offer-list-table tr:hover:nth-child(n+2) td:last-child {
  border-right-color: rgba(116, 193, 241, 0.6509803922);
}
.offer-list-table th, .offer-list-table td {
  border: 1px solid #000000;
  text-align: center;
}

.offer-container {
  max-width: 992px;
  margin: 0 auto;
}
.offer-container .page-image {
  margin: 0;
  padding: 0;
}
.offer-container .page-image img {
  width: 100%;
}
.offer-container .vline {
  height: 60px;
  border-left: 2px solid rgba(116, 193, 241, 0.6509803922);
}
.offer-container .hline {
  width: 60px;
  border-top: 2px solid rgba(116, 193, 241, 0.6509803922);
}
.offer-container .hline.full-page {
  width: 100%;
  border-color: #000000;
}
.offer-container .page-break {
  page-break-before: always;
}
.offer-container .list-bullet {
  margin-right: 10px;
}
.offer-container .tab {
  display: inline-block;
  margin-left: 40px;
}
.offer-container .roman-list {
  counter-reset: item;
}
.offer-container .roman-list .item::before {
  counter-increment: item;
  content: counter(item, upper-roman) ".";
  margin-left: 40px;
  width: 25px;
  display: inline-block;
}
.offer-container .item {
  padding: 5px 0;
}
.offer-container .list-item {
  display: flex;
  flex-direction: row;
  padding: 5px 0;
}
.offer-container .list-item .bullet {
  height: 20px;
  margin-right: 10px;
}
.offer-container .list-item p {
  margin: 0;
}
.offer-container .page-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
  margin-bottom: 50px;
  margin-top: -50px;
}
.offer-container .page-header img {
  height: 75px;
}
.offer-container .page-header .motto {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.9em;
  color: #14344d;
  width: 200px;
}
.offer-container .page-header .motto .vline {
  border-color: #14344d;
  margin-right: 10px;
  height: 40px;
}
.offer-container .page-header .motto p {
  min-width: max-content;
}
.offer-container .subsection h3 {
  text-transform: uppercase;
}
.offer-container .header-logo {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-left: 100px;
  margin-bottom: 100px;
}
.offer-container .header-logo .logo {
  margin-right: 30px;
  width: 250px;
}
.offer-container .header-logo .logo-text {
  margin-left: 30px;
  font-weight: normal;
}
.offer-container .header-title .banner {
  width: 550px;
}
.offer-container .header-title h1, .offer-container .header-title h2, .offer-container .header-title h3, .offer-container .header-title h4, .offer-container .header-title h5, .offer-container .header-title h6 {
  padding: 0;
}
.offer-container .header-title h2 {
  font-weight: normal;
  font-size: 1.4em;
}
.offer-container .header-title h1 {
  font-weight: bold;
}
.offer-container .header-title .content {
  position: relative;
  margin-top: -33%;
  margin-left: auto;
  width: 45%;
}
.offer-container #offer_range .investor-details {
  width: 50%;
  margin: 100px 0 100px auto;
}
.offer-container #offer_range .investor-details td {
  padding: 5px 10px;
}
.offer-container #offer_range .investor-details .title-cell {
  font-weight: bold;
}
.offer-container #offer_range .message {
  line-height: 2;
  text-align: justify;
  width: 600px;
  margin: 0 auto;
}
.offer-container #offer_range .offers-range {
  margin-top: 3em;
}
.offer-container #offer_range .offers-range strong {
  font-size: 0.9em;
}
.offer-container #offer_range .offers-range h3 {
  text-transform: uppercase;
}
.offer-container #offer_range .offers-range .offers-range-list {
  margin-left: 20px;
}
.offer-container #offer_range .offers-range .offers-range-list .list-item {
  padding: 0 0 5px 0;
}
.offer-container #offer_range .offers-range .offers-range-list .fix-position {
  line-height: 1.5;
  margin-left: 5px;
}
.offer-container #configuration .configuration-table table::before {
  content: "ZESTAW";
  color: #ffffff;
  background: #14344d;
  display: table-caption;
  padding: 7px 5px;
  text-align: left;
}
.offer-container #configuration .configuration-table table {
  caption-side: top;
  margin: 0 auto;
  text-align: center;
  border: 3px solid #14344d;
  border-top: none;
  border-collapse: collapse;
  font-weight: bold;
}
.offer-container #configuration .configuration-table table tr {
  height: 60px;
}
.offer-container #configuration .configuration-table table tr td {
  border: 3px solid #14344d;
}
.offer-container #configuration .configuration-table table tr:first-child td {
  border-top: none;
}
.offer-container #configuration .configuration-table table tr img {
  height: 40px;
}
.offer-container #configuration .configuration-table table tr .title-cell {
  width: 50px;
  background: #f9f9f9;
  font-weight: normal;
  font-size: 0.9em;
  padding: 0 5px 0;
}
.offer-container #configuration .configuration-table table tr .value-cell {
  height: inherit;
}
.offer-container #configuration .configuration-table table tr .value-cell img {
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 40px;
}
.offer-container #configuration .guarantee-table {
  margin-top: 50px;
}
.offer-container #configuration .guarantee-table table {
  margin-top: 0;
}
.offer-container #configuration .guarantee-table table td {
  padding: 0;
}
.offer-container #configuration .guarantee-table table .title-cell {
  padding-right: 50px;
}
.offer-container .components-desc .component {
  text-align: right;
  margin-bottom: 2em;
}
.offer-container .components-desc .component p {
  text-align: justify;
  line-height: 1.5em;
}
.offer-container .components-desc .component img {
  height: initial;
  max-width: 150px;
  max-height: 70px;
  margin-bottom: 1em;
}
.offer-container .energy-chart h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.offer-container .energy-chart img {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  width: 100%;
}
.offer-container #remarks .remarks .remarks-list {
  counter-reset: remark;
}
.offer-container #remarks .remarks .remarks-list .list-item {
  margin-left: 40px;
  margin-bottom: 20px;
}
.offer-container #remarks .remarks .remarks-list .list-item::before {
  counter-increment: remark;
  content: counter(remark) ".";
  margin-left: -20px;
  font-weight: bold;
}
.offer-container #remarks .remarks table {
  margin-top: -2px;
}
.offer-container #remarks .remarks table .title-cell {
  width: 275px;
}
.offer-container #remarks .absolute-end {
  position: absolute;
  width: 80%;
  bottom: 25px;
}
.offer-container #remarks .signature-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.offer-container #remarks .signature-section .date {
  width: 200px;
  margin-bottom: -80px;
}
.offer-container #remarks .signature-section .date .tab {
  margin-left: 20px;
}
.offer-container #remarks .signature-section .signature p {
  margin-bottom: 5px;
}
.offer-container #remarks .signature-section .signature .signature-image {
  position: relative;
  order: 2;
  overflow: visible;
  height: 50px;
  width: 250px;
}
.offer-container #remarks .signature-section .signature .signature-image img {
  object-fit: contain;
  width: 250px;
}
.offer-container #remarks .signature-section .signature .signature-text {
  position: relative;
  order: 1;
  text-align: right;
  font-style: italic;
  font-family: cursive;
  font-size: 8pt;
  margin-top: -5px;
}
.offer-container #remarks .page-footer {
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
}
.offer-container #remarks .page-footer div {
  margin-bottom: 10px;
  padding: 0 25px;
}
.offer-container #remarks .page-footer div:last-child {
  margin-bottom: 0;
}
.offer-container #remarks .page-footer .hline {
  margin: 15px 0;
}
.offer-container #remarks .page-footer .numbers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.offer-container #remarks .page-footer .numbers p {
  margin: 0;
}

#offer_details_container #investor_summary, #summary_tab #investor_summary {
  margin-top: 1em;
}
#offer_details_container h5, #summary_tab h5 {
  font-size: 2em;
  text-align: center;
  padding: 1em 0;
}
#offer_details_container #investor_table th, #offer_details_container #investor_table td, #summary_tab #investor_table th, #summary_tab #investor_table td {
  border: none;
  padding: 5px 0;
}
#offer_details_container #investor_table th, #summary_tab #investor_table th {
  background-color: #ffffff;
  text-align: right;
  width: 20%;
}
#offer_details_container #investor_table th:after, #summary_tab #investor_table th:after {
  content: ":";
}
#offer_details_container #investor_table td, #summary_tab #investor_table td {
  background-color: #ffffff;
  text-align: center;
  padding-left: 20px;
}
#offer_details_container table th, #offer_details_container table td, #summary_tab table th, #summary_tab table td {
  text-align: center;
}
#offer_details_container table th:first-child, #offer_details_container table td:first-child, #summary_tab table th:first-child, #summary_tab table td:first-child {
  width: 40%;
  padding: 0 1em;
}
#offer_details_container .stats, #summary_tab .stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin: 1em 0;
}
#offer_details_container .stats div, #summary_tab .stats div {
  margin: 0.5em;
}
#offer_details_container .stats div h4, #summary_tab .stats div h4 {
  margin: 0;
  text-align: center;
  background-color: #14344d;
  color: #1248fc;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#offer_details_container .stats div p, #summary_tab .stats div p {
  margin: 0;
  padding: 1em;
  text-align: center;
  background-color: rgba(116, 193, 241, 0.6509803922);
}
#offer_details_container .stats div p:last-child, #summary_tab .stats div p:last-child {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.filters {
  margin-bottom: 1em;
}
.filters form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.filters form button {
  width: min-content;
  padding: 10px;
}
.filters form .fields {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.filters form .fields label {
  margin-left: 1em;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
.pagination .current span {
  padding: 10px;
}

/*# sourceMappingURL=base.css.map */
