.desktop-hidden {
    display: none;
}

/* Announcement bar */
.announcement-bar-wrapper .main-wrap {
    position: relative;
}

.announcement-bar.slick-slider {
    margin-bottom: unset;
	max-width: 90%;
	width: 800px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.announcement-bar-close {
    position: absolute;
    top: 10px;
    left: 22px;
    cursor: pointer;
}

.announcement-bar-close .svg-wrapper {
    display: block;
    width: 14px;
    height: 14px;
}

.announcement-bar {
    display: flex;
    justify-content: center;
}

.announcement-bar-wrapper .announcement {
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
}

.announcement-bar-wrapper .announcement.slick-slide {
    display: inline-flex;
}

.announcement-bar .announcement {
    display: none;
}

.announcement-bar .announcement:first-child {
    display: inline-flex;
}

.announcement-bar-wrapper .slick-prev {
    right: 0px !important;
    z-index: 1;
}

.announcement-bar-wrapper .slick-next {
    left: 0px !important;
}

/* Header */
.header-wrapper {
    padding: 24px;
}

.header-wrapper .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-header-logo_wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-header-logo_wrapper img {
    width: 100%;
    height: auto;
}

.site-header-menu_wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.site-header-menu_wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 80px;
}

.site-header-menu_wrapper ul li a {
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
}

.site-header-buttons_wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    gap: 20px;
}

.site-header-buttons_wrapper button.category-drawer-button {
    padding: 10px 26px;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
}

.site-header-buttons_wrapper .whatsapp-button a {
    display: block;
    width: 45px;
    height: 45px;
}

.site-header-buttons_wrapper .whatsapp-button svg {
    width: 100%;
    height: 100%;
}

.search-form-wrappper.only-search-icon form.search-form input {
    width: 239px;
    padding: 0px 14px;
    border: 1px solid #EBEBEB;
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    line-height: 3;
}

.search-form-wrappper.only-search-icon button.search_button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 70px;
    height: 100%;
    justify-content: center;
    font-size: var(--fs-24);
    font-weight: var(--fw-500);
}

.search_button:hover svg path {
    fill: white;
}

.site-header-buttons_wrapper .search-form-wrappper.only-search-icon form.search-form input {
    font-size: var(--fs-14);
}

.site-header-buttons_wrapper .search-form-wrappper.only-search-icon form.search-form .search_button {
    width: 42px;
    height: 100%;
}

.site-header-menu_wrapper .mobile-menu-open {
    padding: 7px;
    background: #FFFADD;
    cursor: pointer;
}

.site-header-menu_wrapper .mobile-menu-open .svg-wrapper {
    width: 40px;
    height: 40px;
}

.site-header-menu_wrapper .mobile-menu-open .svg-wrapper svg {
    width: 33.33px;
}

.site-header-menu ul.menu li.menu-item-has-children ul.sub-menu {
    display: none;
}

/* Mobile Menu */
.mobile-menu-wrapper {
    position: fixed;
    max-width: 440px;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-color: #FFF;
    -webkit-transition: -webkit-transform .25s ease;
    transition: -webkit-transform .25s ease;
    transition: transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
    -webkit-transform: translate3d(-441px, 0, 0);
    transform: translate3d(-441px, 0, 0);
}

.mobile-menu-active .mobile-menu-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mobile-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 997;
    opacity: 0;
    background-color: rgba(0, 0, 0, .7);
    visibility: hidden;
    -webkit-transition: opacity .25s ease, visibility 0s ease;
    transition: opacity .25s ease, visibility 0s ease;
}

.mobile-menu-active .mobile-overlay {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-wrapper .search-form-wrappper.only-search-icon form.search-form input {
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
}

.mobile-menu-wrapper .mobile-menu-header {
    position: fixed;
    width: 100%;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.mobile-menu-wrapper .category-drawer-heading {
    display: none;
}

.mobile-menu-wrapper.category-drawer .category-drawer-heading {
    display: block;
}

.mobile-menu-header .category-drawer-heading .title {
    margin-bottom: unset;
    line-height: unset;
}

.mobile-menu-wrapper .mobile-menu-close {
    cursor: pointer;
}

/*.mobile-menu-wrapper .mobile-menu-close .svg-wrapper {
    width: 26px;
    height: 26px;
}

.mobile-menu-wrapper .mobile-menu-close .svg-wrapper svg {
    width: 24px;
}*/

.mobile-menu-wrapper .mobile-menu-body {
    padding: 70px 35px 0;
    /* margin-top: 85px; */
}
.mobile-menu-wrapper .site-mobile-menu ul {
    list-style: none;
}

.mobile-menu-wrapper .site-mobile-menu ul.menu li {
    position: relative;
}

.mobile-menu-wrapper .site-mobile-menu ul.menu li a {
    border-bottom: 1px solid #DDD;
}

.mobile-menu-wrapper .site-mobile-menu ul.menu li:first-child {
    padding-top: unset;
}

.mobile-menu-wrapper .site-mobile-menu ul.menu li a {
    position: relative;
    display: flex;
    gap: 25px;
    font-size: var(--fs-20);
    font-weight: var(--fw-500);
    padding: 15px 0;
    align-items: center;
}

.mobile-menu-wrapper .site-mobile-menu ul.menu li .menu-image {
    width: 85px;
}

.mobile-menu-wrapper .sub-menu.active .menu-item>a {
    font-size: var(--fs-20);
    font-weight: var(--fw-600);
}

.mobile-menu-wrapper .sub-menu.active .menu-item>.sub-menu a {
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
}

.mobile-menu-wrapper .sub-menu.active .menu-item.active {
    background: #FFFBE3;
    border-bottom: 1px solid transparent;
}

.mobile-menu-wrapper .menu>.menu-item-has-children>.sub-menu li {
    padding: 0 24px;
}

.mobile-menu-wrapper .sub-menu .sub-menu li {
    padding-left: unset !important;
    padding-right: unset !important;
}

.mobile-menu-wrapper .sub-menu.active .menu-item.active>.sub-menu li:first-child a {
    border-top: unset;
}

.mobile-menu-wrapper .menu>.menu-item-has-children>.sub-menu a {
    padding: 14px 0;
}

/* Slide animation for 2nd level - ENHANCED */
.mobile-menu-wrapper .menu>.menu-item-has-children>.sub-menu {
    position: fixed;
    top: 65px;
    left: -100%;
    width: 100%;
    height: 90%;
    background: #fff;
    box-sizing: border-box;
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0.4s step-end;
    z-index: 1001;
    visibility: hidden;
    overflow-y: auto;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
}

.mobile-menu-wrapper .menu>.menu-item-has-children>.sub-menu.active {
    transform: translateX(100%);
    visibility: visible;
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0.4s step-start;
}

.mobile-menu-wrapper .menu>.menu-item-has-children>.sub-menu>li:last-child>a {
    border-bottom: unset;
}

/* Back button transition - NOW MATCHES OPENING */
.mobile-menu-wrapper .menu>.menu-item-has-children>.sub-menu.closing {
    transform: translateX(0%);
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        visibility 0.4s step-end 0.4s;
}

/* Back button styling */
.mobile-menu-wrapper .site-mobile-menu ul.menu li a.back-link {
    gap: 10px;
}

.mobile-menu-wrapper .back-link:before {
    content: url("/wp-content/themes/vsabone-child/assets/images/down-arrow.png");
    font-size: var(--fs-20);
    transform: rotate(270deg);
}

.mobile-menu-wrapper .sub-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding-left: 15px;
}

.mobile-menu-wrapper .sub-menu .sub-menu.active {
    max-height: 1000px;
}

/* First level menu items (show right arrow) */
.mobile-menu-wrapper .menu .menu-item-has-children>a:after {
    content: url("/wp-content/themes/vsabone-child/assets/images/down-arrow.png");
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s;
}

/* All nested levels (show down arrow) */
.mobile-menu-wrapper .menu .menu-item-has-children .menu-item-has-children>a:after {
    content: url("/wp-content/themes/vsabone-child/assets/images/down-arrow.png");
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

/* Rotate arrow when submenu is open (for nested levels) */
.mobile-menu-wrapper .menu .menu-item-has-children .menu-item-has-children.active>a:after {
    transform: translateY(-50%) rotate(360deg);
}

/* Menu footer */
.mobile-menu-wrapper .mobile-menu-footer {
    margin-top: 62px;
    padding: 0 30px;
}

.mobile-menu-wrapper .search-form-wrappper.only-search-icon form.search-form input {
    width: 100%;
    line-height: 2.5;
}

/* Banner */
section.banner-wrapper {
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: unset !important;
    padding-bottom: unset !important;
}

section.banner-wrapper.banner-layout-2 {
    min-height: 180px;
}

section.banner-wrapper .wrap {
    max-width: 660px;
    margin: 0 auto;
    padding: 0px 20px;
}

section.banner-wrapper.banner-layout-2 .wrap {
    max-width: 1660px;
    flex-grow: 1;
    box-sizing: border-box;
}

section.banner-wrapper .banner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.banner-wrapper.banner-layout-2 .banner {
    text-align: unset;
}

section.banner-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 76.79%);
    z-index: 1;
    pointer-events: none;
}

