/*

 Theme Name:   Astra Child

 Theme URI:    https://wpastra.com/

 Description:  Astra Child Theme

 Author:       Pricefy

 Author URI:   https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme

 Template:     astra

 Version:      2.0.0

 Text Domain:  pricefy.io

*/



/* Add your custom styles below */


html {
    scroll-behavior: smooth;
 }
 
 @media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
 }


body.ast-separate-container{
    background: #fff;
}


.btn{
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all .25s ease;
}
.btn.with-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;   
}
.btn.with-icon svg{
    flex-basis: 1.25rem;
}
.btn-gray{
    padding: 0.625rem 1rem;
    border: 1px solid #D1D5DB;
    color: #374151;
}
.btn-gray:hover{
    color: #374151;
    background: #f4f4f4;
}

.btn-blue{
    background: #375DFB;
    font-weight: 600;
    color: #FFFFFF;
    padding: calc(0.625rem - 2px) calc(1rem - 2px);
    border: 2px solid;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 
        0px 1px 2px 0px #0A0D120D,
        0px -2px 0px 0px #0A0D120D inset,
        0px 0px 0px 1px #0A0D122E inset;
}
.btn-blue:hover{
    color: #FFFFFF;
    background: #0068b1;
}

.tag-icon{
    width: 3.5rem;
    height: 3.5rem;
}
.tag-icon.getting-started{          
    background: url(./images/tag/tag-getting-started.svg) center/cover;
}
.tag-icon.brands{                   
    background: url(./images/tag/tag-brand.svg) center/cover;
}
.tag-icon.general-support{          
    background: url(./images/tag/tag-general-support.svg) center/cover;
}
.tag-icon.products-import{          
    background: url(./images/tag/tag-product-import.svg) center/cover;
}
.tag-icon.features{                 
    background: url(./images/tag/tag-features.svg) center/cover;
}
.tag-icon.competitors{              
    background: url(./images/tag/tag-competitors.svg) center/cover;
}
.tag-icon.errors-resolutions{       
    background: url(./images/tag/tag-errors-resolutions.svg) center/cover;
}


.wp-block-image img {
    box-sizing: border-box;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    margin-bottom: 25px;
}

.c-container, .ast-container{
    max-width: 1280px;
    padding: 0px 30px;
    margin: auto;
}


.content-heading{
    padding: 2rem 0 3rem;
}
.content-heading h1{
    font-size: 2.5rem;
    color: #111928;
    margin-bottom: 0.5rem;
}

.content-heading .subtitle{
    font-size: 1rem;
    line-height: 1.5rem;
    color: #6B7280;
    margin: 0;
}

.home-grid-layout{
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
    
}
@media(min-width: 922px){
    .home-grid-layout{
        display: grid;
        justify-content: center;
        gap: 4rem;
        grid-template-areas: 
            'sidebar posts'
            'pagination pagination';
        grid-template-columns: 280px 1fr;
        
    }
}
.home-grid-layout .categories-wrapper{
    grid-area: sidebar;
}
.home-grid-layout .posts-wrapper{
    grid-area: posts;
    
    
}
.home-grid-layout .posts-pagination{
    grid-area: pagination;
}


