.input-group input#searchInput {
    width: 100%;
    max-width: 100%;
    border: none;
    min-height: 50px;
    padding: 13px 50px 13px 30px;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: radial-gradient(ellipse at center, #ffffff, #ffff);
    color: #4E4E4E !important;
    font-size: 18px;
    font-family: inherit;
    font-weight: bold;
    line-height: 1 !important;
    border-radius: 10px;
}

.search_main {
    padding: 15px;
    background: #086db314;
    margin-top: 20px;
    border-radius: 6px;
}

.search_main .input-group {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
}

.input-group input[type="submit"] {
    background: url(../images/loupe.png);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 10px;
    border: none;
    cursor: pointer;
}

.subject_btn_list_wrapper h4 {
    font-size: 20px;
    line-height: 1;
    text-transform : capitalize;
    font-weight: 400 !important;
}
.blog_tab_section .category_tab_wrapper h4 {
    font-size: 20px;
    line-height: 1;
    text-transform : capitalize;
    font-weight: 400 !important;
}
.subject_btn_list {
    display: flex;
    list-style-type: none;
    padding: 0;
    flex-wrap: wrap;
    margin-left: 0;
    margin-top: 15px;
}

ul.subject_btn_list li {
    margin-right: 30px;
    font-weight: 700;
    /* color: #568CA3; */
    color: var(--primary-color);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    font-size: 20px;
    padding-bottom: 5px;
}

.category_tab_wrapper ul li:hover,
.category_tab_wrapper ul li.active {
    background: #f7e49e;
}

ul.subject_btn_list li.active
{
    color: #1f9664;
}

.blog_tab_section {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

.blog_tab_section ul {
    display: flex;
    list-style: none;
    padding: 0;
    align-items: center;
    margin:20px 0 37px 0;
    gap: 10px;
}

.category_tab_wrapper ul li {
    padding: 8px 30px;
    background: rgba(30, 120, 190, 0.4);
    border-radius: 20px;
    margin:0;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog_tab_section ul.subject_btn_list li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: 0;
    left: -100%;
    background: #1f9664;
    transition: all 0.3s ease;
}

.blog_tab_section ul.subject_btn_list li:hover::before,
.blog_tab_section ul.subject_btn_list li.active::before {
    left: 0;
}
.category_tab_bar {
    margin-top: 25px;
    /* padding-top: 20px; */
}

.related_post_list_wrapper,
.blog-post .blog-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.related_post_list_wrapper .single_releted_post,
.blog-inner .single-post {
    max-width: calc(25% - 24px);
    flex: 0 0 25%;
    margin: 0 12px 24px;
    background: #FFFFFF;
    border-radius: 15px;
}
.post_search_filter .related_post_list_wrapper .single_releted_post{
    border-radius: 15px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
}
.related_post_list_wrapper .single_releted_post .releted_post_info_container {
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.related_post_list_wrapper .single_releted_post .releted_post_info_container>a,
.blog-inner .single-post>a {
    padding: 0px;
    display: block;
    /* height: 100%; */
    /* border-radius: 15px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15); */
}



.releted_post_image,
.blog-inner .single-post .blog-bg {
    position: relative;
    padding-top: 67%;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.releted_post_image img {
    transition: all 0.4s ease-in-out;
}

.releted_post_image::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.releted_post_info_container:hover .releted_post_image::before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.releted_post_info_container:hover .releted_post_image img {
    transform: scale(1.1);
}

.releted_post_info_container:hover {
    transform: translateY(-8px);
}

@keyframes circle {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.releted_post_image img,
.blog-inner .single-post .blog-bg img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

span.category_tab_label,
.blog-inner .single-post span.category_label {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
    background: #165368;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 15px;
    border-radius: 4px;
    display: inline-block;
}

.releted_post_info_container .dashicons-calendar-alt,
.releted_post_info_container .dashicons-admin-users {
    color: #165368;
    background-color: unset;
    font-size: 12px;
    line-height: 1.29;
}

.meta-information {
    margin: 16px 15px 0 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.meta-information-date {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
    justify-content: space-between;
}

.meta-information-date .dashicons.dashicons-calendar-alt {
    width: 110px;
    text-align: left;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.meta-information-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

span.category_tab_label.blog,
.blog-inner .single-post span.category_label.blog,
span.category_tab_label.blog,
.blog-inner .single-post span.category_label.blog {
    background: #f7cf42;
}

span.category_tab_label.politics {
    background: #1f9664;
}

span.category_tab_label.entertainment,
.blog-inner .single-post span.category_label.entertainment {
    background: #9D9DA3;
}

span.category_tab_label.careers,
.blog-inner .single-post span.category_label.careers {
    background: #086db3;
}

.releted_post_content,
.blog-content-wrapper {
    margin: 15px 15px 25px;
}

.releted_post_content h4 {
    font-size: 20px;
    padding-bottom: 15px;
    line-height: 1.3;
    color: #086db3 !important;
    margin: 0 0 10px 0;
}

.releted_post_content p {
    color: #56575d !important;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.search_main .search_result_wrapper {
    display: flex;
    flex-direction: column;
    max-height: 318px;
    overflow-y: auto;
    background: #fff;
    margin-top: 12px;
    max-width: 397px;
    width: 100%;
    position: absolute;
    z-index: 1000;
    right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 5px 0px rgba(0, 0, 0, .3);
    overflow-x: hidden;

}

.search_main .search_result_wrapper .result_inner {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #8080808a;
    padding: 10px 0;
}
/* .result_inner_wrapper {
    padding: 15px;
} */
.result_inner .search_img {
    flex: 0 0 12%;
}

.result_inner .search_heading {
    flex: 0 0 88%;
    padding-left: 8px;
}
.result_inner-outer {
    padding: 0 15px;
}
.search_result_wrapper .result_loder img{
    width: 100%;
    max-width: 70px;
    max-height: 70px;
    margin: auto;
    position: absolute;
    inset: 0;
}
.result_inner .search_heading h3 {
    font-size: 18px;
    color: #165368;
    padding-bottom: 0;
    word-break: break-word;
    max-width: 100%;
    padding: 0;
    margin-bottom: 5px;
}
.meta-serach span {
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    line-height: 1;
    max-width: fit-content;
    text-transform: capitalize;
}
.search_result_wrapper .result_loder, 
.search_result_wrapper .loader_wrapper img{
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.75);
}
.search_main .search_result_wrapper.active {
    overflow: hidden;
}
.result_inner .search_heading h3 a{
    word-break: break-word;
}
.search_main {
    position: relative;
}

.result_inner .search_img img {
    height: 70px;
    min-width: 70px;
    object-fit: cover;
    display: block;
}

.search_main .search_result_wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.65);
    outline: 1px solid rgba(0, 0, 0, 0.65);
}

.search_main .search_result_wrapper::-webkit-scrollbar {
    width: 5px;
}

/* 10-11-23 */
.search_main input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.search_result_wrapper h3 {
    font-size: 15px;
    color: #165368;
    padding: 10px;
}

.result_loder,
.loader_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000000000;
    display: none;
}
.result_loder,
.loader_wrapper img {
    width: 100%;
    max-width: 70px;
    max-height: 70px;
    margin: auto;
    position: absolute;
    inset: 0;
}

.related_post_list_wrapper,
.blog-post .blog-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}
.related_post_list_wrapper {
    margin-top: 37px;
}
.blog_tab_section .load-more {
    text-align: center;
    margin-top: 40px;
}

.load-more .btn {
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.3);
    display: inline-block;
    color: #fff;
    padding: 10px 28px;
    background: #076cb3;
    border: 1px solid transparent;
    font-weight: 500;
    border-radius: 50px;
    transition: all 300ms ease 0ms;
    width: auto;
    cursor: pointer;
    text-decoration: none !important;
}
.post_search_filter .load-more .btn{
    color: #fff !important;
    text-decoration: none !important;
}
.post_search_filter .load-more .btn:hover {
    background-color: #ffffff !important;
    color: #076cb3 !important;
    text-decoration: none !important;
    border: 1px solid #076cb3 !important;
}

