@font-face {
  font-family: "VELUXforOffice";
  src: url("../fonts/VELUXforOffice-Regular.woff") format("woff");
  font-weight: normal;
}

@font-face {
  font-family: "VELUXforOffice";
  src: url("../fonts/VELUXforOffice-Bold.woff") format("woff");
  font-weight: bold;
}
@font-face {
  font-family: "VELUX-gothic";
  src: url("../fonts/velux-gothic-bold.woff2") format("woff2");
  font-weight: bold;
}

.btn.loading {
  background-image: -webkit-gradient(
    linear,
    0 0,
    100% 100%,
    color-stop(0.25, rgba(0, 0, 0, 0.1)),
    color-stop(0.25, transparent),
    color-stop(0.5, transparent),
    color-stop(0.5, rgba(0, 0, 0, 0.1)),
    color-stop(0.75, rgba(0, 0, 0, 0.1)),
    color-stop(0.75, transparent),
    to(transparent)
  );
  background-image: -moz-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 50px 50px;
  -moz-background-size: 50px 50px;
  -webkit-background-size: 50px 50px;
  -webkit-animation: animate-stripes 2s linear infinite;
}

@-webkit-keyframes animate-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -50px 0;
  }
}
​ .clear {
  clear: both;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "VELUXforOffice";
  color: #737373;
}

h1,
h2 {
  text-transform: uppercase;
  font-weight: bold;
}

h3 {
  font-size: 18px;
  font-weight: bold;
}

button {
  cursor: pointer;
}

table {
  border-spacing: 0px;
}
tfoot > tr > td {
  font-weight: bold;
  margin-top: 7px;
  display: table;
}

h1.title {
  color: #ee0000;
  font-size: 30px;
  margin: 20px 8px;
}
h2.title {
  height: 30px;
  color: #33443d;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: 0.13px;
  padding: 5px 0;
}

.optional {
  display: none;
}

select option {
  width: 400px;
  background-color: #ffffff;
}

.ecalculator_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ecalculator_content {
  width: 1380px;
}

.main-title_container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.main-title_container > h1.title {
  align-self: center;
  letter-spacing: 0.16px;
  text-align: center;
  width: inherit;
}

.main-title_container > .title_line {
  border-top: 1px solid #737373;
  width: inherit;
  height: 0px;
  align-self: center;
}

.grid_list-items {
  display: grid;
  grid-template-columns: 80px repeat(8, 1fr) 40px;
  column-gap: 20px;
  padding: 12px 0px;
}

.thead.grid_list-items .cell {
  text-align: center;
}

.grid_list-items:nth-child(odd) {
  background-color: #ffffff;
}

.grid_list-items:nth-child(even) {
  background-color: rgba(224, 224, 224, 0.31);
}

.extend_width {
  width: max-content;
}

.grid-container_table {
  width: 100%;
}

.grid-container_table .table-head_container:nth-child(2) {
  border-top: 1px solid #c4c4c4;
}

.table-head_container:nth-child(2) button.remove-line {
  display: none;
}

.solutions_container {
  margin: 0px auto;
}

.features_container {
  margin: 0px auto;
}

.row_container_features_head {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  font-size: 18px;
  line-height: 49px;
  font-weight: bold;
  border-bottom: 1px solid #c4c4c4;
}

.row_container_features_head > th:nth-child(1) {
  grid-area: 1/1/2/6;
}
.row_container_features_head > th:nth-child(2) {
  grid-area: 1/6/2/15;
}
.row_container_features_head > th:nth-child(3) {
  grid-area: 1/15/2/19;
}

.row_container_features {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: repeat(1, 1fr);
  height: 49px;
  width: inherit;
  text-align: center;
  align-items: center;
  font-weight: bold;
}

.row_container_features:nth-child(odd) {
  background-color: rgba(224, 224, 224, 0.31);
}

.row_container_features:nth-child(even) {
  background-color: white;
}