.home-grid-layout .categories-wrapper .sidebar-heading{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: #375DFB;
    margin-bottom: 1.25rem;
    min-width: 280px;
}
.home-grid-layout .categories-wrapper ul{
    padding: 0;
    margin: 0;
}
.home-grid-layout .categories-wrapper ul li{
    padding: 0;
    list-style: none;
    margin-bottom: 4px;
}
.home-grid-layout .categories-wrapper ul li a{
    padding: 0.75rem 0.875rem;
    display: block;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    color: #6B7280;
    transition: all .25s ease;
}
.home-grid-layout .categories-wrapper ul li a:hover{
    background: #F9FAFB;
}
.home-grid-layout .categories-wrapper ul li a.active{
    background: #F3F4F6;
    color: #374151;
}
.posts-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26.5rem, 1fr));
    gap: 1.5rem;
    grid-template-rows: min-content;
    width: 100%;
}
.posts-wrapper .post-item{
    position: relative;
    display: grid;
    gap: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
    padding: 1.25rem;
    transition: border-color .25s ease;
    grid-template-areas: '. .';
    grid-template-columns: 3.5rem 1fr;
}
.posts-wrapper .post-item:only-child{
    max-width: 26.5rem;
}
.posts-wrapper .post-item .info-col{
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.posts-wrapper .post-item .info-col a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.posts-wrapper .post-item:hover{
    border-color: #C3DDFD;
}
.posts-wrapper .post-item .post-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4px;
}
.posts-wrapper .post-item .post-title svg{
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
}
.posts-wrapper .post-item .post-title span{
    color: #111928;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.posts-wrapper .post-item .post-excerpt{
    color: #4B5563;
    margin-bottom: 1.5rem;
    flex: 1;
}
.posts-wrapper .post-item .post-excerpt p{
    margin: 0;
}
.posts-wrapper .post-item .post-meta{
    display: flex;
    margin-top: auto;
    justify-content: space-between;
}
.posts-wrapper .post-item .post-meta .cat-name{
    display: block;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 16px;
    border: 1px solid #EEE;
}
.posts-wrapper .post-item .post-meta .post-date{
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6B7280;
}
.posts-wrapper .post-item .post-meta .cat-name.brands{
    color: #C11574;
    border-color: #FCCEEE;
    background: #FDF2FA;
}
.posts-wrapper .post-item .post-meta .cat-name.getting-started{
    color: #039855;
    border-color: #A6F4C5;
    background: #ECFDF3;
}
.posts-wrapper .post-item .post-meta .cat-name.general-support{
    color: #0086C9;
    border-color: #B9E6FE;
    background: #F0F9FF;
}
.posts-wrapper .post-item .post-meta .cat-name.products-import{
    color: #375DFB;
    border-color: #C3DDFD;
    background: #EBF5FF;
}
.posts-wrapper .post-item .post-meta .cat-name.features{
    color: #5925DC;
    border-color: #D9D6FE;
    background: #F4F3FF;
}
.posts-wrapper .post-item .post-meta .cat-name.competitors{
    color: #DC6803;
    border-color: #FEDF89;
    background: #FFFAEB;
}
.posts-wrapper .post-item .post-meta .cat-name.errors-resolutions{
    color: #D92D20;
    border-color: #FECDCA;
    background: #FEF3F2;
}

.posts-wrapper.search-wrapper{
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
}
.posts-wrapper.search-wrapper .post-item:only-child{
    max-width: 100%;
}

.posts-pagination .pagination-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
    padding-top: 1.25rem;
    padding-bottom: 3rem;
    border-top: 1px solid #E5E7EB;
    margin: 0;
}
.posts-pagination .pagination-wrapper li.pagination-next{
    display: block;
    margin-left: auto;
}
.posts-pagination .pagination-wrapper li.pagination-prev{
    display: block;
    margin-right: auto;
}
.posts-pagination .pagination-wrapper li.pagination-next,
.posts-pagination .pagination-wrapper li.pagination-prev{
    padding: 0.5rem 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
}
.posts-pagination .pagination-wrapper li.pagination-next .page-numbers,
.posts-pagination .pagination-wrapper li.pagination-prev .page-numbers{
    height: auto;
    width: auto;
}
.posts-pagination .pagination-wrapper li.pagination-next.disabled,
.posts-pagination .pagination-wrapper li.pagination-prev.disabled{
    opacity: 0;
    pointer-events: none;
}
.posts-pagination .pagination-wrapper .page-numbers{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6B7280;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 600;
    gap: 4px;
    transition: background-color .25s ease;
}
.posts-pagination .pagination-wrapper .page-numbers:hover{
    background-color: #F9FAFB;
}
.posts-pagination .pagination-wrapper .page-numbers.current{
    background: #F3F4F6;
    color: #374151;
}
.posts-pagination .pagination-wrapper .page-numbers svg{
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 1.25rem;
}


.not-found-posts{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 4rem 0;
}
.not-found-posts > svg{
    margin-bottom: 1.5rem;
}
.not-found-posts .not-found-posts__title{
    font-size: 1.875rem;
    line-height: 2.125rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #111928;
}
.not-found-posts p{
    color: #4B5563;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 3rem;
}
.not-found-posts .links{
    display: flex;
    align-items: center;
    gap: 0.75rem
}
.not-found-posts .links a{
    display: flex;
    align-items: center;
}


.search-container{
    transition: all .25s ease;
}
.search-container.active{
    border-color: #3F83F8;
    box-shadow: 0 0 0 1px #3F83F8;
}

.search-container .tt-hint{
    display: none !important;
}
.search-container .tt-suggestion{
    display: flex;
    gap: 0.5rem;
    padding: 0.875rem 0.5rem;
    margin: 2px 6px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color .25s ease;
}
.search-container .tt-suggestion:hover{
    background: #F9FAFB;
}


.search-container .search-button{
    position: absolute !important;
}


