/* Global CSS  */
.breakdance .bde-popup.breakdance-popup-open, .breakdance .bde-popup.breakdance-popup-open .breakdance-popup, .breakdance .bde-popup.breakdance-popup-animating, .breakdance .bde-popup.breakdance-popup-animating .breakdance-popup {
    z-index: 999999 !important;
}

.breakdance h1, .breakdance h2, .breakdance h3, .breakdance h4, .breakdance h5, .breakdance h6, .breakdance strong, .breakdance p {
    text-wrap: balance;
    text-align: left;
}

.breakdance .text-wrap-unset {
    text-wrap: unset;
    text-align: inherit;
}

.is-breakdance-menu-open .breakdance-frontend-mode .faria-breadcrumb.in-view {opacity: 0;display: none;}

.bde-button__button {
    position: relative;
    z-index: 1;
}

/* Slider CSS */
.breakdance .swiper-button-next,
.breakdance .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    top: unset;
    bottom: unset;
    transition: background .2s;
    position: relative;
    left: unset;
    right: unset;
    transform: unset;
    margin: unset
}

.breakdance .swiper-pagination-progressbar {
    left: 0;
    width: calc(100% - 119px);
    background: #fff;
    border-radius: 15px;
    top: unset;
    position: relative;
    height: 7px;
    overflow: hidden
}

.breakdance .swiper-pagination-progressbar-fill {
    background: #37023c !important;
    border-radius: 20px;
    height: 100% !important
}

.breakdance .swiper-controls-wrapper {
    display: flex;
    align-items: center;
    margin-top: 48px;
    position: relative;
    height: 48px;
    width: 100%;
    justify-content: space-between;
    gap: 15px;
    z-index: 1;
}

.breakdance .swiper-controls-wrapper .buttons {
    width: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 100%
}

.breakdance .swiper-button-next::after,
.breakdance .swiper-button-prev::after {
    display: none;
    content: ""
}

/* .breakdance .swiper-button-next::after,.breakdance .swiper-button-prev::after{border-radius:80px;background-position:center;background-repeat:no-repeat;background-size:40px;height:100%;width:100%;content:""} */
.breakdance .swiper-button-next::after {
    background-image: url(/wp-content/plugins/faria-core/assests/images/arrow-right.svg)
}

.breakdance .swiper-button-prev::after {
    background-image: url(/wp-content/plugins/faria-core/assests/images/arrow-left.svg)
}

.breakdance .swiper-button-next:hover svg path,
.breakdance .swiper-button-prev:hover svg path {
    fill: #F7D35F
}

.breakdance .swiper-button-next:hover,
.breakdance .swiper-button-prev:hover {
    background: #37023C
}

.breakdance .swiper-button-next svg,
.breakdance .swiper-button-prev svg {
    width: 100%;
    height: 40px
}

.breakdance .swiper-button-next.swiper-button-disabled,
.breakdance .swiper-button-prev.swiper-button-disabled {
    opacity: .2
}

/* End Slider CSS */

