@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
label,
select {
  font-family: 'Rajdhani', sans-serif;
  margin: 0;
}

.steel-weight-calculator {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 10px 15px #00000035;
          box-shadow: 0px 10px 15px #00000035;
  padding: 1rem;
  width: 100%;
  max-width: 1100px;
  margin: auto auto;
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
  .steel-weight-calculator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.steel-weight-calculator .calculator-header {
  display: none;
}

.steel-weight-calculator .calculator-header h1 {
  margin: 0 0 1.5rem;
  padding: 0;
  line-height: 1;
  font-size: 2rem;
  text-transform: uppercase;
}

.steel-weight-calculator .calculator-panel {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 992px) {
  .steel-weight-calculator .calculator-panel {
    width: 50%;
  }
}

.steel-weight-calculator .calculator-panel .select-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.steel-weight-calculator .calculator-panel .select-inputs .input-select-material,
.steel-weight-calculator .calculator-panel .select-inputs .input-select-norm {
  cursor: pointer;
  font-weight: 500;
  padding: 6px 25px;
  margin-bottom: 20px;
  border-radius: 40px;
  font-size: 1rem;
  border: 1px solid #e7e7ec;
  font-family: Rajdhani, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.steel-weight-calculator .calculator-panel .select-inputs .input-select-material label,
.steel-weight-calculator .calculator-panel .select-inputs .input-select-norm label {
  line-height: 1;
}

.steel-weight-calculator .calculator-panel .select-inputs .input-select-material select,
.steel-weight-calculator .calculator-panel .select-inputs .input-select-norm select {
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  height: auto;
  cursor: pointer;
  text-align: center;
}

.steel-weight-calculator .calculator-panel .bar-type-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 25px;
  margin-bottom: 20px;
  border-radius: 40px;
  border: 1px solid #e7e7ec;
  cursor: pointer;
}

.steel-weight-calculator .calculator-panel .bar-type-inputs div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}

.steel-weight-calculator .calculator-panel .bar-type-inputs div img {
  width: 50px;
  opacity: 0.5;
}

.steel-weight-calculator .calculator-panel .bar-type-inputs div img.full-opacity {
  opacity: 1;
}

.steel-weight-calculator .calculator-panel .data-inputs {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.steel-weight-calculator .calculator-panel .data-inputs div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 25px;
  border-radius: 40px;
}

.steel-weight-calculator .calculator-panel .data-inputs div .data-input {
  border: none;
  border-bottom: solid 1px #e3e3e3;
  text-align: center;
  width: 30%;
  margin-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 992px) {
  .steel-weight-calculator .calculator-panel {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.steel-weight-calculator .calculator-image-preview {
  border: solid 1px #333333;
  margin: 1rem;
  width: calc(50% - 2rem);
  height: 370px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 992px) {
  .steel-weight-calculator .calculator-image-preview {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 6rem);
    height: 200px;
    padding: 2rem;
  }
}

.steel-weight-calculator .calculator-image-preview div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.steel-weight-calculator .calculator-image-preview img {
  width: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 992px) {
  .steel-weight-calculator .calculator-image-preview img {
    width: 100%;
  }
}

.steel-weight-calculator .calculator-result {
  width: 100%;
  background-color: red;
}

@media screen and (max-width: 992px) {
  .steel-weight-calculator .calculator-result {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.steel-weight-calculator .calculator-result .result-inputs {
  border: solid 1px #e3e3e3;
  background-color: #efeeee;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.steel-weight-calculator .calculator-result .result-inputs div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 768px) {
  .steel-weight-calculator .calculator-result .result-inputs div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 1rem;
  }
}

.steel-weight-calculator .calculator-result .result-inputs div input {
  border: none;
  border-bottom: 1px solid #cacaca;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/*# sourceMappingURL=style.css.map */