:root {
    --f_opensans: "Open Sans", sans-serif;


    --white: #ffffff;
    --black: #262626;
    --black1: #000000;
    --black2: #222222;
    --black3: #353535;
    --primary: #7B1544;
    --grey1: #EFEFEF;
    --grey2: #cecbcb;
    --darkgrey: #686868;
    --green: #989B66;
    --lightgrey: #d4d4d4;
    --lightgrey1: #EFEFEF;
    --lightgrey2: #9D94A9;

    --f_sz10: 10px;
    --f_sz11: 11px;
    --f_sz12: 12px;
    --f_sz13: 13px;
    --f_sz14: 14px;
    --f_sz15: 15px;
    --f_sz16: 16px;
    --f_sz17: 17px;
    --f_sz18: 18px;
    --f_sz19: 19px;
    --f_sz20: 20px;
    --f_sz22: 22px;
    --f_sz24: 24px;
    --f_sz26: 26px;
    --f_sz28: 28px;
    --f_sz30: 30px;
    --f_sz32: 32px;
    --f_sz36: 36px;
    --f_sz40: 40px;
    --f_sz48: 48px;
    --f_sz50: 50px;

}



html,
body {
    /* IE 10-11 didn't like using min-height */
    height: 100%;
    margin: 0;
    padding: 0;
}

body.accent-custom {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
    /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
}

.footer {
    flex-shrink: 0;
    /* Prevent Chrome, Opera, and Safari from letting these items shrink to smaller than their content's default minimum size. */
}



/* Show it is fixed to the top */
body {
    min-height: 75rem;
    padding-top: 60px;
}


/*Font Awesome Fonts*/
@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css') format('truetype');
}

.f_sz10 {
    font-size: var(--f_sz10);
}

.f_sz11 {
    font-size: var(--f_sz11);
}

.f_sz12 {
    font-size: var(--f_sz12) !important;
}

.f_sz13 {
    font-size: var(--f_sz13);
}

.f_sz14 {
    font-size: var(--f_sz14);
}

.f_sz15 {
    font-size: var(--f_sz15);
}

.f_sz16 {
    font-size: var(--f_sz16);
}

.f_sz17 {
    font-size: var(--f_sz17);
}

.f_sz18 {
    font-size: var(--f_sz18);
}

.f_sz19 {
    font-size: var(--f_sz19);
}

.f_sz20 {
    font-size: var(--f_sz20);
}

.f_sz22 {
    font-size: var(--f_sz22);
}

.f_sz24 {
    font-size: var(--f_sz24);
}

.f_sz26 {
    font-size: var(--f_sz26);
}

.f_sz28 {
    font-size: var(--f_sz28);
}

.f_sz30 {
    font-size: var(--f_sz30);
}

.f_sz32 {
    font-size: var(--f_sz32);
}

.f_sz36 {
    font-size: var(--f_sz36);
}

.f_sz40 {
    font-size: var(--f_sz40);
}

.f_sz48 {
    font-size: var(--f_sz48);
}

.f_sz50 {
    font-size: var(--f_sz50);
}




/*
     *  SCROLLBAR STYLE
     */

.scrollbar_style::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    /*background-color: #F5F5F5;*/
    background-color: transparent;
    border-radius: 10px;
}

.scrollbar_style:hover::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    /*background-color: #F5F5F5;*/
    background-color: #F5F5F5;
    border-radius: 10px;

}

.scrollbar_style::-webkit-scrollbar {
    width: 8px;
    /*background-color: #F5F5F5;*/
    background-color: transparent;
    border-radius: 10px;
}

.scrollbar_style:hover::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar_style::-webkit-scrollbar-thumb {
    /*background-color: #c6c6c6;*/
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
}

.scrollbar_style:hover::-webkit-scrollbar-thumb {
    background-color: #c6c6c6;
    border: 2px solid #c6c6c6;
    border-radius: 10px;
}

/*************************************/

.scrollbar_style1::-webkit-scrollbar-track {
    /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
    */
    background-color: transparent;
}

.scrollbar_style1:hover::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.scrollbar_style1::-webkit-scrollbar {
    height: 8px;
    /*background-color: #F5F5F5;*/
    background-color: transparent;
}

.scrollbar_style1::-webkit-scrollbar {
    height: 8px;
    background-color: #F5F5F5;
}

.scrollbar_style1::-webkit-scrollbar-thumb {
    background-color: transparent;
    border: 2px solid transparent;
    ;
}

.scrollbar_style1:hover::-webkit-scrollbar-thumb {
    background-color: #c6c6c6;
    border: 2px solid #c6c6c6;
}

/*
     *  SCROLLBAR STYLE
     */


.f_white {
    color: var(--white);
}

.f_primary {
    color: var(--primary) !important;
}

.f_black {
    color: var(--black);
}

.f_darkgrey {
    color: var(--darkgrey);
}

.f_green {
    color: var(--green);
}

.f_lightgrey2 {
    color: var(--lightgrey2);
}

.crsr_pntr {
    cursor: pointer;
}

