/* ===== SAVING GOAL ===== */

.saving-date{
width:100%;
height:64px;
padding:0 14px;
border:1px solid #d9e4f2;
border-radius:16px;
font-size:1.2rem;
font-weight:800;
background:#fff;
font-family:inherit;
color:#101828;
box-sizing:border-box;
}

.saving-choice{
display:flex;
gap:12px;
flex-wrap:wrap;
margin:14px 0 4px;
}

.saving-choice label{
display:flex;
align-items:center;
gap:8px;
padding:12px 14px;
background:#f8fbff;
border:1px solid #dceeff;
border-radius:14px;
font-weight:800;
cursor:pointer;
color:#1e3a8a;
}

.saving-choice input{
width:auto;
height:auto;
}

.saving-result{
background:#eef7ff;
border-radius:24px;
padding:18px;
text-align:center;
font-size:1rem;
line-height:1.75;
font-weight:400;
color:#344054;
}

.saving-section{
background:#fff;
border-radius:18px;
padding:22px;
margin-bottom:16px;
border:1px solid #e6edf5;
}

.saving-section:last-child{
margin-bottom:0;
}

.saving-title{
font-size:1.25rem;
line-height:1.35;
font-weight:900;
color:#2563eb;
margin-bottom:12px;
text-align:center;
}

.saving-main{
font-size:2rem;
line-height:1.3;
font-weight:900;
color:#2563eb;
margin:12px 0;
text-align:center;
}

.saving-sub{
font-size:.95rem;
line-height:1.9;
font-weight:500;
color:#667085;
text-align:center;
}

.saving-info{
margin-top:0;
background:none;
border:none;
padding:0;
text-align:left;
font-size:1.02rem;
line-height:1.85;
color:#344054;
}

.saving-info b{
color:#2563eb;
font-weight:900;
}

.saving-compare{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
margin-top:16px;
}

.saving-compare-card{
background:#fff;
border:1px solid #dceeff;
border-radius:18px;
padding:16px 12px;
text-align:center;
}

.saving-compare-card span{
display:block;
font-size:.95rem;
line-height:1.45;
font-weight:700;
color:#667085;
margin-bottom:8px;
}

.saving-compare-card b{
display:block;
font-size:1.15rem;
line-height:1.45;
font-weight:900;
color:#2563eb;
}

.saving-note{
font-size:1rem;
line-height:1.85;
font-weight:500;
color:#667085;
}

.saving-list{
display:inline-block;
text-align:left;
line-height:2;
}

.saving-progress{
width:100%;
height:16px;
background:#eaf2ff;
border-radius:999px;
overflow:hidden;
margin:14px 0 10px;
}

.saving-progress-bar{
height:100%;
background:#2563eb;
border-radius:999px;
width:0%;
}

.saving-progress-text{
font-size:1rem;
font-weight:800;
color:#2563eb;
text-align:center;
}


/* MOBILE */

@media(max-width:768px){

.saving-date{
height:64px;
font-size:1.35rem;
}

.saving-choice{
display:grid;
grid-template-columns:1fr;
gap:10px;
}

.saving-choice label{
padding:14px;
font-size:1.08rem;
}

.saving-result{
padding:14px;
border-radius:20px;
}

.saving-section{
padding:18px 14px;
margin-bottom:14px;
border-radius:16px;
}

.saving-title{
font-size:1.15rem;
line-height:1.4;
}

.saving-main{
font-size:1.72rem;
line-height:1.3;
}

.saving-sub{
font-size:1rem;
font-weight:800;
color:#000000;
line-height:1.75;
}

.saving-info{
font-size:1rem;
line-height:1.8;
}

.saving-compare{
grid-template-columns:1fr;
gap:10px;
}

.saving-compare-card{
padding:15px 12px;
}

.saving-compare-card b{
font-size:1.1rem;
}

}