@charset "UTF-8";

#fixed-asset-simulator .est-intro-box{
  padding-top: 110px;
}
#fixed-asset-simulator .simulation-form-wrap{
  margin-top: 60px;
  margin-bottom: 50px;
}
#fixed-asset-simulator .simulation-form{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#fixed-asset-simulator .price-input{
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  border: 2px solid #191970;
  height: 70px;
}
#fixed-asset-simulator .price-input label{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #191970;
  color: #fff;
  height: 100%;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap
}
#fixed-asset-simulator .price-input .input-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}
#fixed-asset-simulator .price-input #price{
  border: none;
  outline: none;
  font-size: 20px;
  line-height: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}
#fixed-asset-simulator .result-box{
  width: calc(50% - 10px);
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
#fixed-asset-simulator .fixed-asset-result{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 15px;
}
#fixed-asset-simulator .result-box .calc-btn{
  height: 100%;
  box-sizing: border-box;
  padding: 15px;
  font-size: 20px;
  line-height: 20px;
  background: #191970;
  color: #fff;
  border: #191970 2px solid;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
#fixed-asset-simulator .result-box .calc-btn:hover{
  background: #fff;
  color: #191970;
}
#fixed-asset-simulator .result-wrap{
  border-bottom: 2px solid #191970;
  width: calc(50% - 7.5px);
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#fixed-asset-simulator .result{
  display: flex;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 20px;
  line-height: 20px;
  padding: 0 15px;
}
#fixed-asset-simulator .unit{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 20px;
  padding-right: 15px;
  padding-bottom: 0px;
  white-space: nowrap;
}
#fixed-asset-simulator .note{
  margin-top: 15px;
  text-align: right;
}
@media only screen and (max-width: 1239px){
  #fixed-asset-simulator .fixed-asset-result{
    flex-wrap: wrap;
  }
  #fixed-asset-simulator .result-wrap{
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
  }
  #fixed-asset-simulator .result-box{
    height: auto;
    align-items: center;
  }
  #fixed-asset-simulator .result-wrap:last-child{
    margin-bottom: 0px;
  }
  #fixed-asset-simulator .price-input label,
  #fixed-asset-simulator .price-input #price,
  #fixed-asset-simulator .result-box .calc-btn,
  #fixed-asset-simulator .result,
  #fixed-asset-simulator .unit{
    font-size: 16px;
    line-height: 16px;
  }
  #fixed-asset-simulator .result-box .calc-btn{
    height: 70px;
  }
}
@media only screen and (max-width: 767px){
  #fixed-asset-simulator .simulation-form{
    flex-wrap: wrap;
  }
  #fixed-asset-simulator .price-input,
  #fixed-asset-simulator .result-box{
    width: 100%;
    height: auto;
    align-items: center;
  }
  #fixed-asset-simulator .est-intro-box{
    padding-top: 55px;
  }
  #fixed-asset-simulator .simulation-form-wrap{
    margin-top: 30px;
    margin-bottom: 25px;
  }
  #fixed-asset-simulator .price-input{
    height: 70px;
    margin-bottom: 20px;
  }
}