.txt_underline {
    text-decoration: underline;
}



.brdr_top0 {
    border-top: 0;
}

.brdr_btm0 {
    border-bottom: 0;
}

.border_radus_sm {
    border-radius: 0.375rem !important;
    -moz-border-radius: 0.375rem !important;
    -webkit-border-radius: 0.375rem !important;
}

.accent-custom {
    font-size: var(--f_sz14);
    color: var(--black) !important;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


.accent-custom .f_opensansregular {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.accent-custom .f_opensansmedium {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.accent-custom .f_opensanssemibold {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.accent-custom .f_opensansbold {
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.accent-custom .f_opensansextrabold {
    font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-style: normal;
}


.accent-custom .three-line-limit {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.accent-custom input::-webkit-input-placeholder,
.accent-custom textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--darkgrey) !important;
    opacity: 1;
    font-style: italic;
}

.accent-custom input::-moz-placeholder,
.accent-custom textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--darkgrey) !important;
    font-style: italic;
}

.accent-custom input:-ms-input-placeholder,
.accent-custom textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--darkgrey) !important;
    font-style: italic;
}

.accent-custom input:-moz-placeholder,
.accent-custom textarea:-moz-placeholder {
    /* Firefox 18- */
    color: var(--darkgrey) !important;
    font-style: italic;
}

/*Font Awesome Fonts*/
@font-face {
    font-family: 'FontAwesome';
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css') format('truetype');
}

.accent-custom .bg_themered {
    background-color: var(--primary);
}

.accent-custom .bg_grey1 {
    background-color: var(--grey1);
}

.accent-custom .w-215 {
    width: 215px;
}

.accent-custom .right0 {
    right: 0 !important;
}

.accent-custom h1,
.accent-custom h2,
.accent-custom h3,
.accent-custom h4,
.accent-custom h5,
.accent-custom h6 {
    font-family: var(--f_opensans);
    color: var(--black);
}

.accent-custom p {
    font-family: var(--f_opensans);
}

.accent-custom input[type=text],
.accent-custom input[type=email],
.accent-custom input[type=tel],
.accent-custom input[type=number],
.accent-custom input[type=password],
.accent-custom input[type=url],
.accent-custom textarea,
.accent-custom .form-select {
    height: 46px;
    font-size: var(--f_sz14);
    padding-left: 15px;
    padding-right: 15px;
}

.accent-custom textarea {
    resize: none;
}

.accent-custom .textarea_hgt100 {
    height: 100px;
}

.accent-custom .textarea_hgt150 {
    height: 150px;
}

.accent-custom .tp-btn-primary {
    background-color: var(--primary) !important;
    color: var(--white);
}

.accent-custom .tp-btn-primary:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.accent-custom .tp-btn-green {
    background-color: var(--green) !important;
    color: var(--white);
}

.accent-custom .tp-btn-green:hover {
    background-color: var(--green) !important;
    color: var(--white) !important;
}


.accent-custom .tp_categorybtn_pdng {
    padding: 15px 35px;
}

.accent-custom .tp_lrgebtn_pdng {
    padding: 5px 35px;
}

.accent-custom .header-sticky-2 .main-menu>nav>ul>li>a:hover,
.accent-custom .header-sticky-2 .main-menu>nav>ul>li>a.active {
    color: var(--white) !important;
    text-decoration: underline;
}

.accent-custom .logo img {
    max-width: 100%;
    max-height: 75px;
}


.accent-custom .tp-pagination ul li a:hover,
.accent-custom .tp-pagination ul li a.current,
.accent-custom .tp-pagination ul li span:hover,
.accent-custom .tp-pagination ul li span.current,
.accent-custom .tp-pagination ul li button:hover,
.accent-custom .tp-pagination ul li button.current {
    background: var(--themered);
    border-color: var(--themered);
    color: var(--white);
}


.accent-custom .tp-section-title {
    color: var(--black);
}

.accent-custom .tp_home_brands .col-xl-3 {
    width: 254px;
    height: 274px;
}

