.search-results-container .container {
    display: flex;
    flex-wrap: wrap;
}

.search-fillter-item {
    border-bottom: 1px solid rgba(0,0,0,.6);
}

.search-fillter-item:last-child {
    border-bottom: none;
}

.search-fillter-item h3 {
    font-family: "PurysNdtv", "Lato", sans-serif;
    font-weight: 500;   
    color: #000;
    position: relative;
    cursor: pointer;
}

.search-fillter-item h3::after {
    content: '';
    position: absolute;
    right: 0;
    background-image: url('../images/arrow-top.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.search-fillter-item h3.hide-item::after {
    transform: rotate(180deg);
}

.search-fillter-item label {
    font-family: "PurysNdtv", "Lato", sans-serif;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

.search-fillter-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-style: solid;
    border-color: rgba(0,0,0,.6);
    border-radius: 2px;
    box-sizing: border-box;
    display: none;
}

.search-fillter-item label.checked::after {
    content: '';
    position: absolute;
    background-color: #3E3E3E;
    display: none;
}

.search-fillter-item label input {
    /* position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden; */
    margin-right: 5px;
}

.search-result-details {
    font-family: "PurysNdtv", "Lato", sans-serif;
    font-weight: 500;
    color: #000;
}

.search-result-details span {
    display: inline-block;
    text-decoration: underline;
}

/* Price Range Slider */
.range_container {
    display: flex;
    flex-direction: column;
  }
  
  .sliders_control {
    position: relative;
    min-height: 20px;
  }
  
  .form_control {
    position: relative;
    display: flex;
    /* justify-content: space-between; */
    font-size: 12px;
    line-height: 14px;
    color: #635a5a;
    margin-bottom: 7px;
  }
  
  .range_container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 10px;
    height: 10px;
    background-image: url('../images/range-thumb.svg');
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    /* box-shadow: 0 0 0 1px #C6C6C6; */
    cursor: pointer;
  }
  
  .range_container input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 10px;
    height: 10px;
    background-image: url('../images/range-thumb.svg');
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    /* box-shadow: 0 0 0 1px #C6C6C6; */
    cursor: pointer;  
  }
  
  /* input[type=range]::-webkit-slider-thumb:hover {
    background: #000;
  }
  
  input[type=range]::-webkit-slider-thumb:active {
    box-shadow: inset 0 0 3px #999, 0 0 9px #999;
    -webkit-box-shadow: inset 0 0 3px #999, 0 0 9px #999;
  } */
  
  .range_container input[type="number"] {
    color: #000;
    width: auto;
    height: 14px;
    font-size: 12px;
    line-height: 14px;
    border: none;
    appearance: none;
    padding: 0;
  }

  /* Chrome, Safari, Edge, Opera */
  .range_container input[type="number"]::-webkit-outer-spin-button,
  .range_container input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.range_container input[type=number] {
  -moz-appearance: textfield;
}
  
.range_container input[type=number]::-webkit-inner-spin-button, 
.range_container input[type=number]::-webkit-outer-spin-button {  
     opacity: 1;
  }
  
  .range_container input[type="range"] {
    -webkit-appearance: none; 
    appearance: none;
    height: 3px;
    width: 100%;
    position: absolute;
    background-color: #C6C6C6;
    pointer-events: none;
  }
  
  #fromSlider {
    height: 0;
    z-index: 1;
    top: 1.5px;
  }

  .max-range-input {
    position: relative;
    padding-left: 15px;
  }

  .max-range-input::before {
    content: "-";
    font-size: 12px;
    line-height: 14px;
    color: #000;
    position: absolute;
    left: 0;
  }
  /* Price Range Slider */

.filter-handler {
    display: flex;
    flex-wrap: wrap;
    padding: 4px 0;
}

.filter-handler .filter-handler-item {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000;
    font-family: "PurysNdtv", "Lato", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    box-sizing: border-box;
    width: 50%;
}

.filter-handler .filter-handler-item span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.filter-handler .filter-handler-item:first-child {
    border-right: 1px solid rgba(0,0,0,.3);
    position: relative;
}

.filter-handler .filter-handler-item:first-child ul {
    background-color: #fff;
    border: 1px solid #ddd;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    display: none;
}

