.aw-calculator{
    display:flex;
    gap:40px;
    background:#f8faff;
    border-radius:20px;
    padding:40px;
    border:1px solid #e7edf7;
    margin:50px 0;
}

.aw-left{
    width:35%;
}

.aw-right{
    width:65%;
}

.aw-label{
    color:#3563ff;
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.aw-left h2{
    font-size:36px;
    line-height:1.2;
    margin:20px 0;
}

.aw-left p{
    color:#666;
    line-height:1.7;
}

.aw-badges{
    display:flex;
    gap:5px;
    margin-top:30px;
}

.aw-badges div{
    flex:1;
    background:#fff;
    border:1px solid #e7edf7;
    border-radius:12px;
    padding:20px;
    text-align:center;
}

.aw-badges strong{
    display:block;
    font-size:20px;
    color:#3563ff;
}

.aw-badges span{
    color:#666;
    font-size:14px;
}

.aw-right label{
    display:block;
    margin-bottom:10px;
    margin-top:25px;
    font-weight:600;
}

.aw-right select{
    width:100%;
    height:55px;
    border:1px solid #dbe4f0;
    border-radius:10px;
    padding:0 15px;
    background:#fff;
}

#aw-pages{
    width:100%;
}

.aw-page-labels{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    color:#777;
    font-size:13px;
}

.aw-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.aw-features label{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0;
    font-weight:400;
}

.aw-features input{
    width:18px;
    height:18px;
}

.aw-total{
    margin-top:25px;
    padding-top:25px;
}

.aw-total-note {
    color:#666;
}

p.aw-text-subsol {
    text-align: center;
}

#aw-hours{
    color:#666;
    margin-bottom:10px;
    margin-top:10px;
}

#aw-price{
    font-size:48px;
    font-weight:700;
    color:#3563ff;
    line-height:1;
}

.aw-button{
    width:100%;
    margin-top:25px;
    border:none;
    background:#3563ff;
    color:#fff;
    height:55px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    font-size: 16px;
}

.aw-button:hover{
    background:#214de5;
}

.badges-text-black {
    color:#212121;
    font-weight: 600;
}

@media(max-width:991px){

    .aw-calculator{
        flex-direction:column;
        padding:25px;
    }

    .aw-left,
    .aw-right{
        width:100%;
    }

    .aw-left h2{
        font-size:28px;
    }

    .aw-features{
        grid-template-columns:1fr;
    }

    #aw-price{
        font-size:36px;
    }
}