.accent-custom .tp-product-list-add-to-cart-btn {
    height: 46px;
    border-radius: .375rem;
    -moz-border-radius: .375rem;
    -webkit-border-radius: .375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accent-custom .tp-product-list-add-to-cart-btn:hover,
.accent-custom .tp-product-list-add-to-cart-btn:focus {
    background-color: var(--primary);
    color: var(--tp-common-white);
}

.accent-custom .tp-product-details-review-btn {
    background-color: var(--themered);
    color: var(--tp-common-white);
}

.accent-custom .tp-product-details-review-btn:hover {
    background-color: var(--lightthemered);
    color: var(--tp-common-white);
}


.accent-custom .tp-footer-area {
    /*border-top: 1px solid var(--tp-border-primary);*/
    background-color: var(--primary);
}

.accent-custom .tp-footer-top {
    background-color: var(--black);
}

.accent-custom .tp-footer-bottom {
    background-color: var(--black2);
}

.accent-custom .tp-footer-logo img {
    max-height: 115px;
}

.accent-custom .tp-footer-style-2 .tp-footer-desc,
.accent-custom .tp-footer-style-2 .tp-footer-widget-title,
.accent-custom .tp-footer-style-2 .tp-footer-widget ul li a,
.accent-custom .tp-footer-style-2 .tp-footer-talk span,
.accent-custom .tp-footer-style-2 .tp-footer-contact-content p,
.accent-custom .tp-footer-style-2 .tp-footer-copyright p {
    font-family: var(--f_opensans);
}


.accent-custom .footer_titlehr {
    border-bottom: 1px solid var(--green);
}

.accent-custom .tp-footer-style-2 .tp-footer-talk h4 {
    font-weight: 600;
}

.accent-custom .tp-footer-style-2.tp-footer-style-primary .tp-footer-talk h4 a:hover {
    color: var(--primary);
}

.accent-custom .tp-footer-style-2.tp-footer-style-6 .tp-footer-social i {
    top: 2px;
    position: relative;
}

.accent-custom .tp-footer-style-2.tp-footer-style-6 .tp-footer-social a:hover {
    background-color: var(--themered);
    color: var(--white);
}

.accent-custom .tp-footer-style-2.tp-footer-style-primary .tp-footer-widget ul li a:hover {
    color: var(--primary);
}

.accent-custom .tp-footer-style-2.tp-footer-style-primary .tp-footer-contact-content p a {
    color: var(--white);
}

.accent-custom .tp-footer-style-2.tp-footer-style-primary .tp-footer-contact-content p a:hover {
    color: var(--white);
}

.accent-custom .tp-footer-style-2.tp-footer-style-6 .tp-footer-social a {
    background-color: var(--white);
    margin-right: 5px;
}

.accent-custom .tp-footer-style-2.tp-footer-style-primary .tp-footer-bottom-wrapper {
    padding-bottom: 20px;
}

.accent-custom .tp-footer-style-2 .tp-footer-widget ul li a {
    color: var(--white);
}

.accent-custom .tp-footer-style-2 .tp-footer-widget ul li a.active {
    color: var(--white);
    text-decoration: underline;
}

.accent-custom .tp-footer-style-2 .tp-footer-widget ul li a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

.accent-custom .tp-footer-widget-title,
.accent-custom .tp-footer-talk span {
    color: var(--white);
}

.accent-custom .tp-footer-contact-icon span {
    color: var(--themered);
}

.accent-custom .tp-footer-copyright p {
    color: var(--white);
}

.accent-custom .tp-footer-style-2.tp-footer-style-primary .tp-footer-copyright p a {
    color: var(--white);
    text-decoration: underline;
}

.accent-custom .tp-footer-widget-content ul li:not(:last-child) {
    border-bottom: 1px solid var(--black3);
}

.accent-custom .tp-footer-widget-content ul li a {
    padding-left: 0;
}

.accent-custom .tp-footer-style-2 .tp-footer-widget ul li a::after {
    background-color: transparent;
    width: auto;
    height: auto;
    padding-left: 0;
}

.accent-custom .tp-footer-style-2 .tp-footer-widget ul li a {
    font-size: var(--f_sz14);
}

/* chevron right */
.accent-custom footer ul.footer_links li a {
    position: relative;
    padding-right: 18px !important;
}

.accent-custom footer ul.footer_links li a::after {
    font-family: 'FontAwesome';
    content: "\f105";
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--f_sz14);
    line-height: 1;

}


.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 56.25%;
    /* 16:9 responsive ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-wrapper audio,
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper video,
.video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-wrapper.audio {
    position: relative;
    padding-bottom: 20%;
    /* 16:9 */
    padding-top: 0;
    height: 0;
    border: none !important;
}

.accent-custom .social_networks i {
    font-size: var(--f_sz26);
    color: var(--white);
}

.accent-custom .navbar-nav .nav-link {
    color: var(--white);
}

.accent-custom .header_bottom_wrapper {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    border-bottom: 1px solid var(--primary);
}

