﻿:root{
    --theme-buttons-bg-color:#000;
}
/* product detail page filter box styles start */
.rounded-filter-template ,.squre-filter-template{
    margin:3px;
}
.rounded-filter-template label{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0 !important;
    border-radius:100%;
}
.rounded-filter-template-item{
    display:flex;
    width:40px;
    height:40px;
    border:1px solid #ccc;
    border-radius:100%;
    font-size:10px;
    text-align:center;
    padding:9px 0;
    overflow:hidden;
    text-overflow:'';
    align-items:center;
    justify-content:center;
}

.box02 .rounded-filter-template input[type="radio"]:checked + label, .box04 .rounded-filter-template input[type="radio"]:checked + label {
    border: none !important;
}

.box02 .rounded-filter-template input[type="radio"]:checked + label .rounded-filter-template-item, .box04 .rounded-filter-template input[type="radio"]:checked + label .rounded-filter-template-item{
    border: 2px solid var(--theme-buttons-bg-color) !important;
}
.checked-item{
    font-size:30px;
    color:white;
    padding-top:20px;
}

.squre-filter-template label{
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:10px;
    flex-wrap:wrap;
    width:50px;
    height:auto;
    margin-left:5px; 
}

.squre-filter-template-item-box{
    padding:5px;
    border:1px solid #dee2e6 !important;
    flex:0 0 100%;
    border-radius:12px;
    margin-bottom:3px !important;
    text-align:center;
}
.squre-filter-template-item{
    width:40px;
    height:40px;
    display:block;
    margin:0px !important;
    border-radius:9px;
    vertical-align:middle;
    padding:10px 0px;
    font-size:12px;
    text-overflow:'';
    overflow:hidden;
    
}

.squre-filter-template-item-text{
    padding:15px;
}

.box02 .squre-filter-template input[type="radio"]:checked + label, .box04 .squre-filter-template input[type="radio"]:checked + label{
    border: none !important;
}

.box02 .squre-filter-template input[type="radio"]:checked + label .squre-filter-template-item-box, .box04 .squre-filter-template input[type="radio"]:checked + label .squre-filter-template-item-box{
    
    border: 2px solid var(--theme-buttons-bg-color) !important;
}
.box02 .small-circule-filter-color input[type="radio"]:checked + label, .box04 .small-circule-filter-color input[type="radio"]:checked + label {
    border:none !important;
    border-bottom:2px solid var(--theme-buttons-bg-color) !important;
}
.small-circule-filter-color{
    width:25px;
    height:25px;
    border:1px solid #fff;
    border-radius:100%;
    margin-right: 5px;
}
.small-circule-filter-color .small-circule{
     padding:0px 2px 4px 4px;
}

.small-circule-filter-color .small-circule .small-circule-filter-template-item{
    width:25px;
    height:25px;
    border-radius:100%;
    display:block;
    border:1px solid #ccc;
    }
.filled-squre-filter-template{
    margin:2px 5px;
}
.filled-squre-filter-template .filled-squre-label{
    width:60px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:0.25rem;
    color:#000000;

}
.filled-squre-filter-template .filled-squre-label span{

    font-size:12px;
}

.box02 .filled-squre-filter-template input[type="radio"]:checked + label, .box04 .filled-squre-filter-template input[type="radio"]:checked + label {
    border:none !important;
    background-color:var(--theme-buttons-bg-color) !important;
    color:#fff;
}
.warranty {
    margin-bottom:30px !important;
}

.block-boxed-input input[type="radio"] {
    display: none;
}
.block-boxed-input .block-boxed-input-label{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 7px;
    border: 2px solid #ccc;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    color: #b1b1b1;
}

.block-boxed-input .block-boxed-input-label i{
    font-size: 17px;
    justify-self: flex-start;
}

.box02 .block-boxed-input input[type="radio"]:checked + label, .box04 .block-boxed-input input[type="radio"]:checked + label {
    border: 2px solid #3f3f3f !important;
    animation: border-change 0.5s ease-in-out forwards;
}

.box02 .block-boxed-input input[type="radio"]:checked + label i::before, .box04 .block-boxed-input input[type="radio"]:checked + label i::before{
    animation: icon-change 0.2s ease-in-out forwards;
}
@keyframes icon-change {
    0%{
        content: "\F28A";
    }
    100%{
        content: "\F26A" ;
    }
}
@keyframes border-change {
    50%{
        color: #5c5c5c;
        border: 2px solid #3f3f3f !important;
    }
    100%{
        color: #000000;
        border: 2px solid #000000 !important;
    }
}