.related_post_list_wrapper .dashicons-admin-users {
    position: relative;
    padding-left: 17px;
    font-size: 14px;
    white-space: nowrap;
    width: auto;
    height: auto;
}

.related_post_list_wrapper .dashicons-admin-users::before {
    position: absolute;
    content: "\f007" !important;
    font-family: "Font Awesome 5 Free";
    left: 0;
    font-size: 14px;
    top: 0px;
}

.related_post_list_wrapper .dashicons-calendar-alt:before {
    content: "\f073" !important;
    font-family: "Font Awesome 5 Free";
    padding-right: 4px;
    font-size: 15px;
    top: -1px;
    display: inline-block;
    padding-top: 0px;
    position: absolute;
    left: 0;
}

.post_search_filter .blog_tab_section .releted_post_info_container a {
    border: none !important;
    text-decoration: none !important;
}
.post_search_filter .blog_tab_section .releted_post_info_container a:hover {
    border: none !important;
    text-decoration: none !important;
}

.input-group .search-ic.close-ic{
    background: url("../images/close.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 0;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 10px;
    border: none;
    cursor: pointer;
}
.subject_btn_list_wrapper {
    margin-top: 25px;
}

@media (max-width: 1260px) {

    .related_post_list_wrapper .single_releted_post,
    .blog-inner .single-post {
        max-width: calc(33.33% - 20px);
        margin: 0 10px 20px;
        flex: 0 0 33.33%;
    }

}

@media(max-width:991px) {
    .blog_tab_section .category_tab_wrapper ul li {
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .blog_tab_section .category_tab_wrapper ul {
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .related_post_list_wrapper .single_releted_post,
    .blog-inner .single-post {
        max-width: calc(50% - 20px);
        margin: 0 10px 20px;
        flex: 0 0 50%;
    }
}

@media(max-width:767px) {
    .meta-information-btn {
        flex-direction: column;
    }
    .related_post_list_wrapper .single_releted_post,
    .blog-inner .single-post {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }

    .subject_btn_list_wrapper {
        margin-top: 20px;
        padding-top: 20px;
    }

    .category_tab_wrapper ul li {
        font-size: 20px;
    }

    .blog_tab_section .load-more {
        margin-top: 20px;
    }

    .filter-section-main {
        padding: 20px 25px 50px !important;
    }

    .search_main .input-group {
        max-width: 100%;
    }

    .search_main .search_result_wrapper {
        max-width: 100%;
        left: 0;
    }
}