body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#configurator-container {
  width: 100%;
  height: calc(100% - 103px);
  display: flex;
  flex-direction: column-reverse;
}

.pop-up-container,
.shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.pop-up-container {
  z-index: -1;
}
.shadow {
  background: black;
  opacity: 0.4;
}
.pop-up--show {
  z-index: 10000000;
}
.pop-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  min-width: 385px;
  min-height: 700px;
  height: 70%;
  padding: 15px 30px;
  background: white;
  box-sizing: border-box;
  overflow: auto;
}
.hide {
  display: none;
}
.client-form-data {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.client-form-data form {
  width: 95%;
  padding: 5px;
  margin: auto;
}

div.submit button {
  background-color: #0b9892;
  width: 120px;
  height: 45px;
  border-radius: 30px;
  color: white;
  margin-top: 5px;
}

.calculator-container {
  width: 100%;
  visibility: hidden;
  background-color: #fff;  
}

.table {
  color: #717475;
  margin: 0;
  font-size: 14px;
  table-layout: fixed;                   
}

.table-bordered > thead > tr > th {
  border-bottom-width: 1px;
}

.background-green {
  background-color: #1e9993 !important;
  color: #ffffff !important;
  width: 200px;
  font-size: 16px;
  position: relative;
}

.calculator-logo {
  margin-top: 5px;
}

.calculator-value-input {
  border: 1px solid #dbdbdb;
  margin: 0;
  padding: 0;
  width: 50px;
}

.text-center {
  vertical-align: middle !important;
}

.symbol-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calculator-value-input:focus {
  outline: none;
}

.calculator-select {
  border: none;
  margin: 0;
  width: 125px;
}

.calculator-select:focus {
  outline: none;
}

 .result-value {
  font-weight: bold;
  color: #0b9892;
}        
.close-mobile-calculator-button {
  border: none;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0b9892;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 3px;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
}

.show-roi-calculator-button {
  display:none;
  border: none;
  background-color: #0b9892;
  color: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
}
.calculator-table-tr td{
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1300px) {
  .navbar {
    justify-content: flex-start !important;
}
.navbar-header {
    width: 100%;
    display: inline-block;
}
.navbar-brand img {
    height: 50px !important;
}
  #configurator-container {
  height: calc(100% - 103px);
}
  .calculator-container {
    display: none;
  }

  .table {
    display: flex;
    height: 100%;
  }

  .text-center {
    width: 50vw;
    height: 11.1%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .calculator-table-tr {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }

  .table-bordered > tbody > tr > td {
    border-width: 0.4px;
  }
}

@media screen and (max-width: 1300px) {
  .show-roi-calculator-button {
    display: block;
  }

  .close-mobile-calculator-button {
    display: none;
  }
}

/* submit pop-up */

.pop-up-container,
.shadow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100vh;
}
.pop-up-container {
  z-index: -1;
}
.shadow {
  background: black;
  opacity: 0.4;
}
.pop-up--show {
  z-index: 10000000;
}
.pop-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  min-width: 685px;
  min-height: 750px;
  height: 80%;
  padding: 25px 10px;
  background: white;
  box-sizing: border-box;
  overflow: auto;
  border-radius: 10px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.hide {
  display: none;
}
.client-form-data {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.client-form-data form {
  width: 95%;
  padding: 5px;
  margin: auto;
}
div.submit button {
  color: #0b9892;
  border: 1px solid #0b9892;
  width: 120px;
  height: 45px;
  border-radius: 30px;
  margin-top: 5px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: white;
}

div.submit button:hover {
  background-color: #0b9892;
  color: white;
}

.form-horizontal-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 10px;
}

.form-group {
  width: 45%;
}

.comments-form-group {
  width: 100%;
}

.three-block-form-group {
  width: 30%;
}

label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-control {
  background-color: #e6e6e6;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  border: none;
  height: 25px;
  border-radius: 0;
  font-size: 15px !important;
}

.comments-form-control {
  min-height: 80px !important;
}

.upload-file-input-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.upload-file-input-container > input {
  display: none;
}

.browse-button {
  width: 150px;
  height: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  border: 1.5px dashed black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.browse-button:hover {
  color: #0b9892;
  border-color: #0b9892;
}

.submitted-popup-close-button {
  background-color: transparent;
  border: none;
  color: grey;
  font-size: 24px;
  font-weight: bold;
  text-align: end;
  position: absolute;
  right: 10px;
  top: 10px;
}

/* submitted popup */

.submitted-popup {
  min-width: 300px;
  min-height: 300px;
  width: 300px;
  height: 300px;
  background: #e6e6e6;
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.start-a-new-design-button {
  width: 170px;
  height: 30px;
  background-color: transparent;
  border: 1px solid #1e9993;
  color: #1e9993;
  border-radius: 15px;
  letter-spacing: 1px;
  font-size: 10px;
}

.submitted-popup-main-block-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}