section.banner-wrapper>.wrap {
    position: relative;
    z-index: 2;
}

section.banner-wrapper .banner h2.title {
    font-size: var(--fs-34);
    font-weight: var(--fw-500);
    margin-bottom: unset;
}

section.banner-wrapper.banner-layout-2 .banner h2.title {
    font-weight: var(--fw-600);
}

section.banner-wrapper .banner h4.sub-title {
    font-size: var(--fs-18);
    margin-bottom: unset;
}

form.search-form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

section.banner-wrapper form.search-form input {
    width: 90%;
    padding: 0px 10px;
    line-height: 3;
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    min-width: 340px;
}

section.banner-wrapper form.search-form button.search_button {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 35px;
    width: 100px;
    justify-content: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
}
form.search-form input:focus {
    outline: unset;
}

section.banner-wrapper form.search-form button.search_button span.svg-wrapper {
    width: 24px;
    height: 24px;
}

section.banner-wrapper form.search-form button.search_button span.svg-wrapper svg {
    width: 19.5px;
    height: 19.5px;
}

/* Category Grid */
.category-grid-wrapper {
    text-align: center;
}

.category-grid:first-of-type {
    margin-top: 42px;
}

.category-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.category-grid:last-child {
    margin-bottom: unset;
}

.category-grid.odd {
    grid-template-columns: repeat(3, 1fr);
}

.category-grid.even {
    grid-template-columns: repeat(4, 1fr);
}

.category-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
}

.category-grid.odd .category-item a {
    height: 190px;
}

.category-grid.even .category-item a {
    height: 190px;
}

.category-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 160px;
}

.category-item img {
    object-fit: contain;
}

.category-title-wrapper {
    position: absolute;
    background: rgba(0, 0, 0, 0.36);
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
}

span.category-title {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: var(--fs-20);
    font-weight: var(--fw-700);
}

.category-item:hover .category-title-wrapper {
    background: var(--light-main-color);
    opacity: 0.9;
    transition: 0.3s;
}

.category-item:hover .category-title {
    color: black;
}

/* Home Page Single Post */
section.single-post-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: unset !important;
}

section.single-post-wrapper .title {
    text-align: center;
}

section.single-post-wrapper .single-post {
    display: flex;
    gap: 80px;
    align-items: center;
}

section.single-post-wrapper .single-post.left-side-image {
    flex-direction: row-reverse;
}

section.single-post-wrapper .single-post.right-side-image {
    flex-direction: row;
}

section.single-post-wrapper .left-col {
    flex: 1;
    position: relative;
}

/* section.single-post-wrapper .post-image img { */
    /* width: 100%; */
    /* height: 450px; */
    /* position: relative; */
    /* z-index: 2; */
/* } */
section.single-post-wrapper .post-image img {
    width: auto;
    max-height: 450px;
    position: relative;
    z-index: 2;
}

section.single-post-wrapper .right-col {
    flex: 1;
}

section.single-post-wrapper .post-title h1 {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    margin-bottom: 10px;
}

section.single-post-wrapper .post-content {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 14;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.post-content p {
    font-size: var(--fs-14);
    color: black;
    font-weight: var(--fw-400);
    margin: 0;
}

section.single-post-wrapper .post-link {
    margin-top: 30px;
}

section.single-post-wrapper .color-box {
    width: 70%;
    height: 125%;
    position: absolute;
    top: -13%;
    z-index: 1;
}

section.single-post-wrapper .left-side-image .color-box {
    left: -20%;
}

section.single-post-wrapper .right-side-image .color-box {
    right: -20%;
}

/* Articles Post Slider */
section.articles-posts-wrapper h2.title {
    text-align: center;
}

section.articles-posts-wrapper .articles-posts article.post {
    padding: 15px;
    width: calc(25% - 20px);
    background: #fff;
    box-sizing: border-box;
    border: 1px solid rgba(242, 241, 232, 1);
}

section.articles-posts-wrapper.col-3 .articles-posts article.post {
    width: calc(33.33% - 20px);
}

section.articles-posts-wrapper .articles-posts article.post.slick-slide {
    margin: 8px;
}

.articles-posts-wrapper .articles-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.articles-posts-wrapper .articles-posts /*.slick-slider*/ {
    margin-bottom: unset;
}

section.articles-posts-wrapper .articles-posts article.post .post-image {
    margin-bottom: 10px;
}

section.articles-posts-wrapper .articles-posts article.post .post-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

section.articles-posts-wrapper .articles-posts article.post .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 12px;
}

section.articles-posts-wrapper .articles-posts article.post .post-title h1 {
    font-size: var(--fs-22);
    font-weight: var(--fw-500);
}