/* accordion css */
.bde-accordion__button::before {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(/wp-content/plugins/faria-core/assests/images/accordion-icon.svg);
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.bde-accordion__button {
    gap: 8px
}

.bde-accordion__panel-content img:first-child {
    display: none;
}

/* accordion css */
/* Global CSS */

.faria-breadcrumb,
.faria-breadcrumb .faria-breadcrumb-link {
    color: #fff !important;
    font-size: 14px;
    text-decoration-color: #fff !important;
}

.single-leadership .faria-breadcrumb,
.single-leadership .faria-breadcrumb .faria-breadcrumb-link,
.single-leadership .faria-breadcrumb .faria-breadcrumb-link:hover {
    color: #37023C !important;
    text-decoration-color: #37023C !important;
}

.faria-breadcrumb .faria-breadcrumb-link:hover {
    color: #fff !important;
    text-decoration: underline;
    text-decoration-color: #fff !important;
}

.faria-breadcrumb .faria-breadcrumb-link {
    display: inline-block;
    text-decoration: underline;
}



/* Slide up (hide header) */
.faria-hide-header {
    animation: slideUp 0.4s ease forwards;
}

/* Slide down (show header) */
header:not(.faria-hide-header) {
    animation: slideDown 0.4s ease forwards;
}

/* Keyframes */
@keyframes slideUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.breakdance-frontend-mode .faria--card-left-animation {
    --transition-duration: 1s;
    opacity: 0;
    transform: translateX(50px);
    transition: transform var(--transition-duration), opacity var(--transition-duration);
    transition-delay: calc(.1s + var(--n)*.2s);
}

.breakdance-frontend-mode .faria--card-left-animation.in-view {
    opacity: 1;
    transform: translateX(0);
}

.breakdance-frontend-mode .faria--card-top-animation {
    --transition-duration: 1s;
    opacity: 0;
    transform: translateY(50px);
    transition: transform var(--transition-duration), opacity var(--transition-duration);
    transition-delay: calc(.1s + var(--n)*.2s);
}

.breakdance-frontend-mode .faria--card-top-animation.in-view {
    opacity: 1;
    transform: translateY(0);
}

.breakdance-frontend-mode .faria--fade-animation {
    --transition-duration: 1s;
    opacity: 0;
    transition: opacity var(--transition-duration);
    transition-delay: calc(.1s + var(--n)*.2s);
}

.breakdance-frontend-mode .faria--fade-animation.in-view {
    opacity: 1;
}


.breakdance-frontend-mode .faria-breadcrumb {
    --transition-duration: 1s;
    opacity: 0;
    transition: opacity var(--transition-duration);
    transition-delay: 0.1s;
    pointer-events: none;
}

.breakdance-frontend-mode .faria-breadcrumb.in-view {
    opacity: 1;
    pointer-events: auto;
}

.breakdance .breakdance-link.bde-external-link--faria::after {
    mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2214%22%20fill%3D%22none%22%3E%0D%0A%20%20%3Cpath%20d%3D%22M5.233.032A.517.517%200%200%200%204.9.5c0%20.121.06.261.149.351.161.16-.07.149%203.095.149h2.816v2.785c0%201.532.006%202.819.013%202.86.007.042.04.122.075.18.158.264.52.317.747.109.18-.166.164.167.165-3.382%200-2.324-.006-3.157-.023-3.215a.56.56%200%200%200-.244-.283L11.61.01%208.47.006c-2.733-.003-3.153%200-3.237.026M.407%206.381a.446.446%200%200%200-.282.168.485.485%200%200%200%20.045.688c.15.132-.069.123%203.052.123H6.06v2.806c0%203.178-.012%202.948.157%203.117a.491.491%200%200%200%20.412.146.558.558%200%200%200%20.36-.237l.061-.099V6.707l-.061-.099a.533.533%200%200%200-.373-.235c-.158-.019-6.112-.011-6.209.008%22%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%2F%3E%0D%0A%3C%2Fsvg%3E);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2214%22%20fill%3D%22none%22%3E%0D%0A%20%20%3Cpath%20d%3D%22M5.233.032A.517.517%200%200%200%204.9.5c0%20.121.06.261.149.351.161.16-.07.149%203.095.149h2.816v2.785c0%201.532.006%202.819.013%202.86.007.042.04.122.075.18.158.264.52.317.747.109.18-.166.164.167.165-3.382%200-2.324-.006-3.157-.023-3.215a.56.56%200%200%200-.244-.283L11.61.01%208.47.006c-2.733-.003-3.153%200-3.237.026M.407%206.381a.446.446%200%200%200-.282.168.485.485%200%200%200%20.045.688c.15.132-.069.123%203.052.123H6.06v2.806c0%203.178-.012%202.948.157%203.117a.491.491%200%200%200%20.412.146.558.558%200%200%200%20.36-.237l.061-.099V6.707l-.061-.099a.533.533%200%200%200-.373-.235c-.158-.019-6.112-.011-6.209.008%22%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%2F%3E%0D%0A%3C%2Fsvg%3E);
}

/* Media Screen */

