.nd-font-slider{
    min-width:250px;
    max-width:330px;
    flex:1;
    background:#f8fafc;
    border:1px solid var(--nd-border, #e5e7eb);
    padding:12px 14px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.nd-font-slider-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.nd-font-slider-top label{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    font-size:12px;
    font-weight:900;
    color:var(--nd-text, #111827);
}

.nd-font-slider-top label strong{
    color:var(--nd-color, #cc1a25);
    font-size:12px;
    font-weight:950;
}

.nd-font-small{
    font-size:13px;
    font-weight:900;
    color:var(--nd-muted, #64748b);
}

.nd-font-big{
    font-size:22px;
    font-weight:950;
    color:var(--nd-text, #111827);
}

.nd-font-slider input[type="range"]{
    width:100%;
    height:5px;
    appearance:none;
    -webkit-appearance:none;
    background:#dbe3ef;
    outline:none;
}

.nd-font-slider input[type="range"]::-webkit-slider-thumb{
    appearance:none;
    -webkit-appearance:none;
    width:18px;
    height:18px;
    background:var(--nd-color, #cc1a25);
    cursor:pointer;
    border:3px solid #fff;
    box-shadow:0 3px 10px rgba(15,23,42,.22);
}

.nd-font-slider input[type="range"]::-moz-range-thumb{
    width:18px;
    height:18px;
    background:var(--nd-color, #cc1a25);
    cursor:pointer;
    border:3px solid #fff;
    box-shadow:0 3px 10px rgba(15,23,42,.22);
}

.nd-font-slider-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    font-size:10px;
    color:var(--nd-muted, #64748b);
    font-weight:800;
}

.nd-font-slider-bottom button{
    border:0;
    background:transparent;
    color:var(--nd-color, #cc1a25);
    font-size:11px;
    font-weight:950;
    cursor:pointer;
    padding:0;
}

.news-tools{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

@media(max-width:700px){
    .nd-font-slider{
        min-width:100%;
        max-width:100%;
    }
}