.row_container_features > th {
  display: flex;
  justify-content: center;
  align-items: center;
}
.row_container_features > td {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.row_container_features > td:first-child {
  font-family: "VELUX-gothic";
}

.row_container_features > td:nth-child(5) {
  border-right: 1px solid #c4c4c4;
}
.row_container_features > td:nth-child(14) {
  border-right: 1px solid #c4c4c4;
}
.row_container_features > th:nth-child(5) {
  border-right: 1px solid #c4c4c4;
}
.row_container_features > th:nth-child(14) {
  border-right: 1px solid #c4c4c4;
}

.row_container_features:nth-child(2) > th {
  color: #a9cae5;
  font-size: 12px;
  height: inherit;
}

.row_container_features:last-child {
  border-bottom: 1px solid #c4c4c4;
}

.cell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 145px;
  height: 25px;
}

.cell > select {
  width: inherit;
  height: inherit;
  margin: 0px;
  font-family: "VELUXforOffice";
  font-weight: bold;
  font-size: 16px;
  color: #737373;
  background-color: #ffffff;
}

.lineTitle {
  width: 100%;
  font-family: "VELUX-gothic";
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.09px;
  line-height: 20px;
  text-align: center;
  grid-column-gap: 35px;
}

.row_container .cell > span {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: inherit;
  height: 44px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1px;
  text-align: center;
}

.add-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 37px;
  width: 227px;
  padding: 7px;
  margin: 11px;
  border: none;
  background: none;
  color: #ee0000;
}

button.add-line > svg {
  width: 25px;
  margin-left: 10px;
}

.remove-line {
  background: none;
  border: none;
  padding: unset;
  /* margin-right: 15px; */
}
button.remove-line > svg {
  width: 20px;
  color: #ee0000;
}

.export_container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.export_calc > h2 {
  margin-bottom: 40px;
}

.export_calc > div {
  margin-bottom: 28px;
  margin-left: 35px;
}

.export_calc > div > select {
  width: 210px;
  height: 25px;
  font-family: "VeluxforOffice";
  font-weight: bold;
  font-size: 16px;
  color: #737373;
}

.export_calc > div > button.btn {
  width: 275px;
  height: 35px;
  font-family: "VeluxforOffice";
  font-weight: bold;
  font-size: 18px;
  background-color: #ee0000;
  border: none;
  color: white;
}

.export_calc .button a {
  color: #a9cae5;
  font-size: 18px;
}

.help {
  width: 235px;
  height: 215px;
  margin-left: auto;
  position: relative;
  right: -75px;
}

.help_question {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  height: 70px;
  background: #a9cae5;
  color: #737373;
}

.help_question span {
  color: #33443d;
  font-weight: bold;
}

.help_adress {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  height: 145px;
  background: #737373;
  color: white;
}

.help > div > i {
  font-size: 32px;
}

.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 999;
  display: none;
  background-image: url("../images/transparence.png");
}

.header_popup {
  text-transform: uppercase;
  color: #374d5b;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #374d5b;
  font-weight: bold;
}

.content_popup {
  background-color: white;
  position: relative;
  top: 20%;
  width: 500px;
  min-height: 70px;
  max-height: 70%;
  margin: auto;
  border: 1px solid #cccccc;
  padding: 30px;

  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;

  -moz-box-shadow: 0px 0px 10px #b3b3b3;
  -webkit-box-shadow: 0px 0px 10px #b3b3b3;
  box-shadow: 0px 0px 10px #b3b3b3;
}

.close_popup {
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
}

table.table-docs-dl {
  width: 100%;
  font-size: 13px;
}

table.table-docs-dl td,
table.table-docs-dl th {
  vertical-align: middle;
  width: 50%;
}

table.table-docs-dl th {
  text-align: center;
}

table.table-docs-dl tr td:last-of-type {
  text-align: center;
}