.accent-custom .header_rgt {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.accent-custom .headerlogo {
    width: 100%;
    display: inline-flex;
}

.accent-custom .headerlogo img {
    max-height: 110px;
}

.accent-custom .login_btn {
    border: 2px solid var(--primary);
    padding: 6px 35px;
    color: var(--primary);
    font-weight: 600;
}

.accent-custom .tp-searchbanner-area {
    background-color: var(--grey1);
}

.accent-custom .banner_logo {
    text-align: center;
}

.accent-custom .banner_logo img {
    max-width: 100%;
    max-height: 130px;
}

.accent-custom .search_title {
    font-size: var(--f_sz40);
    color: var(--black);
}

.accent-custom .search_menulist_wrapper {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.accent-custom .search_menuitems {
    width: 95px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 4px;
}

.accent-custom .search_menuicon {
    width: 95px;
    height: 95px;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.accent-custom .search_menuicon img {
    max-width: 100%;
}

.accent-custom .tp-companiesposts-area {
    background-color: var(--white);
}

/*.accent-custom .company_list_wrapper { width: 100%; display: flex; flex-flow:row wrap; justify-content: center;  }*/
.accent-custom .company_item {
    width: 150px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accent-custom .company_icon {
    width: 150px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid var(--lightgrey);
}

.accent-custom .company_icon img {
    max-width: 90%;
    max-height: 100px;
}

.accent-custom .company_name {
    font-size: var(--f_sz16);
    font-weight: 600;
    text-align: center;
    padding-top: 5px;
}

.accent-custom .carouselad_wrapper_sm {
    max-width: 300px;
    margin: 0 auto;
}

.accent-custom .carouselad_wrapper img,
.accent-custom .carouselad_wrapper_sm img {
    max-width: 100%;
}

.accent-custom .company_list_wrapper {
    padding: 10px 0;
}

/******Search result page - company slick slider***********/
.accent-custom .my-slider {
    padding: 0 10px;
}

.accent-custom .slick-initialized .slick-slide {
    height: 220px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.accent-custom .slick-next,
.accent-custom .slick-prev {
    z-index: 5;
}

.accent-custom .slick-next {
    right: 15px;
}

.accent-custom .slick-prev {
    left: 15px;
}

.accent-custom .slick-next:before,
.accent-custom .slick-prev:before {
    color: #000;
    font-size: 26px;
}

.accent-custom .slick-dots {
    display: none !important;
}

.accent-custom .slick-slider {
    margin-bottom: 0;
}

/******Search result page - company slick slider***********/

.accent-custom .posts_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.accent-custom .feedcompany_logo {
    min-width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lightgrey);
}

.accent-custom .feedcompany_logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: cover;
}

.accent-custom .feedposttype_wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--green);
    color: var(--white);
    padding: 2px 5px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    font-size: var(--f_sz13);
    position: absolute;
    top: -32px;
    right: 0px;
}

.accent-custom .feedpost_content {
    display: flex;
    flex-direction: column;
}

.accent-custom .feedpost_content_img img {
    max-width: 100%;
}

.accent-custom .feed_tags .badge {
    background-color: var(--primary);
    color: var(--white);
}

.accent-custom .comment_btn i {
    transform: rotate(45deg);
}

.accent-custom .tp-header-login-icon span,
.accent-custom .tp_header_login_icon_company span {
    border: 0;
}

.accent-custom .tp_header_login_icon_company img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid var(--lightgrey);
    object-fit: cover;
}

.accent-custom .tp-header-login-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid var(--lightgrey);
    object-fit: cover;
}

.accent-custom .tp-header-login-icon .login_nameinitial {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid var(--lightgrey);
    font-size: var(--f_sz20);
    background-color: var(--primary);
    color: var(--white);
}




.accent-custom .searchresults_wrapper {
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.accent-custom .searchresults_wrapper .nav-tabs .nav-link {
    font-size: var(--f_sz16);
    color: var(--black);
    padding: 10px 20px;
    border: 1px solid var(--lightgrey);
}

.accent-custom .searchresults_wrapper .nav-tabs .nav-item.show .nav-link,
.accent-custom .searchresults_wrapper .nav-tabs .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}

/* .accent-custom .srch_companies_wrapper { background-color: var(--lightgrey1); padding: 15px; max-height: 550px; overflow-y: auto; } */
/* .accent-custom .srch_companies_wrapper { background-color: var(--lightgrey1); padding: 15px; } */

.accent-custom .card-custom {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background-color: #fff;
}

.accent-custom .card-custom:not(:last-child) {
    margin-bottom: 15px;
}

.accent-custom .srch_company_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    padding: 15px;

}

.accent-custom .srch_company_logo img {
    max-width: 100%;
    max-height: 90px;
}

.accent-custom .srch_company_description {
    border-left: 1px solid var(--green);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* min-height: 266px; */
}

.accent-custom .srch_company_webdtls {
    display: flex;
    flex-flow: row wrap;
}

.accent-custom .tp-homeads-area {
    background-color: var(--white);
}

.accent-custom .tp-suppliernews-area {
    background-color: var(--lightgrey1);
}

.accent-custom .section_title_wrapper {
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accent-custom .section_title {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 70px;
    text-transform: uppercase;
    font-size: var(--f_sz22);
    font-weight: 600;
}

.accent-custom .suppliernews_content_wrapper {
    display: flex;
    flex-direction: column;
}

.accent-custom .suppliernews_content_title {
    border-bottom: 2px solid var(--primary);
    display: flex;
    width: 100%;
}

.accent-custom .suppliernews_content_title span {
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    text-transform: uppercase;
    font-size: var(--f_sz16);
    font-weight: 600;
}

.accent-custom .suppliernews_featured_img img {
    width: 100%;
    object-fit: cover;
}

.accent-custom .suppliernews_featured_list {
    display: flex;
    flex-direction: column;
}

.accent-custom .suppliernews_featured_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px;
}

.accent-custom .suppliernews_featured_subimg img {
    width: 100px;
    object-fit: cover;
}

