#ic_calculator_wrapper{
    padding:80px 20px;
    background:#f7f9fc;
    width:100%;
}

.ic_calculator_container{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    flex-direction:row;
    gap:40px;
}

#ic_calculator_form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    max-width: 700px;
    width: 100%;
}

.ic_calculator_header{
    margin-bottom:40px;
}

.ic_calculator_header h2{
    margin:0 0 10px;
    font-size:36px;
    font-weight:700;
}

.ic_calculator_header p{
    margin:0;
    color:#666;
}

.ic_form_group{
    margin-bottom:35px;
}

.ic_group_title{
    display:block;
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
}

.ic_card_grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
}

.ic_select_card{
    position:relative;
    cursor:pointer;
}

.ic_select_card input{
    display:none;
}

.ic_select_card span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:90px;
    text-align:center;
    border:2px solid #ddd;
    border-radius:16px;
    background:#fff;
    transition:.3s;
    font-weight:600;
}

.ic_select_card:hover span{
    border-color:#0d6efd;
}

.ic_select_card input:checked + span{
    border-color:#0d6efd;
    background:#eef5ff;
}

.ic_option_buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.ic_option_btn{
    padding:12px 20px;
    border:2px solid #ddd;
    background:#fff;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    color:#333;
}

.ic_option_btn:hover{
    border-color:#0d6efd;
}
.ic_option_btn.ic_active {
    background: #0084d6;
    color: #fff;
}

#ic_room_size{
    width:100%;
}

.ic_range_value{
    margin-top:10px;
    font-weight:600;
}

#ic_insulation,
#ic_voltage{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
}

#ic_calculator_results{
    position:sticky;
    top:100px;
    height:fit-content;
    max-width: 400px;
    width: 100%;
}

.ic_results_box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.ic_results_icon{
    font-size:50px;
    margin-bottom:20px;
}

.ic_results_box h3{
    margin-bottom:15px;
}

.ic_results_box p{
    color:#666;
    line-height:1.7;
}

.ic_feature_list{
    margin: 0;
    padding-left: 20px;
}

.ic_feature_list li{
    margin-bottom:10px;
}

.ic_results_head {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.ic_results_head h3 {
    font-size: 24px;
}

#ic_calculator_results {
    /* position: relative;
    min-height: 150px; */
}

.ic-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.ic-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e5e5;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: ic-spin 0.8s linear infinite;
}

@keyframes ic-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


#ic_calculator_results img {
  max-width: 80px;
}
#ic_calculator_results h4 {
  font-size: 14px;
  font-weight: 4;
  margin-top: 5px;
}
#ic_calculator_results .ic_price {
  margin-bottom: 5px;
}
#ic_calculator_results a.button {
  padding: 10px;
  font-size: 12px !important;
  text-transform: capitalize;
}
#ic_calculator_results .ic_product_card {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#ic_calculator_results .ic_product_card:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media(max-width:991px){

    #ic_calculator_results{
        position:relative;
        top:auto;
    }
    .ic_calculator_container {
        flex-direction: column;
    }

}