.calc-input{
  width:200px;
}
#calculate-btn{
 margin-left: 100px;
}
.input-container {
  display: flex;
  align-items: center;
}

.input-container label {
  margin-right: 10px;
}

.input-container input,
.input-container button {
  margin-right: 10px;
}
}

.calc-intro{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 40px;
    align-items: center;
}
.calc-intro-left{
    min-height: 388px;
    border-radius: 38px;
    width: 66.15%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 14px 34px #00000029;
}
.calc-box-title{
  margin-bottom:25px;
  text-align: center;
}
.calc-main{
  display: none;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 35px; 
  justify-content:center
}
.calc-show{
  display:block:
}
.calc-item {
    margin-right: 1.7%;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; 
}

.calc-item-left {
  text-align: right;
  margin-right:30px
  
}

.calc-item-right {
  text-align: left;
  margin-left: 30px;
}

.calc-img-good{
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 68px;
    height: 68px;
    border-radius: 100%;
    background-color: #05c608;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    top: -34px;
}
.calc-img-bad{
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 68px;
    height: 68px;
    border-radius: 100%;
    background-color: #d77e5e;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    top: -34px;
}


.calc-img img{
    border-radius: 0;
    display: block;
    margin: 0 auto;
    width: 50%;
   color: #ffffff;
}

.calc-box-bg {
    margin: 28px 0px 28px 0;
    border-radius: 8px 8px 0 0;
    position: relative;
    padding: 28px 28px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 30px 40px;
    border-radius: 23px;
    margin-top: 20px;
    box-shadow: 11px 12px 21px #00000029;
    height: 100%;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-values {
  display: flex;
  flex-direction: column;
}

.calc-value {
  margin-top: 10px;
}

.calc-value h4{
  margin-bottom: 5px;
}

.calc-value p {
  display: block;
  text-align:left;
  font-size: 12px;
  margin-right: 10px;
}

.calc-value .calc-bold-value {
  font-weight: bold;
  text-align: right;
}
.calc-value hr {
  border-color: #ff0000;
}
.calc-results {
  display: none;
  margin-top: 20px;
  text-align: center;
}


table, tr, td {
    border: none;
}
table {
    border-collapse: collapse;
    width: 100%;
  }

 th, td {
    padding: 8px;
    text-align: left;
}
.disclaimer{
  font-size:10px;
}