.search-form .custom-search-wrapper{
    height: 100%;
    position: relative;
}
.search-form .custom-search-wrapper .blog_post_search_input {
    width: 100%;
    height: 40px;
    border:1px solid #dcdcdd;
    padding: 24px;
    border-radius: 6px;
}
.search-form .custom-search-wrapper .blog_post_search_button {
    position: absolute;
    top: 1px;
    right: 0;
    height: 48px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    display: grid;
    place-items: center;
    justify-items: center;
    background: #fff;
    transition: all 0.3s;
    color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-8b4cc6a);
}
.search-form .custom-search-wrapper .blog_post_search_button svg{
    font-size: 25px;
}
.search-form .custom-search-wrapper .blog_post_search_button:hover{
    background: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
}
.search-form .custom-search-wrapper .blog_post_search_button:hover svg{
    fill: white;
    stroke: white;
}

/* category block style */

.all_post_categories_continer .all_post_categories__wrap {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.all_post_categories_continer .all_post_categories__wrap .categories_items a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.all_post_categories_continer .all_post_categories__wrap .categories_items a {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--e-global-color-text);
    transition: 0.3s;
}
.all_post_categories_continer .all_post_categories__wrap .categories_items a:hover {
    color: var(--e-global-color-primary);
}
.all_post_categories_continer .all_post_categories__wrap .categories_items a:hover span {
    background: var(--e-global-color-primary) ;
    color: var(--e-global-color-text);
}

.all_post_categories_continer .all_post_categories__wrap .categories_items span {
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    border-radius: 50px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
}

