/*-------------------------------------------------------------------
	@ Calculator - percentage
-------------------------------------------------------------------*/
.percentage .calc-card{padding: 35px; margin-bottom: 32px; border: 1px solid #ececec; border-radius: 18px; background: #fff; transition: all .25s ease;}
.percentage .calc-card:hover{border-color: #f04137; transform: translateY(-2px); box-shadow: 0 15px 40px rgba(0,0,0,.06);}
.percentage .calc-card .card-head{display: flex; margin-bottom: 35px; align-items: center; gap: 15px;}
.percentage .calc-card .card-head .badge{display: flex; width: 50px; aspect-ratio: 1/1; border-radius: 100%; background: #f04137; font-size: 18px; color: #fff; flex-shrink: 0; align-items: center; justify-content: center; font-weight: 700;}
.percentage .calc-card .card-head h2{font-size: 22px; color: #f04137; font-weight: 700;}
.percentage .calc-card .card-head p{margin-top: 8px; font-size: 13px; color: #666;}
.percentage .calc-card .card-body{display: grid; gap: 25px; grid-template-columns: 1fr 1fr;}
.percentage .calc-card .card-body.card-body-three{grid-template-columns: 1fr 1fr 1fr;}
.percentage .calc-card .card-body .field label{display: block; margin-bottom: 10px; font-size: 14px; color: #444; font-weight: 700;}
.percentage .calc-card .card-body .field input,
.percentage .calc-card .card-body .field select{width: 100%; height: 56px; padding: 0 18px; border: 1px solid #ddd; border-radius: 10px; background: #fff; font-size: 16px; color: #111; cursor: pointer; box-sizing: border-box; transition: all .25s ease; appearance: none;}
.percentage .calc-card .card-body .field input::placeholder{color: #b5b5b5;}
.percentage .calc-card .card-body .field select{background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666'%3E%3Cpath d='M4 7l5 5 5-5'/%3E%3C/svg%3E") right 18px center no-repeat,#fff;}
.percentage .calc-card .card-body .field input:focus,
.percentage .calc-card .card-body .field select:focus{border-color: #f04137; outline: none; box-shadow: 0 0 0 4px rgba(240,65,55,.08);}
.percentage .calc-card .card-body .field .input-unit{position: relative;}
.percentage .calc-card .card-body .field .input-unit input{padding-right: 55px;}
.percentage .calc-card .card-body .field .input-unit span{position: absolute; top: 50%; right: 18px; font-size: 16px; color: #999; transform: translateY(-50%); font-weight: 700;}
.percentage .calc-card .result-box{padding: 28px; margin-top: 30px; border-radius: 14px; background: #fafafa; text-align: center;}
.percentage .calc-card .result-box .result-title{display: block; margin-bottom: 10px; font-size: 14px; color: #777;}
.percentage .calc-card .result-box .result-value{display: flex; align-items: center; justify-content: center;}
.percentage .calc-card .result-box .result-value strong{font-size: 42px; line-height: 1; color: #f04137; font-weight: 800; letter-spacing: -0.03em;}
.percentage .calc-card .card-action{margin-top: 20px;}
.percentage .calc-card .card-action .btn-clear{width: 100%; height: 50px; padding: 0 18px; min-width: 90px; border: 1px solid #ddd; border-radius: 10px; background: #fafafa; font-size: 14px; color: #666; cursor: pointer; transition: all .25s ease; font-weight: 400;}
.percentage .calc-card .card-action .btn-clear:hover{border-color: #ccc; background: #f3f3f3; color: #333;}
.percentage .button-area{margin: 50px 0; text-align: center;}
.percentage .button-area .btn-reset{width: 180px; height: 56px; border: 0; border-radius: 12px; background: #f04137; font-size: 16px; color: #fff; cursor: pointer; transition: all .25s ease; font-weight: 700;}
.percentage .button-area .btn-reset:hover{background: #d93228; transform: translateY(-2px);}
@media (max-width:768px){
	.percentage .calc-card{padding: 22px; border-radius: 14px;}
	.percentage .calc-card .card-head{margin-bottom: 25px; gap: 14px;}
	.percentage .calc-card .card-head .badge{width: 40px; font-size: 15px;}
	.percentage .calc-card .card-head h2{font-size: 16px;}
	.percentage .calc-card .card-head p{margin-top: 3px; font-size: 11px; line-height: 1.5;}
	.percentage .calc-card .card-body,
	.percentage .calc-card .card-body.card-body-three{gap: 18px; grid-template-columns: 1fr;}
	.percentage .calc-card .card-body .field{display: flex; align-items: center;}
	.percentage .calc-card .card-body .field label{width: 100px; margin: 0;}
	.percentage .calc-card .card-body .field .input-unit{flex: 1;}
	.percentage .calc-card .card-body .field input,
	.percentage .calc-card .card-body .field select{flex: 1; height: 45px; font-size: 16px;}
	.percentage .calc-card .result-box{display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; margin-top: 20px;}
	.percentage .calc-card .result-box .result-title{margin: 0;}
	.percentage .calc-card .result-box .result-value strong{font-size: 30px;}
	.percentage .info-box{padding: 22px; border-radius: 14px;}
	.percentage .info-box li{font-size: 14px;}
	.percentage .button-area{margin: 35px 0;}
	.percentage .btn-reset{width: 100%; height: 52px; font-size: 15px;}
}