@media screen and (max-width: 1119px) {
    .is-breakdance-menu-open section {
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .faria-breadcrumb .faria-breadcrumb-link {
        text-decoration: underline;
    }


    /* Slider CSS */
    .breakdance .swiper-button-next,
    .breakdance .swiper-button-prev {
        height: 32px;
        width: 32px
    }

    .breakdance .swiper-button-next::after,
    .breakdance .swiper-button-prev::after {
        background-size: 27px
    }

    .breakdance .swiper-controls-wrapper {
        gap: 10px;
        margin-top: 20px
    }

    .breakdance .swiper-controls-wrapper .buttons {
        width: 68px;
        gap: 4px;
    }

    /* End Slider CSS */

}

.breakdance-frontend-mode .animate-slide-fade,
.breakdance-frontend-mode .section_header h1,
.breakdance-frontend-mode .section_header h2,
.breakdance-frontend-mode .section_header h3,
.breakdance-frontend-mode .section_header h4,
.breakdance-frontend-mode .section_header h5,
.breakdance-frontend-mode .section_header h6,
.breakdance-frontend-mode .section_header .button-atom,
.breakdance-frontend-mode .section_header p,
.breakdance-frontend-mode .section_header button {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.0s;
}

.breakdance-frontend-mode .section_header p {
    transition-delay: 0.1s;
}

.breakdance-frontend-mode .section_header button {
    transition-delay: 0.2s;
}

/* Visible state */
.breakdance-frontend-mode .animate-slide-fade.show,
.breakdance-frontend-mode .section_header h1.show,
.breakdance-frontend-mode .section_header h2.show,
.breakdance-frontend-mode .section_header h3.show,
.breakdance-frontend-mode .section_header h4.show,
.breakdance-frontend-mode .section_header h5.show,
.breakdance-frontend-mode .section_header h6.show,
.breakdance-frontend-mode .section_header p.show,
.breakdance-frontend-mode .section_header .button-atom.show,
.breakdance-frontend-mode .section_header button.show {
    opacity: 1;
    transform: translateY(0);
}


/*  Author Info Card For Insights Post Type  */

.breakdance .faria--author-info-card * {
    margin: 0;
}

.breakdance .faria--author-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.breakdance .faria--author-info-card h5 {
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: capitalize;
}

.breakdance .faria--author-info-card img {
    width: 100%;
    max-width: 334px;
    border-radius: 50%;
    margin-bottom: 16px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.breakdance .faria--author-info-card h6 {
    font-weight: 700;
    margin-bottom: 16px;
}

.no-select {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE 10+ */
  user-select: none;         /* Standard */
}

.no-select .allow-select {
  user-select: text;
}

.t_sitemap ul li a.active {text-decoration: underline;text-underline-offset: 2px;color: #F78B43;}

.t_sitemap ul {
    margin: 0;
    list-style: none;
    padding: 0;
}
.t_sitemap ul li {margin-bottom: 16px;}

.t_sitemap ul li ul {
    margin-top: 16px;
}

.t_sitemap ul li a {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #37023C;
    text-decoration: none;
    padding:  0px;
    display: block;
}


.t_sitemap ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}


@media (max-width:767px){
    .bde-advanced-tabs.faria-tabing-v1 .bde-tabs__tab {
   padding: 14px 18px !important;
}
.bde-advanced-tabs.faria-tabing-v1 .bde-tabs__tab span {
    line-height: 30px;
}
.bde-menu-custom-area.ads_area .bde-heading, .bde-menu-custom-area.ads_area .bde-text{white-space: pre-wrap;}
}

ul.category_global {
    width: 100%;
    padding: 0;
    list-style: none;
    margin: 0;
}

ul.category_global a.breakdance-link {
    width: 100%;
    display: block;
    padding: 16px;
    background: #fff;
    transition: background 0.4s ease-in-out;
    text-decoration: none;
    color: #000;
    font-size: 24px;
    text-transform: capitalize;
}

ul.category_global li {
    margin-bottom: 8px;
}
@media (max-width:1199px){
ul.category_global a.breakdance-link {
    font-size: 20px;
}
}

.breakdance-frontend-mode .faria-breadcrumb {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.faria--sitemap .faria--post-type {margin: 0 0 18px 0;}
.faria--sitemap .faria--post-type-wrapper ul {margin: 0;}
.faria--sitemap .faria--post-type-wrapper {margin-bottom:48px;}
.faria--sitemap ul li {margin-bottom: 8px;}
@media only screen and (max-width: 767px){
    .faria--sitemap .faria--post-type-wrapper {margin-bottom:28px;}
}


/*  Search Result Page  */

#faria-loader {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: #e9ebe8;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
}

#faria-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.faria-loop-list * {margin:0;}
.faria-loop-list .card {
    margin-bottom: 24px;
}
.faria-loop-list .card a {
    text-decoration:none;
    color: #000;
    display: block;
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
}
.faria-loop-list .card h4 {
    color: #37023C;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
}
.faria-loop-list .card p {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
}
.faria-loop-list .card a mark {
    color: #f78b43;
    background: unset;
}

.faria-loop-list .pagination {
    background: #fff;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    border-radius: 50px;
    width: 100%;
    max-width: fit-content;
    margin-top: 60px;
    list-style: none;
}
.faria-loop-list .pagination .page-numbers a {
    text-decoration: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #ddd;
    color: #37023C;
    background-color: #fff;
    transition: all 0.4s ease-in-out;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}
.faria-loop-list .pagination .page-numbers.current a {
    background: #37023C;
    color: #fff;
}

.faria-loop-list .pagination .page-numbers.next a,
.faria-loop-list .pagination .page-numbers.prev a{
    background: #37023C;
}

.faria-loop-list .pagination .page-numbers.next svg,
.faria-loop-list .pagination .page-numbers.prev svg {
    width: 30px;
    height: 30px;
}

.faria-loop-list .pagination .page-numbers.prev svg path,
.faria-loop-list .pagination .page-numbers.next svg path {
    fill: #fff;
}

.faria-loop-list .pagination .page-numbers.prev:hover svg path,
.faria-loop-list .pagination .page-numbers.next:hover svg path {
    fill: #F7D35F;
}

ol.roman-brackets > li:before {
    counter-increment: item;
    content: "(" counter(item,lower-roman) ") ";
}

ol.roman-brackets > li {
    margin-bottom: 8px;
}

ol.roman-brackets {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
}
ol.pl-20{padding-left:20px !important;}
ol.mrl-18px.roman-brackets li {
    margin-bottom: 8px;
}
ol.pl-50 {
    padding-left: 50px !important;
}
.breakdance .termsPostContent a {
    color: #E837AC;
    text-decoration-color: #E837AC;
}

/* Table Formating  */
.termsPostContent table:not(.variations) {
    border: 1px solid #37023c;
    margin: 0 0 15px;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.4em;
}

.termsPostContent table thead,
.termsPostContent table tbody,
.termsPostContent table tfoot, 
.termsPostContent table tr, 
.termsPostContent table td, 
.termsPostContent table th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.termsPostContent table tr:not(:first-child) td {
    border-top: 1px solid #37023C;
}
.termsPostContent table tr td:not(:last-child) {
    border-right: 1px solid #37023C;
}

.termsPostContent table tr td {
    padding: 6px 24px;
}
.termsPostContent table tr:not(:first-child) td p{
    margin: 0;
}
.termsPostContent table tr:not(:first-child) td p:not(:last-child) {
    margin: 0 0 8px 0;
}
.termsPostContent table * {
    margin: 0;
}

.termsPostContent h5 {
    margin: 0 0 18px 0;
}

.no-space {
    margin: 0 !important;
}
 .termsPostContent ul li ul {
    margin-bottom: 0px !important;
}

.faria--sitemap ul {
    list-style: disc;
}

/*html:has(.breakdance-popup-open),
body:has(.breakdance-popup-open) {
  overflow: hidden;
  max-height:100vh;
}*/

@media only screen and (max-width: 1119px){
    .faria-loop-list .card a {
        padding: 18px;
    }
    .faria-loop-list .card h4 {
        font-size: 28px;
        line-height: 32px;
    }

    .faria-loop-list .card p {
        font-size: 16px;
        line-height: 24px;
    }
    .faria-loop-list .pagination {
    margin-top: 48px;
}
}

@media only screen and (max-width: 767px){
    .faria-loop-list .card a {
        padding: 14px;
    }
    .faria-loop-list .card h4 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .faria-loop-list .card p {
        font-size: 16px;
        line-height: 24px;
    }
    .faria-loop-list .card {
    margin-bottom: 14px;
}
.faria-loop-list .pagination {
    margin-top: 30px;
}

.breakdance .faria--author-info-card img {
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
}

.breakdance .faria--author-info-card {
    align-items: center;
    margin-bottom: 12px;
}


.breakdance .faria--author-info-card h6 {
    text-align: center;
}
}