section.articles-posts-wrapper .articles-posts article.post .post-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 20px;
}

section.articles-posts-wrapper .articles-posts article.post .post-content,
section.articles-posts-wrapper .articles-posts article.post .post-content p {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
}

section.articles-posts-wrapper .articles-posts article.post .buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.post-attr-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.post-readings-wrapper .svg-wrapper svg {
    width: 17.92px;
    height: 17.92px;
}

.post-readings-wrapper,
.post-views-wrapper {
    display: inline-flex;
    gap: 7px;
}

span.post-readings,
span.post-views {
    font-weight: var(--fw-500);
}

section.articles-posts-wrapper .articles-posts article.post .buttons-wrapper .share {
    display: inline-flex;
    gap: 7px;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
}

section.articles-posts-wrapper .articles-posts article.post .buttons-wrapper .share .svg-wrapper {
    width: 18px;
    height: auto;
}

a.post-link {
    display: inline-flex;
    gap: 8px;
    width: 130px;
    justify-content: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
}

a.post-link span.svg-wrapper {
    width: 24px;
    height: 24px;
}

a.post-link span.svg-wrapper svg {
    width: 19.5px;
    height: 15.5px;
}

a.post-link span.svg-wrapper svg path {
    fill: black;
}

a.post-link:hover span.svg-wrapper svg path {
    fill: #FFF;
    transition: 0.3s;
}

:dir(rtl) section.articles-posts-wrapper .articles-posts article.post .buttons-wrapper {
    flex-direction: row-reverse;
}

.load-more-wrapper {
    padding: 1em 0 0;
}
button.button.load-more-button {
    background: var(--button-hover-color);
    color: #fff;
    width: 100px;
    font-weight: 500;
}
/* Tips */
section.tips-posts-wrapper {
    background: #fffadd;
    padding: 100px 0 120px;
}

section.tips-posts-wrapper h2.title {
    text-align: center;
}

section.tips-posts-wrapper .tips-posts .post {
    display: flex;
    background: white;
    padding: 15px;
    width: calc(50% - 24px);
    box-sizing: border-box;
    border: 1px solid rgba(242, 241, 232, 1);
}

section.tips-posts-wrapper .tips-posts {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

section.tips-posts-wrapper .tips-posts .post .left-col {
    width: 35%;
}

section.tips-posts-wrapper .tips-posts .post .right-col {
    width: 65%;
    padding-right: 37px;
}

section.tips-posts-wrapper .tips-posts .post .left-col .post-image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: contain;
}

section.tips-posts-wrapper .tips-posts .post .right-col .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 15px;
}

section.tips-posts-wrapper .tips-posts .post .right-col .post-content {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 8px;
}

section.tips-posts-wrapper .tips-posts .post .right-col .post-title h1 {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    line-height: 100%;
}

section.tips-posts-wrapper .tips-posts .post .right-col .post-content,
section.tips-posts-wrapper .tips-posts .post .right-col .post-content p {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
}

section.tips-posts-wrapper .tips-posts a.post-link {
    float: left;
}

/* Business Posts Slider */
section.business-posts-wrapper {
    background: #f6f4f2;
    padding: 85px 0;
}

.business-posts-wrapper h2.title,
.business-posts-wrapper h4.sub-title {
    text-align: center;
    margin-bottom: 20px;
}

.business-posts article.post,
.tax-bizcategories article.bussiness.type-bussiness {
    padding: 10px;
    width: calc(16.66% - 20px);
    background: #fff;
    box-sizing: border-box;
    border: 1px solid rgba(242, 241, 232, 1);
    min-height: 350px;
}

.business-posts article.post.slick-slide{
    margin: 8px;
}

.business-posts{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.business-posts-wrapper .business-posts /*.slick-slider*/,
.tax-bizcategories article.bussiness.type-bussiness  {
    margin-bottom: unset;
}
.tax-bizcategories .content.main-wrap{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
}
.tax-bizcategories .content.main-wrap article {
    width: 100%;
    height: 385px;
}
.tax-bizcategories section.articles-posts-wrapper {
    padding-top: 50px;
}
.business-posts article.post .post-image img, 
.tax-bizcategories article.bussiness.type-bussiness .post-image img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.business-posts article.post .post-title,
.tax-bizcategories article.bussiness.type-bussiness .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    margin-bottom: 4px;
    margin-top: 11px;
}

.business-posts article.post .post-title h1,
.tax-bizcategories article.bussiness.type-bussiness .post-title h1 {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    line-height: 100%;
}

.business-posts article.post .post-content,
.tax-bizcategories article.bussiness.type-bussiness .post-content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.business-posts article.post .feedback-wrapper,
.tax-bizcategories article.bussiness.type-bussiness .feedback-wrapper {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
}

.business-posts article.post .feedback-wrapper .ratings svg,
.tax-bizcategories article.bussiness.type-bussiness .feedback-wrapper .ratings svg {
    width: 14.82px;
    height: 14px;
}

.business-posts article.post .ratings-review-wrapper span,
.tax-bizcategories article.bussiness.type-bussiness .ratings-review-wrapper span {
    color: #565656;
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
}

.business-posts article.post .ratings-review-wrapper .ratings,
.tax-bizcategories article.bussiness.type-bussiness .ratings-review-wrapper .ratings {
    margin-top: 2px;
}

.business-posts article.post .post-content,
.tax-bizcategories article.bussiness.type-bussiness .post-content,
.business-posts article.post .post-content p, 
.tax-bizcategories article.bussiness.type-bussiness .post-content p, {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
}
.tax-bizcategories article.bussiness.type-bussiness .about-us,
.tax-bizcategories article.bussiness.type-bussiness .business-list{
	display: none;
}

/* Slider Custom Arrows */
.custom-arrows {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 10px;
}
.tax-bizcategories .custom-arrows {
    padding-bottom: 25px;
}

.custom-arrows .svg-wrapper {
    width: 24px;
    height: 24px;
}

.custom-arrows .svg-wrapper svg {
    width: 20px;
    height: 16px;
}

.custom-arrows .svg-wrapper svg path {
    fill: black;
}

/* Footer */
.footer-widgets {
    background: var(--dark-main-color);
    padding: 50px 20px 50px;
}

.footer-widgets .footer-widget-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widgets .wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
	column-gap: 10%;
}

.footer-widgets h4.widget-title {
    color: #fff;
    font-size: var(--fs-20);
    font-weight: var(--fw-500);
    margin-bottom: 15px;
    /* line-height: 100%; */
}
.footer-widget-area ul.menu li.menu-item {
    margin-bottom: 5px;
}

.footer-widget-area ul.menu li.menu-item a {
    text-decoration: unset;
    color: #fff;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
}

.footer-widget-area ul.menu li.menu-item:last-child {
    margin-bottom: unset;
}