.algolia-autocomplete .aa-dropdown-menu{
    margin-top: 14px;
    background: #fff;
    border-radius: 8px;
    border: solid 1px #E5E7EB;
    box-shadow: 
        0px 2px 2px -1px #0A0D120A,
        0px 4px 6px -2px #0A0D1208,
        0px 12px 16px -4px #0A0D1214;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions{
    padding: 4px 0;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion{
    display: flex;
    gap: 0.5rem;
    padding: 0.625rem 0.5rem;
    margin: 2px 6px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color .25s ease;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion:hover{
    background: #F9FAFB;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .suggestion-post-title{
    font-family: "Roboto";
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
}


.algolia-autocomplete .aa-dropdown-menu a.suggestion-link{
    display: flex;
    align-items: center;
    gap: 0 0.5rem;
    padding: 0;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug{
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="Getting Started"]{          
    background: url(./images/tag/tag-small-getting-started.svg) center/cover;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="Brands"]{                   
    background: url(./images/tag/tag-small-brand.svg) center/cover;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="General Support"]{          
    background: url(./images/tag/tag-small-general-support.svg) center/cover;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="Products Import"]{          
    background: url(./images/tag/tag-small-product-import.svg) center/cover;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="Features"]{                 
    background: url(./images/tag/tag-small-features.svg) center/cover;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="Competitors"]{              
    background: url(./images/tag/tag-small-competitors.svg) center/cover;
}
.algolia-autocomplete .aa-dropdown-menu .aa-suggestions .aa-suggestion .category-slug[cat-name="Errors &amp; Resolutions"]{       
    background: url(./images/tag/tag-small-errors-resolutions.svg) center/cover;
}

.algolia-autocomplete{
    max-width: 1280px;
    padding: 0px 30px;
    width: 100% !important;
    left: 50% !important;
    transform: translateX(-50%);
}
.algolia-autocomplete .aa-dropdown-menu .aa-empty .autocomplete-empty{
    font-family: "Roboto";
    font-weight: 500;
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 12px 14px;
}






.c-breadcrumbs{
    margin-bottom: 16px;
    font-weight: 500;
    color: #375DFB;
    a{
        color: #375DFB
    }

    span{
        color: #6B7280;
    }
}

/* .single-article */
.article-wrapper{
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 60px;
}
.article-wrapper .content h1,
.article-wrapper .content h2,
.article-wrapper .content h3,
.article-wrapper .content h4,
.article-wrapper .content h5,
.article-wrapper .content h6{
    color: #111928;
}

.article-wrapper .content > *:first-child{
    margin-top: 0 !important;
}
.article-wrapper .content > *{
    margin-bottom: 1.5rem;
}
.article-wrapper .content h1,
.article-wrapper .content h2{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.article-wrapper .content h3,
.article-wrapper .content h4,
.article-wrapper .content h5,
.article-wrapper .content h6{
    margin-bottom: 0.5rem;
}

.article-wrapper .content .wp-block-spacer{
    margin: 0;
}

h1.article-heading{
    margin-bottom: 2rem;
}


h1.article-heading,
.article-wrapper .content h1{
    font-size: 1.875rem;
}
.article-wrapper .content h2{
    font-size: 1.5rem;
}
.article-wrapper .content h3{
    font-size: 1.125rem;
}
.article-wrapper .content h4{
    font-size: 1.075rem;
}
.article-wrapper .content h5{
    font-size: 1rem;
}
.article-wrapper .content h6{
    font-size: 0.875rem;
}

.article-wrapper .content p{
    font-weight: 400;
    color: #4B5563;
    line-height: 1.5rem;
}

.article-wrapper .content ul,
.article-wrapper .content ol{
    margin-left: 20px;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.5rem;
}
.article-wrapper .content a{
    color: #375DFB;
}

.article-wrapper .content .wp-block-image img,
.wp-block-embed iframe{
    border-radius: 12px;
}

.article-wrapper .content .notice{
    padding: 20px;
    border-radius: 12px;
    border: 1px solid;
    font-weight: 500;
}
.article-wrapper .content .notice.with-icon{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.article-wrapper .content .notice.with-icon .icon{
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}
.article-wrapper .content .notice.with-icon .icon.icon-success{
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%2312B76A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/cover;
}
.article-wrapper .content .notice.with-icon .icon.icon-error{
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8V12M12 16H12.01M2 8.52274V15.4773C2 15.7218 2 15.8441 2.02763 15.9592C2.05213 16.0613 2.09253 16.1588 2.14736 16.2483C2.2092 16.3492 2.29568 16.4357 2.46863 16.6086L7.39137 21.5314C7.56432 21.7043 7.6508 21.7908 7.75172 21.8526C7.84119 21.9075 7.93873 21.9479 8.04077 21.9724C8.15586 22 8.27815 22 8.52274 22H15.4773C15.7218 22 15.8441 22 15.9592 21.9724C16.0613 21.9479 16.1588 21.9075 16.2483 21.8526C16.3492 21.7908 16.4357 21.7043 16.6086 21.5314L21.5314 16.6086C21.7043 16.4357 21.7908 16.3492 21.8526 16.2483C21.9075 16.1588 21.9479 16.0613 21.9724 15.9592C22 15.8441 22 15.7218 22 15.4773V8.52274C22 8.27815 22 8.15586 21.9724 8.04077C21.9479 7.93873 21.9075 7.84119 21.8526 7.75172C21.7908 7.6508 21.7043 7.56432 21.5314 7.39137L16.6086 2.46863C16.4357 2.29568 16.3492 2.2092 16.2483 2.14736C16.1588 2.09253 16.0613 2.05213 15.9592 2.02763C15.8441 2 15.7218 2 15.4773 2H8.52274C8.27815 2 8.15586 2 8.04077 2.02763C7.93873 2.05213 7.84119 2.09253 7.75172 2.14736C7.6508 2.2092 7.56432 2.29568 7.39137 2.46863L2.46863 7.39137C2.29568 7.56432 2.2092 7.6508 2.14736 7.75172C2.09253 7.84119 2.05213 7.93873 2.02763 8.04077C2 8.15586 2 8.27815 2 8.52274Z' stroke='%23F04438' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/cover;
}
.article-wrapper .content .notice-general{
    background: #EBF5FF;
    border-color: #3F83F8;
}
.article-wrapper .content .notice-success{
    background: #F6FEF9;
    border-color: #6CE9A6;
}
.article-wrapper .content .notice-error{
    background: #FFFBFA;
    border-color: #FDA29B;
}

.article-wrapper .content .notice strong,
.article-wrapper .content .notice b{
    font-weight: 600;
}

.article-wrapper .sidebar{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.article-wrapper .sidebar .toc ul{
    margin: 0;
    list-style: none;
}
.article-wrapper .sidebar .toc ul li{
    margin-bottom: 4px;
}
.article-wrapper .sidebar .toc ul li a{
    display: block;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    padding: 10px 12px;
    color: #6B7280;
    border-radius: 6px;
    transition: all .25s ease;
}
.article-wrapper .sidebar .toc ul li a:hover{
    color: #374151;
    background: #F3F4F6;
}
.article-wrapper .sidebar .toc ul li.subheading a{
    padding-left: 36px;
}
.article-wrapper .featured-posts .posts-wrapper .post-item{
    grid-template-areas: '.';
    grid-template-columns: 1fr;
}
.article-wrapper .featured-posts .posts-wrapper .post-item .post-title{
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.article-wrapper .featured-posts .posts-wrapper .post-item .post-title span{
    text-overflow: unset;
    white-space: normal;
    overflow: visible;
}

.article-wrapper .sidebar .categories-list ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
}
.article-wrapper .sidebar .categories-list ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 3px 3px 3px 9px;   
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    line-height: 1.25rem;
    font-size: 0.875rem;
    color: #4B5563;
    transition: all .25s ease;
}

.article-wrapper .sidebar .categories-list ul li a span{
    display: inline-block;
    padding: 0 6px;
    background: #F3F4F6;
    border-radius: 3px;
}
.article-wrapper .sidebar .categories-list ul li a:hover{
    background: #fafafa;
}

.article-wrapper .sidebar .sidebar-title{
    font-weight: 600;
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
}

.helpful-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 0;
}
.helpful-block .helpful-block__title{
    color: #111928;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.helpful-block .helpful-block__actions{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.helpful-block .helpful-block__actions .btn{
    width: 5rem;
    color: #374151;
    text-align: center;
    padding: 0.5rem 0;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    transition: all .25s ease;
}
.helpful-block .helpful-block__actions .btn:hover{
    background: #D1D5DB;
}
.helpful-block .helpful-block__actions .btn.active{
    background: #375DFB;
    font-weight: 600;
    color: #FFFFFF;
    border: 2px solid;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 
        0px 1px 2px 0px #0A0D120D,
        0px -2px 0px 0px #0A0D120D inset,
        0px 0px 0px 1px #0A0D122E inset;
}
.helpful-block .helpful-subblock{
    display: none;
}
.helpful-block .helpful-subblock .c-form-wrapper p{
    margin: 0;
}

.helpful-block .helpful-subblock .c-form-subtitle p{
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.helpful-block .helpful-subblock .c-form-wrapper textarea{
    display: block;
    height: 180px;
    margin-bottom: 1rem;
    color: #4B5563;
    border-color: #D1D5DB;
    padding: 12px 14px;
    border-radius: 8px;
}
.helpful-block .helpful-subblock .c-form-wrapper textarea::placeholder{
    color: #6B7280
}
.helpful-block .helpful-subblock .c-form-wrapper .wpcf7-submit{
    padding: 8px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-weight: 600;
    color: #374151;
    line-height: 1.25rem;
    background: transparent;
    transition: all .25s ease;
}
.helpful-block .helpful-subblock .c-form-wrapper .wpcf7-submit:hover{
    background: #375DFB;
    color: #FFFFFF;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 
        0px 1px 2px 0px #0A0D120D,
        0px -2px 0px 0px #0A0D120D inset,
        0px 0px 0px 1px #0A0D122E inset;
}

.helpful-block .helpful-subblock .c-form-wrapper .c-form-footer{
    margin-top: 24px;
    font-size: 1rem;
    color: #6B7280;
}

.helpful-block .wpcf7-response-output{
    display: none !important;
}
.helpful-block .wpcf7 .c-form-wrapper .wpcf7-not-valid-tip{
    display: block;
    color: #f37272;
    margin-top: -11px;
    margin-bottom: 11px;
}
.wpcf7 .select2-container{
    width: 100% !important;
}
.wpcf7 .select2-container .select2-selection--single{
    height: auto;
    transition: all .25s ease;
}
.wpcf7 .select2-container.select2-container--open .select2-selection--single{
    border-color: #3F83F8;
    box-shadow: 0 0 0 1px #3F83F8;
}
.wpcf7 .select2-container--default .select2-selection--single .select2-selection__rendered{
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 8px 12px;
    color: #111928 !important
}
.wpcf7 .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder{
    color: #6B7280 !important;
    font-weight: 400;
}
.wpcf7 .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border: none;
}
.wpcf7 .select2-container--default .select2-selection--single .select2-selection__arrow{
    border: none;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/cover;
    width: 1rem;
    height: 1rem;
    transition: all .25s ease;
}
.wpcf7 .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow{
    transform: rotate(180deg) translateY(50%);
}
.wpcf7 .selection{
    position: relative;
}
.wpcf7 .select2-container--default .select2-selection--single{
    background: transparent;
    border: 1px solid #D1D5DB;
    border-radius: 8px !important;
    margin-bottom: 1rem;
}
.wpcf7 .select2-container--default .select2-selection--single .select2-selection__arrow{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
}

body .select2-container .select2-dropdown{
    border: 1px solid #00000014;
    border-radius: 8px;
    padding: 4px 6px;
    box-shadow: 
        0px 2px 2px -1px #0A0D120A,
        0px 4px 6px -2px #0A0D1208,
        0px 12px 16px -4px #0A0D1214;
}
body .select2-container--default .select2-results__option{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
}
body .select2-container--default .select2-results__option.select2-results__option--highlighted{
    background: #F9FAFB;
    color: #111928;
}
body .select2-container--default .select2-results__option[aria-selected=true]{
    background: #F9FAFB;
    color: #111928;
}
body .select2-container--default [aria-selected=true]:after{
    content: '';
    display: block;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3327 4L5.99935 11.3333L2.66602 8' stroke='%23375DFB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center/cover;
}
body .select2-container--default .select2-results>.select2-results__options{
    max-height: 100%;
}
.ty-helpful-subblock{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.ty-helpful-subblock svg{
    width: 150px;
    max-width: calc(100% - 60px);
}
.ty-helpful-subblock .ty-title{
    font-weight: 600;
    font-size: 1.125rem;
    color: #111928;
    line-height: 1.875rem;
}
@media(min-width: 922px){
    .article-wrapper{
        flex-direction: row;
        
    }
    .article-wrapper .sidebar{
        padding-left: 4rem;
        border-left: 1px solid #E5E7EB;
        flex: 0 0 27rem;
    }
}

.algolia-autocomplete .autocomplete-header{
    display: none;
}

/* Elegant separator lines */
hr,
hr.wp-block-separator,
.wp-block-separator {
    border: none;
    border-top: 1px solid #E5E7EB;
    height: 0;
    margin: 2rem 0;
    opacity: 0.6;
}

hr.wp-block-separator.has-alpha-channel-opacity,
.wp-block-separator.has-alpha-channel-opacity {
    border-top: 1px solid #E5E7EB;
    opacity: 0.5;
}