:root{
    --dark-blue: #02294E;
    --blue: #053764;
    --light-blue: #F7F9FA;
    --pastel-blue: #EBEFF3;
    --orange: #FC8602;
    --light-orange: #F5F0EB;
    --gray: #757272;
}


/* sub hero section */

body{
    position: relative;
}

#overlay{
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 70;
    display: none;
}

.sub-link {
  color: #fff !important;  
}

.sub-hero-head{
    font-size: 1.9rem !important;
}


/* prdoct category section */

.product-category-section{
    padding: 60px 0;
   
}

.ct-top-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pc-container{
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 12px #00000015;
    border-radius: 10px;
}

@media screen and (max-width: 576px) {
    .pc-container{
        
        padding: 10px;
        
    } 
}

.pc-head{
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.pc-container-filter{
    padding: 5px;
    font-size: 0.9rem;
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    border-radius: 2px;
}


.ct-p-card-container{
    margin-top: 30px;
}

.ct-p-card-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.ct-p-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}


.ct-p-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 576px) {
    .ct-p-btn-wrapper {
        justify-content: flex-start; 
        margin-top: 20px;
    } 

    .ct-p-card-wrapper{  
        gap: 10px; 
    }

    .ct-p-card-info{
        gap: 10px;
    }
    
}

.ct-logo{
    max-width: 150px;
    width: 100%;
}

.compare-checkbox{
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--blue);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
    
}

.compare-checkbox::before{
    content: "✔";
    color: var(--blue);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    
}


.compare-checkbox:checked::before {
    content: "✔";
    background-color: var(--blue); /* Change color to background-color */
    color: #fff;
}

.ct-p-card-heading{
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 20px;
    margin-top: 7px;
}

.ct-p-card-company{
    font-size: 0.9rem;
    color: var(--blue);
    opacity: 0.8;
    font-style: italic;
    margin-top: 3px;
    margin-bottom: 5px;
}


.ct-p-price{
    font-size: 1.1rem;
}

.pt-card-btn{
    padding: 5.5px 12px !important;
}


/* filters section */

.filters{
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0;
}

.filter-navbar-section{
    padding: 10px 0px;
    
    top: 70px;
    z-index: 50;
    background-color: var(--light-blue);
    color: #fff;
    display: none;
    box-shadow: 0px 4px 10px #00000025;
}

.sticky{
    position: sticky !important;
}

.filter-btn{
    background-color: transparent;
    padding: 8px 12px;
    outline: none;
    border: 1px solid var(--gray);
    color: var(--gray);
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    transition: all 0.6s;
    
}

.filter-btn:hover{
    border: 1px solid var(--blue);
    color: var(--blue);
}

.apply-btn-wrapper{
    display: none;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}


.apply-btn{
    width: 100%;
}

@media screen and (max-width: 991px) {

    .product-category-section {
        padding-top: 30px;
    }
    .filter-section{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 100;
        padding-left: 0px !important;
        padding-right: 0px !important;
        padding-top: 75px !important;
        
    }

    .apply-btn-wrapper{
    display: flex;
    }

    .activeFilter{
        display: block !important;
    }

    .filt{
        display: none !important;
    }
    
    .ct-top-section{
        display: none !important;
    }

    .filter-navbar-section{
        display: block;
        
    }

}

.reset{
    cursor: pointer;
    opacity: 0.8;
    color: var(--blue);
    padding: 0px !important;
    margin-bottom: 0;
}

.reset i {
    transition: all 0.6s;
}

.reset:hover{
    opacity: 1;
}

.reset:hover i {
    transform: rotate(180deg);
}

.ft-head{
    color: var(--blue);
    font-size: 1.05rem;
    font-weight: 500;
}


.questionimg{
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}