.accent-custom .suppliernews_featured_subtitle {
    font-size: var(--f_sz13);
    line-height: 18px;
    font-weight: 600;
}

.accent-custom .tp-newsletter-area {
    background-color: var(--primary);
    color: var(--white);
}

.accent-custom .newsletter_title {
    font-size: var(--f_sz22);
    font-weight: 700;
    text-align: center;
    color: var(--white);
}

.accent-custom .searchresults_adswrapper_sticky {
    position: sticky;
    top: 40px;
    /* distance from top when sticking */
}

.accent-custom .companyprofile_adswrapper_sticky {
    position: sticky;
    top: 80px;
    /* distance from top when sticking */
}

.accent-custom .company_profile_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    max-height: 200px;
    flex-shrink: 0;
    padding: 15px;

}

.accent-custom .company_profile_logo img {
    max-width: 100%;
    max-height: 190px;
}

/* .accent-custom .srch_company_description {
    border-left: 1px solid var(--green);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accent-custom .srch_company_webdtls {
    display: flex;
    flex-flow: row wrap;
} */

.accent-custom .company_follow {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    font-size: var(--f_sz14);
    position: absolute;
    top: -18px;
    right: 20px;
}

.accent-custom .companypost_edit {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    /* padding: 6px 10px; */
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    font-size: var(--f_sz14);
    position: absolute;
    /* top: -35px;
    right: 10px; */
}

.accent-custom .company_followers {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--green);
    color: var(--white);
    padding: 4px 15px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    font-size: var(--f_sz14);
    position: absolute;
    top: -18px;
    right: 160px;
}

.accent-custom .facebookfeeds_wrapper {
    background-color: var(--lightgrey1);
    display: flex;
    justify-content: center;
    padding: 25px 0;
    max-height: 550px;
    overflow-y: auto;
}

.accent-custom .company_dtls_wrapper .nav-tabs .nav-link {
    font-size: var(--f_sz16);
    color: var(--black);
    padding: 10px 20px;
    border: 1px solid var(--lightgrey);
}

.accent-custom .company_dtls_wrapper .nav-tabs .nav-item.show .nav-link,
.accent-custom .company_dtls_wrapper .nav-tabs .nav-link.active {
    background-color:  #7b1544;
    color: var(--white);
}

.accent-custom .company_dtls_wrapper .nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
    background-color: var(--grey2);
}

.accent-custom .allcontent_description_wrapper {
    position: relative;
}