.footer-widget-area ul.menu li.menu-item a:hover {
    color: var(--light-main-color);
}

footer.site-footer {
    text-align: center;
    color: #fff;
    background: var(--dark-main-color);
    padding: 15px 20px 15px;
}


footer.site-footer .wrap p {
    display: none;
}

footer.site-footer .wrap>p:last-child {
    display: none;
}

footer.site-footer span.powered-by-text a {
    color: #fff;
}
.footer-widgets .wrap {
	max-width: 1680px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 40px; /* отступы между колонками */
}
.footer-widget-area {
	flex: 1;
	min-width: 0;
}
.footer-widgets-3 ul {
	columns: 2;          /* двухколоночное меню */
	column-gap: 2rem;    /* отступ между колонками */
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-widgets-3 li {
	break-inside: avoid;
	margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
	.footer-widgets .wrap {
		flex-wrap: wrap;
	}
	.footer-widget-area {
		flex: 0 0 50%;
		margin-bottom: 2rem;
	}
	.footer-widgets-4 ul {
		columns: 1;
	}
}

/* Article Category Page */
.archive.tax-maincategory .category-grid {
    grid-template-columns: repeat(5, 1fr);
    margin-top: unset;
}

.archive.tax-maincategory .category-grid-wrapper {
    margin-top: unset;
    padding-top: unset;
    padding-bottom: unset;
}

.archive.tax-maincategory section.single-post-wrapper {
    padding-top: 40px !important;
}

/* Social Media Popup */
.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons li a {
    border: 1px solid lightgray;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* FAQ's */
.faq-wrapper {
    background: #FFFCE9;
    padding: 87px 108px 58px 76px;
}

.faq-wrapper h2.title,
.dictionary-wrapper h2.title {
    margin-bottom: 17px;
}

.faq-wrapper h4.sub-title,
.dictionary-wrapper h4.sub-title {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: #3A3A3A;
    margin-bottom: 47px;
}

.faq-section h3.faq-title {
    background: transparent;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    border: unset;
    border-bottom: 1px solid #E9E9E9;
    color: #181818;
    padding: 25px 0 25px 40px;
}

.faq-section div.faq-content {
    background: transparent;
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: #3A3A3A;
    border: unset;
    border-bottom: 1px solid transparent;
    padding: 14px 0 19px;
}

.faq-section h3.faq-title span.ui-accordion-header-icon {
    left: 0;
    position: absolute;
}

.faq-section h3.faq-title.ui-accordion-header-active {
    border-bottom: 1px solid transparent;
    padding: 25px 0 0 40px;
}

.faq-section div.faq-content.ui-accordion-content-active {
    border-bottom: 1px solid #E9E9E9;
}

.faq-wrapper .faq-section h3.faq-title span.ui-accordion-header-icon.faq-icon-minus {
    background-image: url('/wp-content/themes/vsabone-child/assets/icons/close.png') !important;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 32px;
}

.faq-wrapper .faq-section h3.faq-title span.ui-accordion-header-icon.faq-icon-plus {
    background-image: url('/wp-content/themes/vsabone-child/assets/icons/plus.png') !important;
    background-size: 20px;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 26px;
}

/* Category Dictionary */
.dictionary-wrapper {
    background: #fff;
    padding: 87px 76px 58px 108px;
}

section.faq-dictionary-wrapper {
    display: flex;
    padding-top: unset !important;
    padding-bottom: unset !important;
}

section.faq-dictionary-wrapper>div {
    flex-grow: 1;
}

article.dictionary-post .post-title h1 {
    font-size: var(--fs-24);
    font-weight: var(--fw-600);
    line-height: 100%;
    margin-bottom: 20px;
}

article.dictionary-post .post-content,
article.dictionary-post .post-content p {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    line-height: 100%;
}

article.dictionary-post .post-content {
    min-height: 461px;
    height: 461px;
    overflow-y: auto;
    scrollbar-width: none;
}

/* Search Page */
.search .category-search-form {
    display: flex;
    gap: 20px;
}

.search .category-search-form .category-wrap {
    width: 20%;
}

.search .category-search-form .search-wrap {
    width: 80%;
}

.search .search-wrap input#search {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 11px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
    padding: 0 16px;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    line-height: 4;
}

.search .search-wrap input#search:focus {
    outline: unset;
}

.search .category-wrap select {
    width: 100%;
    padding: 19px 16px;
    outline: unset;
    border: 1px solid #EBEBEB;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    background: white;
}

.search section.business-posts-wrapper h2.title {
    margin-bottom: 40px;
}

.search section.tips-posts-wrapper {
    background: transparent;
}

.search section.articles-posts-wrapper {
    padding: unset;
}

/* Business data: single post */
section.business-data-wrapper .business-data {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-wrap: wrap;
}

section.business-data-wrapper .business-data .card {
    width: 100%;
}

.logo-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section.business-data-wrapper .business-data .rating-wrapper.card .card-content .ratings svg {
    width: 25px;
    height: 24px;
}

section.business-data-wrapper .ratings-review-wrapper span {
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    color: #565656;
}

section.business-data-wrapper .phone-wrapper .card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFADF;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 33px 0;
}