.filter-handler .filter-handler-item:first-child ul li {
    list-style: none;
    cursor: pointer;
    font-family: "PurysNdtv", "Lato", sans-serif;
    box-sizing: border-box;
    color: #000;
}

.filter-handler .filter-handler-item:first-child ul li:first-child {
    border-radius: 5px 5px 0 0;
}

.filter-handler .filter-handler-item:first-child ul li:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom: none;
}

.filter-handler .filter-handler-item:first-child ul li:hover {
    background-color: #000;
    color: #fff;
}

.filter-handler .filter-handler-item img {
    width: 10px;
    height: auto;
    display: block;
    margin-right: 5px;
}

#serach-filter-close {
    position: fixed;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-color: #f00;
    color: #fff;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    display: none;
    z-index: 9999;
    border-radius: 20px;
}

.totalProduct a {
    text-decoration: none;
    color: #000;
}

@media (min-width: 992px) {
    .search-results-container {
        margin-top: 1.111vw;
    }

    .filter-handler {
        margin-top: 1.042vw;
    }
    .filter-handler .filter-handler-item:first-child {
        justify-content: left;
        border: none;
        font-size: 1.042vw;
    }
    .filter-handler .filter-handler-item:first-child img {
        width: 10px;
    }

    .filter-handler .filter-handler-item:first-child ul {
        top: 1.111vw;
    }

    .filter-handler .filter-handler-item:first-child ul li {
        font-size: .903vw;
        line-height: 2.083vw;
        border-bottom: 1px solid #eee;
        min-width: 10.417vw;
        padding: .208vw .694vw;
    }

    .filter-handler #serach-filter {
        display: none;
    }

    .search-fillters {
        width: 13.611vw;
        margin-right: 1.111vw;
    }

    .search-fillter-item {
        padding: 5px 24px 3px 16px;
        margin-bottom: 1.389vw;
    }

    .search-fillter-item h3 {
        font-size: .972vw;
        line-height: 1.111vw;
        margin: 0 0 .556vw;
        padding-right: 1.042vw;
    }

    .search-fillter-item h3::after {
        width: .972vw;
        height: .486vw;
        background-size: 100%;
        top: .347vw;
    }

    .search-fillter-item label {
        margin-bottom: .286vw;
        font-size: .833vw;
        line-height: .972vw;
        /* padding-left: 1.319vw; */
        padding: 3px 3px 3px 0;
        transition: 0.5s;
        width: 100%;
        background: transparent;
        border-radius: 5px;
        cursor: pointer;
    }

    .search-fillter-item label:hover {
        background: #eee;
    }

    .search-fillter-item label::before {
        width: .833vw;
        height: .833vw;
        border-width: .104vw;
    }

    .search-fillter-item label.checked::after {
        width: .417vw;
        height: .417vw;
        left: .208vw;
        top: .208vw;
    }

    .search-fillter-item label span {
        width: .833vw;
        height: .833vw;
        margin-right: .486vw;
        border-radius: .139vw;
    }

    .search-filter-list {
        box-shadow: 0 .278vw .278vw rgba(0,0,0,.25);
        border-radius: .139vw;
    }

    .search-result-list {
        width: calc(100% - 13.611vw - 1.111vw);
    }

    .search-result-details {
        font-size: 1.111vw;
        line-height: 1.319vw;
        margin: 1.111vw 0;
    }

    .search-results-container .widget {
        margin-top: 0;
    }

    .search-results-container .widget04 .widget-block {
        justify-content: left;
        margin: 0 -0.556vw;
    }

    .search-results-container .widget04 .widget-item {
        width: calc(25% - 1.112vw);
        margin: 0 .556vw 1.112vw
    }

    .keyword {
        font-size: 1.389vw;
        line-height: 2.083vw;
        margin-bottom: 1.042vw;
        font-weight: 700;
    }

    .search-count {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2.778vw;
    }

    .totalProduct {
        font-size: 1.042vw;
        line-height: 1.389vw;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .833vw 1.736vw .833vw 3.472vw;
        background: url('https://ndtv.purystech.com/assets/front/images/tiltarrow.svg') no-repeat 1.736vw center;
        color: #000;
        border-radius: 2.083vw;
        border: .139vw solid #000;
        margin-right: 1.389vw;
    }
}