.accent-custom .allcontent_description_wrapper img {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.accent-custom .allcontent_description_wrapper ul,
.accent-custom .allcontent_description_wrapper ol {
    margin-left: 25px;
}

.accent-custom .allcontent_description_wrapper a {
    color: var(--primary);
    text-decoration: underline;
}

.accent-custom .cpy_aboutwrapper,
.accent-custom .cpy_contactwrapper,
.accent-custom .cpy_videowrapper {
    position: relative;
}

.accent-custom .cpy_contactwrapper .nav-tabs .nav-link {
    font-size: var(--f_sz16);
    color: var(--black);
    padding: 10px 20px;
    border: 0px solid var(--lightgrey);
}

.accent-custom .cpy_contactwrapper .nav-tabs .nav-item.show .nav-link,
.accent-custom .cpy_contactwrapper .nav-tabs .nav-link.active {
    background-color: transparent;
    color: var(--green);
    font-weight: 600;
    border-bottom: 3px solid var(--green);
}

.accent-custom .cpy_productwrapper {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.accent-custom .profile__main-thumb {
    position: relative;
}

.accent-custom .profile__main-thumb img {
    width: 220px;
    height: 220px;
    border: 1px solid var(--lightgrey);
    object-fit: cover;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}

.accent-custom .profile__main-thumb-edit input {
    display: none;
}

.accent-custom .profile__main-thumb-edit label {
    position: absolute;
    bottom: 8px;
    right: -3px;
    color: var(--tp-common-white);
    width: 40px;
    height: 40px;
    line-height: 24px;
    border: 2px solid var(--white);
    background-color: var(--primary);
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.accent-custom .cpyprofile_address {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid var(--lightgrey);
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.accent-custom .create_post_div {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.accent-custom .cpyprof_keyword {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.accent-custom .cpyprof_keyword .cpyprof_keywordcatgry {
    padding: 5px 10px;
    background-color: var(--green);
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.accent-custom .header_login_dropdown .dropdown-toggle::after {
    display: none;
}

.accent-custom .dropdown-item {
    font-size: var(--f_sz14);
}

.accent-custom .dropdown-item.active,
.accent-custom .dropdown-item:active,
.accent-custom .dropdown-item:focus,
.accent-custom .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white);
}

/******************HEADER LOGIN NESTED DROPDOWN*********************************/

/* Remove absolute positioning for submenu */
.accent-custom .dropdown-submenu>.dropdown-menu {
    position: static;
    /* part of normal flow */
    display: none;
    /* hide by default */
    margin-top: 0;
    /* optional spacing */
    padding-left: 0px;
    /* optional indentation */
    background-color: var(--grey1);
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.accent-custom .dropdown-submenu>.dropdown-menu .dropdown-item {
    padding-left: 25px;
    font-size: 14px;
}

.accent-custom .dropdown-submenu>.dropdown-menu .dropdown-item:hover {
    background-color: var(--green);
    color: var(--white);
}

/* Show submenu when parent has show class (click-only, no hover) */
.accent-custom .dropdown-submenu.show>.dropdown-menu {
    display: block !important;
    background-color: #f8f9fa;
    border: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    min-width: 100%;
    border-radius: 0;
}

/* Ensure submenu items are properly styled */
.accent-custom .dropdown-submenu.show>.dropdown-menu .dropdown-item {
    display: block !important;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    border: none;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

/* Fix submenu item hover */
.accent-custom .dropdown-submenu.show>.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* Special styling for "Create New Page" - give it the green background */
.accent-custom .dropdown-submenu.show>.dropdown-menu .dropdown-item[href*="supplier/page"] {
    background-color: #8bc34a !important;
    color: white !important;
    font-weight: 500;
}

.accent-custom .dropdown-submenu.show>.dropdown-menu .dropdown-item[href*="supplier/page"]:hover {
    background-color: #689f38 !important;
}

/* Style the submenu toggle */
.accent-custom .dropdown-submenu>.dropdown-item.dropdown-toggle {
    position: relative;
    cursor: pointer;
    /* background-color: var(--primary) !important; */
    color: var(--bs-dropdown-link-color) !important;
}

.accent-custom .dropdown-submenu>.dropdown-item.dropdown-toggle:hover {
    position: relative;
    cursor: pointer;
    background-color: var(--primary) !important;
    color: white !important;
}

.accent-custom .dropdown-submenu>.dropdown-item.dropdown-toggle::after {
    content: "▼";
    float: right;
    margin-top: 2px;
    font-size: 10px;
    transition: transform 0.2s ease;
}

.accent-custom .dropdown-submenu.show>.dropdown-item.dropdown-toggle::after {
    transform: rotate(180deg);
}

/******************HEADER LOGIN NESTED DROPDOWN*********************************/


@media screen and (max-width: 1679px) {
}



@media screen and (max-width: 767px) {

    .accent-custom .social_networks_wrapper {
        margin-right: auto;
        margin-left: 0 !important;
    }

    .accent-custom .search_title {
        font-size: var(--f_sz32);
    }

    .accent-custom .srch_company_description {
        border-left: 0px;
        border-top: 1px solid var(--green);
    }

    .accent-custom .company_dtls_wrapper .nav-tabs .nav-link {
        font-size: var(--f_sz14);
        padding: 6px 12px;
    }


}

@media screen and (max-width: 991px) {
    .accent-custom .searchresults_wrapper {
        padding-bottom: 0;
    }

    .accent-custom .searchresults_adswrapper_sticky,
    .accent-custom .companyprofile_adswrapper_sticky {
        position: static;
    }
}

/* Ensure proper grid layout for search results */
/* .tp-companiesposts-area .row {
    display: flex;
    flex-wrap: wrap;
} */

/* .tp-companiesposts-area .col-xl-9,
.tp-companiesposts-area .col-xl-3 {
    display: flex;
    flex-direction: column;
} */

@media (min-width: 992px) and (max-width: 1199px) {
}

/* Fixed height for featured image container */
/* Fixed height container */
.suppliernews_featured_img {
    width: 100%;
    height: 220px;
    /* fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* HARD OVERRIDE to stop stretching */
.suppliernews_featured_img img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* List item layout */
.suppliernews_featured_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* FIXED thumbnail box (this is the key) */
.suppliernews_featured_subimg {
    width: 90px;
    height: 90px;
    min-width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fff;
    border: 1px solid #e5e5e5; */
    overflow: hidden;
}

/* Image behavior (NO stretch, NO crop) */
.suppliernews_featured_subimg img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =====================================
   SEARCH RESULTS – FINAL IMAGE TUNING
   ===================================== */

.searchresults_wrapper .feedpost_content_img {
    max-width: 360px;
    /* 🔽 reduces image height naturally */
    margin: 15px auto;
    /* centers image horizontally */
}

.searchresults_wrapper .feedpost_content_img img {
    width: 100% !important;
    height: auto !important;
    object-fit: initial;
    /* no crop, no contain */
    display: block;
}

/* =====================================
   SUCCESS NOTIFICATION STYLES
   ===================================== */

.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.success-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.success-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px;
}

.success-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: white;
}

.success-message {
    font-size: 14px;
    margin: 0;
    color: white;
    opacity: 0.9;
    line-height: 1.4;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    margin-left: 12px;
    flex-shrink: 0;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Auto-hide animation */
.success-notification.hide {
    opacity: 0;
    transform: translateX(100%);
}

/* Mobile responsive */
@media screen and (max-width: 480px) {
    .success-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Additional notification types */
.success-notification.error {
    background-color: #f44336;
}

.success-notification.warning {
    background-color: #ff9800;
}

.success-notification.info {
    background-color: #2196F3;
}

/* Ensure the notification appears above everything */
.success-notification {
    /* z-index: 99999 !important; */
}

/* Animation improvements */
.success-notification {
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
}

.success-notification.show {
    animation-name: slideInRight;
}

.success-notification.hide {
    animation-name: slideOutRight;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}


/* ==================== LOGIN FORM STYLING ==================== */

.login-modal-content {
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.login-modal-header {
    background-color: #fff;
    border-bottom: none;
    padding: 0;
}

.login-modal-header .modal-title {
    display: none;
}

.login-modal-header .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #999;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.login-modal-body {
    background-color: #fff;
    padding: 0;
}

.login-wrapper {
    background-color: #fff;
    padding: 20px 25px !important
}

.login-header {
    background-color: #fff;
    padding: 20px 0px 20px;
    border-bottom: 1px solid #ddd;
}

.login-title {
    color: #8B1538 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.login-content {
    display: flex;
    background-color: #fff;
}

.login-form-header {
    background-color: #7c1544;
    color: #fff;
    padding: 20px 30px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-label {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.login-form-body {
    background-color: #1c2229;
    color: #fff;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.login-form {
    margin-bottom: 30px;
    margin-top: 30px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-control {
    background-color: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 15px;
    font-size: 14px;
    border-radius: 0;
}

.login-form .form-control::placeholder {
    color: #888;
}

.login-form .form-control:focus {
    background-color: transparent;
    border-color: #888;
    color: #fff;
    box-shadow: none;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.login-form .btn-submit {
    background-color: #939357;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    border-radius: 0;
}

.login-form .btn-submit:hover {
    background-color: #79793e;
}

.login-form .btn-clear {
    background-color: #555;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    border-radius: 0;
}

.login-form .btn-clear:hover {
    background-color: #666;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-form .sqr-chkbox {
    margin-right: 0;
}

.login-form .chkboxtxt {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.forgot-password {
    text-align: right;
    /* margin-bottom: 30px; */
}

.forgot-password a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    color: #ccc;
}

.login-info {
    text-align: center;
    /* padding-top: 30px;
    border-top: 1px solid #444; */
}

.info-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-highlight {
    color: #939357;
    font-size: 14px;
    margin-bottom: 15px;
}

.info-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-register {
    background-color: #7c1544;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    display: inline-block;
}

.btn-register:hover {
    background-color: #6a1139;
    color: #fff;
    text-decoration: none;
}

.login-form .alert {
    background-color: #fff9f9;
    border: 1px solid #ebccd1;
    color: #ff0000;
    border-radius: 0;
    padding: 12px;
    margin-bottom: 15px;
}

.login-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background-color: #666666;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
}

.login-tab {
    position: absolute;
    top: -40px;
    left: -40px;
    background: #8b1538;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 600;
    /* border-radius: 4px 4px 0 0; */
    z-index: 2;

}

.login-tab-section {
    position: relative;
}

/* ==================== LOGIN FORM STYLING END ==================== */

/* =====================================
   SUPPLIER BOARD FEEDS – IMAGE STYLING
   ===================================== */

.posts_wrapper,
.products_wrapper,
.videos_wrapper {
    display: block;
    width: 100%;
}

.posts_wrapper .card,
.products_wrapper .card,
.videos_wrapper .card {
    margin-bottom: 5px;
    margin-top: 35px;
}

.posts_wrapper .feedpost_content_img,
.products_wrapper .feedpost_content_img,
.videos_wrapper .feedpost_content_img {
    max-width: 360px;
    margin: 15px auto;
    text-align: center;
}

.posts_wrapper .feedpost_content_img img,
.products_wrapper .feedpost_content_img img,
.videos_wrapper .feedpost_content_img img {
    width: 100% !important;
    height: auto !important;
    object-fit: initial;
    display: block;
}

.posts_wrapper .product-image,
.products_wrapper .product-image,
.videos_wrapper .product-image {
    max-width: 360px;
    margin: 15px auto;
}

.posts_wrapper .product-image img,
.products_wrapper .product-image img,
.videos_wrapper .product-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    display: block;
}

.posts_wrapper .video-wrapper,
.products_wrapper .video-wrapper,
.videos_wrapper .video-wrapper {
    max-width: 100%;
    margin: 15px auto;
}

.posts_wrapper .video-wrapper iframe,
.products_wrapper .video-wrapper iframe,
.videos_wrapper .video-wrapper iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.table-wrapper {
    overflow-x: auto;
}

/*  <----------invoice table --------->*/

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e8f0;
}

.invoice-table thead {
    background-color: #7b1544;
}

.invoice-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

.invoice-table td {
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    color: #2d3748;
}

.invoice-table tbody tr {
    background-color: #f5f5f5;
}


/* ============================================
   TAB NAVIGATION STYLE 1 - UNDERLINE (Reports)
   ============================================ */
.tab-nav-underline {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e1e8ed;
    margin-bottom: 30px;
}

.tab-nav-underline .tab-btn {
    padding: 14px 28px;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-nav-underline {
    color: #989b66;
    background-color: #ffffff;
}

.tab-nav-underline .tab-btn.active {
    color: #989b66;
    border-bottom-color: #989b66;
    font-weight: 600;
}


/* ============================================
   MODAL Z-INDEX MANAGEMENT - Fix multiple modal stacking
   ============================================ */

/* Ensure modals stack properly without forcing high z-index values */
.modal {
    z-index: auto;
}

.modal.show {
    z-index: 1050;
}

.modal-backdrop {
    z-index: auto;
}

.modal-backdrop.show {
    z-index: 1048 !important;
}

/* Prevent backdrop from staying visible when modal is hidden */

.modal:not(.show)~.modal-backdrop {
    display: none !important;
}





/* Image Carousel for Feed Posts */
/* .allcontent_description_wrapper {
    position: relative;
    clear: both;
}

.allcontent_description_wrapper img {
    display: none !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 10px 0 !important;
    float: none !important;
    position: static !important;
    clear: both !important;
}

.allcontent_description_wrapper img.active {
    display: block !important;
}

.image-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    clear: both;
}

.image-carousel-controls button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.image-carousel-controls button:hover {
    background: #5a0f31;
}

.image-carousel-controls button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.image-carousel-counter {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
} */

/* Feed post content image styling */
/* .feedpost_content_img {
    display: block !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    clear: both !important;
    position: relative !important;
}

.feedpost_content_img img {
    max-width: 400px !important;
    height: auto !important;
    display: none !important;
    margin: 0 auto 10px auto !important;
    border-radius: 8px !important;
    float: none !important;
    clear: both !important;
}

.feedpost_content_img img.active {
    display: block !important;
} */

/* Image carousel controls */
/* .image-carousel-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    margin: 15px 0 !important;
    padding: 10px !important;
    background: #f5f5f5 !important;
    border-radius: 4px !important;
    clear: both !important;
}

.image-carousel-nav button {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: background 0.3s ease !important;
}

.image-carousel-nav button:hover:not(:disabled) {
    background: #5a0f31 !important;
}

.image-carousel-nav button:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.image-carousel-counter {
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 500 !important;
    min-width: 60px !important;
    text-align: center !important;
} */


/***************Post full view*********************************/

.accent-custom .article-card {
    position: relative;
    overflow: hidden;
}

.accent-custom .article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.accent-custom .article-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
}

.accent-custom .article-title {
    font-size: var(--f_sz16);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.accent-custom .article-meta {
    font-size: var(--f_sz12);
    opacity: 0.9;
}

.accent-custom .postcomment_avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--grey2);
}

.accent-custom .postcomment_hgt {
    max-height: 450px;
    overflow-y: auto;
}

.accent-custom .postfull_company_description {
    border-top: 1px solid var(--green);
    border-left: 0;
    text-align: center;
    width: 100%;
}

.accent-custom .companypost_trendinglist_hgt {
    max-height: 400px;
    overflow-y: auto;
}

.accent-custom .companypost_trendingnewslist .suppliernews_featured_item {
    border-bottom: 1px solid var(--grey1);
    padding-bottom: 15px;
}

.accent-custom .companypost_eventscalendar_hgt {
    max-height: 500px;
    overflow-y: auto;
}

.accent-custom .event-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 10px;
}

.accent-custom .event-date {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    width: 55px;
}

.accent-custom .event-date .month {
    font-size: var(--f_sz12);
    font-weight: 400;
}

.accent-custom .event-date .day {
    font-size: var(--f_sz24);
    line-height: 1;
}

.accent-custom .event-time {
    font-size: var(--f_sz12);
    font-weight: 400;
    color: var(--black);
    font-style: italic;
    line-height: 20px;
    margin-bottom: 2px;
}

.accent-custom .event-title {
    font-size: var(--f_sz14);
    color: var(--black);
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    cursor: pointer;
}

.accent-custom .event-title a {
    color: var(--black);
}

.accent-custom .event-title a:hover {
    text-decoration: underline;
    color: var(--black);
}

.accent-custom .event-location {
    font-size: var(--f_sz12);
    font-weight: 400;
    color: var(--black);
    line-height: 20px;
    margin-bottom: 5px;
}

.accent-custom .event-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary);
    opacity: 1;
}

.post_comments{
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}


/***************Post full view*********************************/

/* Froala base */
.fr-view{
    font-size:14px;
}

/* Keep table layout intact */
.fr-view table{
    width:100%;
    border-collapse:collapse;
}

/* Category cells */
.fr-view table td{
    text-align:center;
    vertical-align:top;
    padding:15px 5px;
}

/* Icons */
.fr-view table td img{
    width:55px !important;
    display:block;
    margin:0 auto 6px;
}

/* Links */
.fr-view table td a{
    display:block;
    color:#7a003c;
    font-weight:600;
    text-decoration:none;
}


@media(max-width:768px){
    .fr-view > a{
        width:45%;
    }
}


/*Froala Editor End*/