section.business-data-wrapper .phone-wrapper a {
    padding: 18px 34px;
    font-size: var(--fs-16);
    font-weight: var(--fw-600);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

section.business-data-wrapper .phone-wrapper a span.svg-wrapper {
    width: 24px;
    height: 24px;
}

section.business-data-wrapper .phone-wrapper a span.svg-wrapper svg {
    width: 18px;
}

section.business-data-wrapper .phone-wrapper a span.svg-wrapper svg path {
    fill: #000;
}

section.business-data-wrapper .phone-wrapper a:hover span.svg-wrapper svg path {
    fill: #FFF;
    transition: 0.3s;
}

.top-right-ellips svg circle,
.bottom-left-ellips svg circle {
    fill: var(--light-main-color);
}

.top-left-ellips svg circle,
.bottom-right-ellips svg circle {
    fill: #FFF09E;
}

.top-left-ellips {
    position: absolute;
    top: 0;
    left: 0;
}

.top-right-ellips {
    position: absolute;
    top: 0;
    right: 0;
}

.bottom-left-ellips {
    position: absolute;
    bottom: -6px;
    left: 0;
}

.bottom-right-ellips {
    position: absolute;
    bottom: -6px;
    right: 0;
}

.top-left-ellips span.svg-wrapper,
.bottom-right-ellips span.svg-wrapper {
    width: 48px;
    height: 44px;
}

.top-right-ellips span.svg-wrapper,
.bottom-left-ellips span.svg-wrapper {
    width: 48px;
    height: 44px;
}

/* Main Content Business single page */
section.main-content-wrapper {
    padding-top: unset !important;
}

section.main-content-wrapper .main-wrap {
    display: flex;
    gap: 13px;
    justify-content: space-between;
}

.single-articles section.main-content-wrapper .main-wrap>div,
.single-tips section.main-content-wrapper .main-wrap>div {
    width: calc(75% - 13px);
    background: #fff;
    padding: 30px;
}

.single-articles section.main-content-wrapper .main-wrap>aside, 
.single-tips section.main-content-wrapper .main-wrap>aside {
    width: calc(25% - 13px);
	background: #fff;
    padding: 30px 15px;
}

section.main-content-wrapper .main-wrap>aside .business-posts article.post{
	background: #fffadd;
}

/* Share */
section.share-wrapper {
    padding-bottom: 30px;
}

a.share {
    display: inline-flex;
    gap: 7px;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
}

a.share .svg-wrapper {
    width: 18px;
    height: auto;
}

/* About Business */
section.logo-about-wrap {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

section.logo-about-wrap .logo-wrapper {
    width: 33.33%;
}

div.about-business {
    width: 66.66%;
}

div.about-business h3 {
    font-size: var(--fs-34);
    font-weight: var(--fw-500);
    margin-bottom: 30px;
}

div.about-business .about-business-content p {
    font-size: var(--fs-18);
    font-weight: var(--fw-400);
    margin-bottom: 15px;
}

section.bussiness-info {
    display: flex;
    gap: 25px;
}

section.bussiness-info>div {
    flex: 1;
}

/* Feedbacks */
section.feedbacks-wrapper h2 {
    font-weight: var(--fw-500);
    margin-bottom: 30px;
}

section.feedbacks-wrapper .feedbacks {
    display: flex;
    gap: 20px 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

section.feedbacks-wrapper .feedback-item {
    width: calc(50% - 10px);
    background: white;
    border: 1px solid #F2F1E8;
    box-shadow: 0px 14px 54px rgba(88, 81, 40, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

section.feedbacks-wrapper .feedback-item:last-child {
    margin-bottom: 44px;
}

section.feedbacks-wrapper .name-rating-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

section.feedbacks-wrapper .user-name-wrap {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    line-height: 100%;
}

section.feedbacks-wrapper span.rating-number {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
}

section.feedbacks-wrapper .rating {
    display: flex;
    align-items: center;
    gap: 22px;
}

section.feedbacks-wrapper span.rating-stars {
    display: inline-flex;
    gap: 6px;
}

section.feedbacks-wrapper span.rating-stars svg {
    width: 30px;
    height: 30px;
}

section.feedbacks-wrapper .date-city-wrapper span {
    font-size: var(--fs-14);
    font-weight: var(--fw-600);
}

section.feedbacks-wrapper .date-city-wrapper {
    margin-bottom: 14px;
}

section.feedbacks-wrapper .feedback-content {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
}

section.feedbacks-wrapper .button.add-feedback {
    padding: 21.5px 57.39px;
    font-size: var(--fs-20);
    font-weight: var(--fw-700);
    box-shadow: 0px 12px 30px rgba(150, 129, 14, 0.4);
}

/* Professional desc */
div.professional-desc-wrapper h3 {
    font-size: 32px;
    font-weight: var(--fw-600);
    margin-bottom: 30px;
}

.list-item {
    border: 1px solid #F2F1E8;
    background: #FFF;
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    padding: 13px 16px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 14px 54px rgba(88, 81, 40, 0.1);
    margin-bottom: 8px;
}

.list-item span.svg-wrapper {
    width: 24px;
    height: 24px;
}

.list-item span.svg-wrapper svg {
    width: 20px;
}

.list-item span.svg-wrapper svg path {
    fill: #25314C;
}

/* Photo Gallery Business Page */
section.photos-gallery-wrapper {
    padding: unset !important;
}

section.photos-gallery-wrapper h3 {
    font-size: 32px;
    font-weight: var(--fw-500);
    margin-bottom: 37px;
}

.photos-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

section.photos-gallery-wrapper .photos-gallery .card {
    width: calc(25% - 10px);
    height: 300px;
    flex-grow: unset;
}

section.photos-gallery-wrapper .photos-gallery .card /*.slick-slide*/ {
    margin: 8px;
}

section.photos-gallery-wrapper .photos-gallery .card:last-child {
    margin-bottom: unset;
}

section.photos-gallery-wrapper .photos-gallery .card-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section.photos-gallery-wrapper .photos-gallery .card-content {
    height: 100%;
}

/* Single Business Articles */
.single-bussiness section.articles-posts-wrapper {
    background: #fffadf;
}

.single-bussiness .title-share-wrapper {
    display: flex;
    justify-content: space-between;
}

.single-bussiness .title-share-wrapper .share-wrapper {
    position: relative;
    width: 300px;
}

.single-bussiness .title-share-wrapper .share-wrapper a {
    float: left;
}

.single-bussiness .title-share-wrapper .share-wrapper .tooltip:before {
    left: 20%;
    border-width: 10px;
}

.single-bussiness .title-share-wrapper .share-wrapper .tooltip:after {
    left: 20%;
    border-width: 10px;
}

/* Business Feedback form star */
#iwaf_group_67f7465a9dfad .acf-field[data-key="field_67f748585e563"] .star-rating svg.filled path {
    fill: #F48E00;
}

.modal-content .thankyou_message_wrapper .success-form {
    width: 100%;
    margin: unset;
}

.modal-content .thankyou_message_wrapper {
    background-color: #FFFADF;
}

.business-review-wrapper .contact-form-thank-you {
    height: unset;
}

.business-review-wrapper .thank-you-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Contact Page */
section.contact-page-wrapper {
    padding-top: 40px;
    padding-bottom: 50px;
    background: #fffadf;
}

section.contact-page-wrapper .contact-form-wrapper {
    display: flex;
    gap: 24px;
}

section.contact-page-wrapper .contact-form-wrapper .contact-image-wrapper {
    width: 70%;
}

section.contact-page-wrapper .contact-form-wrapper .contact-form {
    width: 30%;
    padding: 22px 30px 47px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 14px 54px rgba(88, 81, 40, 0.1);
}

section.contact-page-wrapper .contact-form-wrapper .contact-form h3 {
    margin-bottom: 17px;
    font-size: 30px;
    font-weight: var(--fw-600);
}

section.contact-page-wrapper .contact-form-wrapper .contact-image {
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0px 14px 54px rgba(88, 81, 40, 0.1);
    height: 606px;
}

section.contact-page-wrapper .contact-form-wrapper .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

section.contact-page-wrapper .contact-data {
    margin-bottom: 28px;
}

section.contact-page-wrapper .contact-data>div {
    margin-bottom: 13px;
}

section.contact-page-wrapper .contact-email span,
section.contact-page-wrapper .contact-address span {
    font-size: var(--fs-20);
    font-weight: var(--fw-500);
}

section.contact-page-wrapper .contact-form-wrapper .contact-form-thank-you {
    height: unset;
    text-align: center;
    display: block;
}

section.contact-page-wrapper .contact-form-wrapper .thank-you-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* FAQ Page */
.page-id-31055 .breadcrumbs-wrap {
    background: #fffadf;
}

section.faq-wrapper.faq-page {
    padding: unset;
    background: #fffadf;
}

section.faq-wrapper.faq-page .main-wrap {
    max-width: 1180px;
}

section.faq-wrapper.faq-page h2.title {
    margin-bottom: 20px;
}

section.faq-wrapper.faq-page h4.subtitle {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    margin-bottom: 20px;
}

section.faq-wrapper.faq-page .faq-section h3.faq-title {
    border-bottom: unset;
    background: white;
    padding: 18px 20px 18px 40px;
    margin: 18px 0 0 0;
}

section.faq-wrapper.faq-page .faq-section h3.faq-title.ui-accordion-header-active {
    padding: 25px 20px 0 40px !important;
    border-bottom: unset;
}

section.faq-wrapper.faq-page .faq-section div.faq-content.ui-accordion-content-active {
    border-bottom: unset;
}

section.faq-wrapper.faq-page .faq-section div.faq-content {
    padding: 14px 20px 19px;
    background: white;
}

section.faq-wrapper.faq-page .faq-button-wrap {
    text-align: center;
    padding: 50px 0;
}

section.faq-wrapper.faq-page a.faq-button {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    text-decoration: unset;
    padding: 13px 26px;
    line-height: unset;
}

section.faq-wrapper.faq-page a.faq-button .svg-wrapper {
    width: 24px;
    height: 24px;
}

section.faq-wrapper.faq-page a.faq-button .svg-wrapper svg {
    width: 19.5px;
    height: 15.5px;
}

section.faq-wrapper.faq-page a.faq-button .svg-wrapper svg path {
    fill: black;
}

/* About US */
.page-id-31074 .breadcrumbs-wrap {
    background: #fffadf;
}

section.about-wrapper {
    padding-top: unset !important;
    background: #fffadf;
    padding-bottom: 50px;
}

section.about-wrapper .about-section {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

section.about-wrapper .about-section .about-item {
    display: flex;
    /* gap: 80px; */
    justify-content: center;
    align-items: stretch;
    align-content: center;
}

.about-section .about-item .about-image {
    width: 50%;
    max-height: 375px;
}

.about-section .about-item .about-content-wrap {
    width: 40%;
    background: #fff;
    padding: 30px;
}

.about-section .about-item .about-image img {
    max-width: 900px;
    max-height: 375px;
    width: 100%;
    height: 100%;
}

.about-section .about-item h3.about-title {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    line-height: 100%;
    margin-bottom: 10px;
}

.about-section .about-item .about-content {
    font-size: var(--fs-14);
    font-weight: var(--fw-400);
    color: #3A3A3A;
}

section.about-wrapper .about-link {
    margin: 50px 0 0;
    text-align: center;
}

section.about-wrapper .about-link a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-size: var(--fs-18);
    font-weight: var(--fw-500);
    text-decoration: unset;
    padding: 13px 26px;
    line-height: unset;
}

section.about-wrapper .about-link a .svg-wrapper {
    width: 24px;
    height: 24px;
}

section.about-wrapper .about-link a .svg-wrapper svg {
    width: 19.5px;
    height: 15.5px;
}

section.about-wrapper .about-link a .svg-wrapper svg path {
    fill: black;
}

/* Single Article Page */
.post-attr-wrapper .share-wrapper {
    margin-right: 42px;
}

div.title-data-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.title-data-wrap .post-attr-wrapper {
    margin-bottom: unset;
}

div.title-data-wrap h2.title {
    margin-bottom: unset;
    font-weight: var(--fw-500);
}

.main-content-wrapper .post-content-wrap {
    margin-top: 23px;
}

.post-content-wrap p a img {
    max-width: 500px;
    max-height: 350px;
}
.main-content-wrapper .post-content-wrap,
.main-content-wrapper .post-content-wrap p {
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
}

.main-content-wrapper .post-content-wrap p {
    overflow: hidden;
}

div.recommended-professionals-wrapper h3.title {
    font-size: var(--fs-26);
    font-weight: var(--fw-600);
}

aside .business-posts {
    margin-top: 16px;
    gap: 24px;
}

aside .business-posts article.post {
    width: 100%;
    padding: 15px;
}

aside .business-posts article.post .post-title h1 {
    font-size: var(--fs-24);
}

aside .business-posts article.post .post-content,
aside .business-posts article.post .post-content p {
    font-size: var(--fs-16);
}

.single-articles section.articles-posts-wrapper {
    background-color: #fffadd;
}

/* Tips Archive */
.post-type-archive-tips section.tips-posts-wrapper {
    background: transparent;
    padding: unset;
}

.post-type-archive-tips section.tips-posts-wrapper .tips-posts a.post-link {
    float: unset;
}

/* Tooltip */
.tooltip {
    visibility: hidden;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 1;
    bottom: 130%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid #F2F1E8;
    box-shadow: 0px 14px 54px rgba(88, 81, 40, 0.1);
    transition: 0.3s;
}

/* Outer arrow (border color) */
.tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 10px);
    border-width: 10px;
    border-style: solid;
    border-color: #F2F1E8 transparent transparent transparent;
    z-index: 0;
}

/* Inner arrow (background color) */
.tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 90%;
    border-width: 8px;
    border-style: solid;
    border-color: #FFFFFF transparent transparent transparent;
    z-index: 1;
}

.single .post-attr-wrapper {
    position: relative;
}

.single .post-attr-wrapper .tooltip::before {
    left: 20%;
}

.tooltip-opener:hover+.tooltip {
    visibility: visible;
}

.tooltip:hover {
    visibility: visible;
}

.tooltip-text {
    background: #FFFADA;
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
    text-align: left;
    padding: 5px 27px;
}

.share-buttons-wrapper {
    padding: 30px 44px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-buttons-wrapper .share-button .svg-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.share-buttons-wrapper a.share-button.facebook .svg-wrapper {
    background: #e7ebf2;
}

.share-buttons-wrapper a.share-button.facebook .svg-wrapper svg {
    width: 8.59px;
}

.share-buttons-wrapper a.share-button.twitter .svg-wrapper {
    background: #1DA1F2;
}

.share-buttons-wrapper a.share-button.twitter .svg-wrapper svg {
    width: 15.97px;
}

.share-buttons-wrapper a.share-button.linkedin .svg-wrapper {
    background: #e0eef6;
}

.share-buttons-wrapper a.share-button.linkedin .svg-wrapper svg {
    width: 14px;
}

/* Business Mobile Card */
section.business-data-wrapper .mobile-business-data {
    display: none;
}

section.business-data-wrapper .mobile-business-data .card-content {
    background: #FFFADF;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 14px 14px 18px;
    box-sizing: border-box;
}

section.business-data-wrapper .mobile-business-data .logo-wrapper {
    width: 100%;
    border: 10px solid #FFE554;
    z-index: 1;
    position: relative;
    box-sizing: border-box;
}

section.business-data-wrapper .mobile-business-data .horizontal-seprator {
    border-color: #EFE7B8;
}

section.business-data-wrapper .mobile-business-data .rating-experience-wrap {
    display: flex;
    gap: 33px;
    flex-wrap: wrap;
    justify-content: space-between;
}

section.business-data-wrapper .mobile-business-data .rating-experience-wrap>div {
    width: calc(50% - 33px);
}

section.business-data-wrapper .mobile-business-data .phone-wrapper a {
    width: 100%;
    justify-content: center;
    box-shadow: 0px 12px 30px rgba(150, 129, 14, 0.4);
    box-sizing: border-box;
}

section.business-data-wrapper .mobile-business-data .phone-wrapper {
    margin-top: 27px;
    z-index: 1;
    position: relative;
}

section.business-data-wrapper .mobile-business-data .rating-experience-wrap h3.title {
    font-size: var(--fs-18);
    font-weight: var(--fw-600);
}

section.business-data-wrapper .mobile-business-data .ratings svg {
    width: 28.14px;
}

section.business-data-wrapper .mobile-business-data .ratings {
    margin-bottom: 5px;
    margin-top: 7px;
}

section.business-data-wrapper .mobile-business-data .hour-experience-wrapper h3+div {
    font-size: var(--fs-16);
    font-weight: var(--fw-400);
    color: #565656;
}

section.business-data-wrapper .mobile-business-data .ratings-review-wrapper span {
    font-size: var(--fs-16);
}

section.business-data-wrapper .mobile-business-data .ratings {
    display: flex;
}

@media (max-width: 1400px) {
    section.business-posts-wrapper .business-posts article.post {
        width: calc(25% - 20px);
    }
}

@media (max-width: 1024px) {
    .mobile-hidden {
        display: none;
    }

    .desktop-hidden {
        display: block;
    }
	.site-header-menu_wrapper .mobile-menu-open .svg-wrapper {
		width: 25px;
		height: 25px;
	}

    .site-header-menu {
        display: none;
    }

    .header-wrapper {
        padding: 10px 0;
    }

    .site-header-menu_wrapper,
    .site-header-buttons_wrapper {
        width: 100%;
    }

    .category-grid.odd {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid.odd> :nth-child(3) {
        grid-column: 1 / -1;
    }

    .category-grid.odd>.category-item:nth-child(1) a,
    .category-grid.odd>.category-item:nth-child(2) a {
        height: 237px;
    }

    .category-grid.odd>.category-item:nth-child(3) a {
        height: 152px;
    }

    .category-grid.even {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid.even> :nth-child(3),
    .category-grid.even> :nth-child(4) {
        grid-column: 1 / -1;
    }

    .category-grid.even>.category-item:nth-child(1) a,
    .category-grid.even>.category-item:nth-child(2) a {
        height: 160px;
    }

    .category-grid.even>.category-item:nth-child(3) a .category-grid.even>.category-item:nth-child(4) a {
        height: 152px;
    }

    .category-item a {
        height: 105px;
    }

    section.single-post-wrapper {
        padding-bottom: 0;
    }

    section.single-post-wrapper .title {
        margin-bottom: 30px;
    }

    section.single-post-wrapper .left-col,
    section.single-post-wrapper .right-col {
        width: 100%;
    }

    section.single-post-wrapper .single-post {
        flex-direction: column !important;
        gap: 25px;
    }

    section.single-post-wrapper .title {
        text-align: unset;
        font-size: var(--fs-30);
    }

    section.single-post-wrapper .color-box {
        height: 120%;
        top: -10%;
		left: -20%;
		right: auto !important;

    }

    section.single-post-wrapper .post-image img {
        height: 190px;
    }

    section.single-post-wrapper+section.single-post-wrapper {
        padding-bottom: unset;
    }

    section.articles-posts-wrapper .articles-posts article.post {
        width: calc(33.33% - 20px);
    }

    section.tips-posts-wrapper .tips-posts {
        flex-direction: column;
    }

    section.tips-posts-wrapper .tips-posts .post {
        width: 100%;
    }

    section.tips-posts-wrapper .tips-posts .post {
        padding: 10px;
    }

    section.tips-posts-wrapper .tips-posts .post .left-col {
        width: 40%;
    }

    section.tips-posts-wrapper .tips-posts .post .right-col {
        width: 60%;
        padding-right: 13px;
    }
	section.articles-posts-wrapper .articles-posts article.post .post-image img {
		width: 100%;
		height: 150px;
		object-fit: cover;
	}
	section.articles-posts-wrapper .articles-posts article.post .post-title h1 {
		font-size: var(--fs-18);
	}
	a.post-link {
		gap: 5px;
		width: 85px;
		justify-content: center;
		font-size: var(--fs-16);
		padding: 5px 8px;
	}
    .footer-widgets .wrap {
        max-width: 100%;
        column-gap: unset;
    }

    .footer-widgets .footer-widget-area {
        width: calc(50% - 10px);
    }

    .archive.tax-maincategory .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive.tax-maincategory .category-grid> :nth-child(n+5) {
        grid-column: 1 / -1;
    }

    .archive.tax-maincategory section.single-post-wrapper {
        padding-bottom: unset !important;
    }

    section.faq-dictionary-wrapper {
        flex-direction: column-reverse;
    }

    section.contact-page-wrapper .contact-form-wrapper {
        flex-direction: column-reverse;
    }

    section.contact-page-wrapper .contact-form-wrapper .contact-image {
        height: auto;
    }

    section.contact-page-wrapper .contact-form-wrapper .contact-image-wrapper,
    section.contact-page-wrapper .contact-form-wrapper .contact-form {
        width: 100%;
        box-sizing: border-box;
    }


    section.about-wrapper .about-section .about-item.image-first {
        flex-direction: column;
        gap: 6px;
    }

    section.about-wrapper .about-section .about-item.content-first {
        flex-direction: column-reverse;
        gap: 6px;
    }

    section.about-wrapper .about-section .about-item .about-image,
    section.about-wrapper .about-section .about-item .about-content-wrap {
        width: 100%;
        max-height: unset;
    }

    section.main-content-wrapper .main-wrap {
        flex-direction: column;
        gap: 30px;
    }

    section.main-content-wrapper .main-wrap>aside,
    section.main-content-wrapper .main-wrap>div {
        width: 100%;
    }

    aside .business-posts {
        margin-top: 20px;
    }

    div.title-data-wrap {
        flex-direction: column-reverse;
        gap: 21px;
        align-items: start;
    }

    section.banner-wrapper.banner-layout-2 .banner h2.title {
        font-size: var(--fs-24);
    }

    section.banner-wrapper.banner-layout-2 .banner {
        text-align: center;
    }

    .single-articles section.articles-posts-wrapper {
        padding-top: 39px;
        padding-bottom: 74px;
    }

    section.articles-posts-wrapper h2.title {
        margin-bottom: 25px;
    }

    section.tips-posts-wrapper {
        padding: 40px 0 64px;
    }

    section.tips-posts-wrapper h2.title {
        margin-bottom: 20px;
    }

    /* section.tips-posts-wrapper .tips-posts .post .right-col .post-title h1 {
        font-size: var(--fs-24);
    } */

    section.tips-posts-wrapper .tips-posts .post .right-col .post-content {
        -webkit-line-clamp: 4;
    }

    section.tips-posts-wrapper .tips-posts .post .left-col .post-image img {
        height: 162px;
    }

    section.business-data-wrapper .business-data .card {
        width: 100%;
    }

    section.photos-gallery-wrapper .photos-gallery .card {
        width: calc(50% - 10px);
    }

    section.feedbacks-wrapper .feedback-item {
        width: 100%;
    }

    .search .category-search-form .category-wrap,
    .search .category-search-form .search-wrap {
        width: 50%;
    }

    section.business-posts-wrapper .business-posts article.post {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .site-header-logo_wrapper img {
		width: 75%;
	}
	.site-header-buttons_wrapper .whatsapp-button a {
		width: 40px;
		height: 40px;
	}
	.announcement-bar-close {
        left: 22px;
    }
    .announcement-bar-wrapper .announcement {
        font-size: var(--fs-14);
    }

    section.single-post-wrapper .single-post {
        flex-direction: column;
    }

    section.single-post-wrapper .left-col,
    section.single-post-wrapper .right-col {
        width: 100%;
    }

    section.articles-posts-wrapper .articles-posts article.post {
        width: calc(50% - 20px);
    }

    section.articles-posts-wrapper.col-3 .articles-posts article.post {
        width: calc(50% - 20px);
    }

    .faq-wrapper,
    .dictionary-wrapper {
        padding: 58px 20px 58px 20px;
    }

    section.faq-wrapper.faq-page {
        padding-left: unset;
        padding-right: unset;
    }

    section.business-data-wrapper .business-data {
        display: none;
    }

    section.business-data-wrapper .mobile-business-data {
        display: block;
    }

    section.logo-about-wrap {
        flex-direction: column;
    }

    section.logo-about-wrap .logo-wrapper,
    section.logo-about-wrap div.about-business {
        width: 100%;
    }

    section.bussiness-info {
        flex-direction: column;
    }

    .single-bussiness section.main-content-wrapper .main-wrap {
        flex-direction: column-reverse;
    }

    section.logo-about-wrap .logo-wrapper {
        display: none;
    }

    form.category-search-form {
        flex-direction: column-reverse;
    }

    .search .category-search-form .category-wrap,
    .search .category-search-form .search-wrap {
        width: 100%;
    }

    section.business-posts-wrapper .business-posts article.post {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .site-header-menu_wrapper .mobile-menu-open .svg-wrapper {
        width: 30px;
        height: 30px;
    }

    .site-header-buttons_wrapper .whatsapp-button a {
        display: block;
        width: 40px;
        height: 40px;
    }

    .site-header-logo_wrapper img {
        width: 80%;
    }

    section.banner-wrapper .banner h4.title {
        font-size: var(--fw-600);
    }

    section.banner-wrapper .banner h4.sub-title {
        font-size: var(--fs-14);
    }

    section.banner-wrapper form.search-form input {
        font-size: var(--fs-16);
    }

    section.banner-wrapper form.search-form button.search_button {
        left: 0;
        top: 0;
        width: 60px;
        height: 100%;
        transform: unset;
    }

    section.banner-wrapper form.search-form button.search_button .search_button_text {
        display: none;
    }

    section.banner-wrapper.banner-layout-1 {
        height: 380px;
    }

    section.banner-wrapper.banner-layout-2 {
        min-height: 150px;
    }

    span.category-title {
        font-size: var(--fs-24);
    }

    .faq-section h3.faq-title {
        font-size: var(--fs-16);
    }

    section.articles-posts-wrapper .articles-posts article.post {
        width: 100%;
    }

    section.articles-posts-wrapper.col-3 .articles-posts article.post {
        width: 100%;
    }

    .post-type-archive-articles section.main-content-wrapper,
    .post-type-archive-tips section.main-content-wrapper {
        padding-bottom: unset;
    }

    .footer-widgets {
        padding-bottom: 12px;
    }

    .footer-widgets .footer-widget-area {
        width: 100%;
        text-align: center;
    }

    .footer-widgets .wrap {
        gap: 38px;
    }

    footer.site-footer {
        padding-top: 12px;
        padding-bottom: 52px;
    }

    section.faq-wrapper.faq-page h2.title {
        margin-bottom: 16px;
    }

    section.faq-wrapper.faq-page h4.subtitle {
        margin-bottom: 32px;
    }

    .faq-section h3.faq-title {
        font-size: var(--fs-16);
    }

    section.contact-page-wrapper {
        padding-top: 41px;
        padding-bottom: 56px;
    }

    section.about-wrapper {
        padding-top: 66px;
        padding-bottom: 77px;
    }

    section.about-wrapper .about-section .about-item h3.about-title {
        font-size: var(--fs-24);
    }

    section.about-wrapper .about-link {
        margin-top: 60px;
    }

    .post-type-archive section.tips-posts-wrapper .tips-posts .post .left-col,
    .post-type-archive section.tips-posts-wrapper .tips-posts .post .right-col {
        width: 100%;
    }

    .post-type-archive section.tips-posts-wrapper .tips-posts .post .right-col {
        padding-right: unset;
        margin-top: 10px;
    }

    .post-type-archive section.tips-posts-wrapper .tips-posts .post .right-col .post-content {
        margin-bottom: 20px;
    }

    .post-type-archive section.tips-posts-wrapper .tips-posts .post {
        flex-wrap: wrap;
        padding: 15px;
    }

    .search .search-wrap input#search {
        font-size: var(--fs-20);
        line-height: 3;
    }

    .search .category-wrap select {
        font-size: var(--fs-20);
    }

    .single-bussiness .title-share-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .single-bussiness .title-share-wrapper .share-wrapper {
        width: 100%;
    }

    .single-bussiness .title-share-wrapper .share-wrapper a {
        float: unset;
    }

    section.photos-gallery-wrapper .photos-gallery .card {
        width: 100%;
    }

    section.business-posts-wrapper .business-posts article.post {
        width: 100%;
    }
}

@media (max-width: 390px) {
    section.business-data-wrapper .mobile-business-data .rating-experience-wrap {
        flex-direction: column;
        gap: 20px;
    }

    section.business-data-wrapper .mobile-business-data .rating-experience-wrap>div {
        width: 100%;
    }

    section.business-data-wrapper .mobile-business-data .ratings {
        margin-top: unset;
    }
}
@media (max-width: 1024px) {
	.business-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.business-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.business-grid {
		grid-template-columns: 1fr;
	}
}