@media (max-width: 991px) {

    /* .filter-handler {
        display: flex;
    } */

    .filter-handler .filter-handler-item:first-child ul {
        top: 16px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .filter-handler .filter-handler-item:first-child ul li {
        font-size: 10px;
        line-height: 15px;
        border-bottom: 1px solid #eee;
        min-width: 100px;
        padding: 2px 10px;
    }

    .search-fillters {
        width: 100%;
        height: 100vh;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        overflow-y: auto;
        background-color: #fff;
        z-index: 999;
        padding-top: 40px;
        box-sizing: border-box;
    }

    .search-fillters .ads-section {
        display: none;
    }

    .search-fillter-item {
        padding: 5px 24px 3px 16px;
        margin-bottom: 20px;
    }

    .search-fillter-item h3 {
        font-size: 14px;
        line-height: 16px;
        margin: 0 0 8px;
        padding-right: 15px;
    }

    .search-fillter-item h3::after {
        width: 14px;
        height: 7px;
        background-size: 100%;
        top: 5px;
    }

    .search-fillter-item label {
        margin-bottom: 7px;
        font-size: 12px;
        line-height: 14px;
        padding-left: 19px;
    }

    .search-fillter-item label::before {
        width: 12px;
        height: 12px;
        border-width: 1.5px;
    }

    .search-fillter-item label.checked::after {
        width: 7px;
        height: 7px;
        left: 3px;
        top: 3px;
    }

    .search-fillter-item label span {
        width: 12px;
        height: 12px;
        margin-right: 7px;
        border-radius: 2px;
    }

    .search-result-list {
        width: 100%;
    }

    .search-result-details {
        margin-top: 16px;
        font-size: 12px;
        line-height: 14px;
    }

    .search-result-list .widget {
        margin-top: 10px;
    }

    .keyword {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .search-count {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .totalProduct {
        font-size: 12px;
        line-height: 18px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 7px 10px 7px 30px;
        background: url('https://ndtv.purystech.com/assets/front/images/tiltarrow.svg') no-repeat 15px center;
        background-size: 15px;
        color: #000;
        border-radius: 30px;
        border: 2px solid #000;
        margin-right: 10px;
    }

    .totalProduct:last-child {
        margin-right: 0 !important;
    }
}



.ndtv-author-block {
    box-shadow: 0 2px 8px rgb(0 0 0 / 12%);
    border-radius: 12px;
    margin: 16px 0;
    width: 100%;
    padding: 15px 30px;
    background-color: #fff;
    box-sizing: border-box;
}

.ndtv-author-block-inner {
    display: flex;
    flex-wrap: wrap;
}

.ndtv-author-block-inner-left {
    width: 450px;
    border-radius: 12px 0 0 12px;
}

.ndtv-author-block-inner-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 0 0 12px;
}

.ndtv-author-block-inner-right {
    width: calc(100% - 450px);
    padding: 26px 18px 26px 26px;
    box-sizing: border-box;
}

.ndtv-author-block-inner-right h3 {
    font-size: 33px;
    line-height: 26px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 10px;
    color: #000;
}

.ndtv-author-block-inner-right h5 {
    padding: 0 0 6px;
    margin: 4px 0 3px;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    text-decoration: underline;
    color: #5f6368;
}

.ndtv-author-block-inner-right p {
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    color: #5f6368;
}

.author-sm-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-sm-social {
    display: flex;
    align-items: center;
}

.author-sm-social h6 {
    color: #1a73e8;
    font-size: 13px;
    font-weight: 600;
    line-height: 25px;
    padding: 0;
    text-transform: capitalize;
    margin: 0;
}

.author-sm-social a {
    text-decoration: none;
    margin-left: 8px;
    border-radius: 20px;
    padding: 6px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-sm-social a img {
    width: 15px;
    height: 15px;
    display: block;
}

@media (max-width: 768px) {
    .ndtv-author-block-inner-left {
        width: 100%;
        margin-bottom: 30px;
        border-radius: 12px 12px 0 0;
    }

    .ndtv-author-block-inner-left img {
        border-radius: 12px 12px 0 0;
    }
    .ndtv-author-block-inner-right {
        width: 100%;
    }
}