/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/
@font-face {
    font-family: 'Acherus Feral';
    src:url('./../fonts/AcherusFeral-Light.woff2') format('woff2'),
        url('./../fonts/AcherusFeral-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acherus Feral';
    src:url('./../fonts/AcherusFeral-Bold.woff2') format('woff2'),
        url('./../fonts/AcherusFeral-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body .brand-title h2.elementor-heading-title{
    font-family: 'Acherus Feral' !important;
    font-weight: 300 !important;
}
body.logged-in .login-hide{
  display: none;
}
/* Login  */
.wix-user-menu a.wix-logout-link{
 color: #2e5343;
  font-family: var(--e-global-typography-d4ea532-font-family), Sans-serif;
  font-size: var(--e-global-typography-d4ea532-font-size);
  font-weight: var(--e-global-typography-d4ea532-font-weight);
  text-transform: var(--e-global-typography-d4ea532-text-transform);
  line-height: var(--e-global-typography-d4ea532-line-height);
}
.wix-user-name{
  color: #2e5343;
  font-family: var(--e-global-typography-d4ea532-font-family), Sans-serif;
  font-size: var(--e-global-typography-d4ea532-font-size);
  font-weight: var(--e-global-typography-d4ea532-font-weight);
  text-transform: var(--e-global-typography-d4ea532-text-transform);
  line-height: var(--e-global-typography-d4ea532-line-height);
  padding-right: 10px;
  border-right: 1px solid #2e5343;
  margin-right: 10px;
}
.wix-user-menu a.wix-logout-link:hover,
.wix-user-name:hover{
  color: #8e7a66;
}
.wix-user-name i{
  color: #8e7a66;
  font-size: 20px;
}
/* Login */
/* Genral Style start Here */
.due-color .elementor-heading-title span{
	color: #2e5343;
  /*font-size: clamp(36px,4vw,70px);
  line-height: 0.8;*/
  font-family: 'Acherus Feral' !important;
  /*font-weight: bold;*/

}

/* Genral Style End Here */
.home-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px; /* space between cards */
  padding: 30px 20px;
  margin-left: -10px;
  margin-right: -10px;
}

.home-slider::-webkit-scrollbar {
  /*display: none; */
  /* Hide scrollbar for cleaner look */
}

.card-pro {
  flex: 0 0 calc(33.333% - 20px); /* 3 per screen */
  scroll-snap-align: start;
  min-width: calc(33.333% - 20px);
  box-sizing: border-box;
}

/* Get In Touch Form Start Here */
.get-form{

}
.get-form div.wpforms-container-full .wpforms-form button[type=submit]{
  padding: 20px;
  width: 100%;
  height: auto;
  background-color: #94785D !important;
  border: 1px solid #94785D;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px !important;
}
.get-form div.wpforms-container-full .wpforms-form button[type=submit]:hover{
  border-color: #94785D;
}
/* Get In Touch Form End Here */



/* Course Listing Page Start Here */
.single-sfwd-courses .bb-vw-container.bb-learndash-banner{
   display: none; 
}
.learndash-shortcode-wrap:has(.ld-course-status){
    display:none;
}
.single-sfwd-courses .bb-learndash-content-wrap {
    padding-top: 0;
}
.single-sfwd-courses .container{
  max-width: 1300px;
}
/* Course Listing Page Start Here */


.sticky-header .site-content, body.buddypress.sticky-header .site-content, .bb-buddypanel.sticky-header .site-content, .single-sfwd-quiz.bb-buddypanel.sticky-header .site-content, .single-sfwd-lessons.bb-buddypanel.sticky-header .site-content, .single-sfwd-topic.bb-buddypanel.sticky-header .site-content{
  padding-top: 0 !important;
}

/* Max height management for Elementor video widget */
.video-main.elementor-widget-video {
    max-height: 590px;  /* Set your max height here */
    overflow: hidden;   /* Hide overflow content */
    position: relative; /* For iframe/video positioning */
}

/* Make the inner video responsive and fit container */
.video-main .e-hosted-video video {
    width: 100% !important;
    height: auto !important;
    max-height: 590px;
    display: block;
    object-fit: cover; /* Crop video if needed */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .video-main.elementor-widget-video {
        max-height: 350px;
    }
    .video-main .e-hosted-video video {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .elementor-element-7e8e81e.video-main.elementor-widget-video {
        max-height: 200px;
    }
    .elementor-element-7e8e81e .e-hosted-video video {
        max-height: 200px;
    }
}

/* I AGREE MODAL */
          /* Modal overlay */
            #agree-modal {
                display: none; /* hidden by default */
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 9999;
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 20px;
                box-sizing: border-box;
            }

            /* Modal content */
            #agree-modal > div {
                background: #fff;
                padding: 30px;
                max-width: 500px;
                width: 100%;
                border-radius: 8px;
                text-align: center;
                box-sizing: border-box;
            }

            /* Modal text and link */
            #agree-modal p {
                margin: 15px 0;
                font-size: 16px;
                line-height: 1.5;
            }

            #agree-modal a {
                color: #0073e6;
                text-decoration: underline;
            }

            /* Button */
            #agree-modal button {
                margin-top: 20px;
                padding: 12px 25px;
                font-size: 16px;
                background-color: #0073e6;
                color: #fff;
                border: none;
                border-radius: 5px;
                cursor: pointer;
                transition: 0.3s;
            }

            #agree-modal button:hover {
                background-color: #005bb5;
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                #agree-modal > div {
                    padding: 20px;
                }

                #agree-modal p {
                    font-size: 15px;
                }

                #agree-modal button {
                    padding: 10px 20px;
                    font-size: 15px;
                }
            }

            @media (max-width: 480px) {
                #agree-modal > div {
                    margin: 50px auto;
                    padding: 15px;
                }

                #agree-modal p {
                    font-size: 14px;
                }

                #agree-modal button {
                    padding: 8px 16px;
                    font-size: 14px;
                }
            }
/* I AGREE MODAL */

/* Post Archive Page Start Here */
.post-type-archive .container { 
  max-width: 1300px;
  padding: 0 10px;
}
.movement-archive{
  padding: 80px 0;
}
.archive-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 24px; 
  flex-wrap: wrap;
}

.archive-title { 
  font-size: clamp(24px, 4vw, 47px);
  font-weight: 600; 
  margin: 0; 
}

.archive-filter { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

/*.filter-dropdown { 
  padding: 8px; 
  font-size: 1rem; 
  border-radius: 5px; 
  border: 1px solid #c4b5aa; 
}

.filter-btn { 
  background: #9c8470; 
  color: white; 
  border: none; 
  padding: 8px 16px; 
  border-radius: 6px; 
  font-weight: 600; 
  cursor: pointer; 
}*/
/* Container */
.filter-container {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

/* Toggle button */
.filter-toggle {
  background: #a77a54;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Dropdown menu */
.filter-menu {
  display: none;
  flex-direction: column;
  background-color: #6b4c35;
  border-radius: 6px;
  padding: 10px;
  margin-top: 5px;
  width: 200px;
  color: white;
  position: absolute;
  z-index: 10;
}

/* Menu items */
.filter-item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}

.filter-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.filter-item:hover {
  background: #8a6244;
}

/* Submenu */
.filter-item.has-sub {
  flex-direction: column;
  align-items: flex-start;
}

.filter-item.has-sub > .sub-menu {
  display: none;
  flex-direction: column;
  margin-top: 8px;
  margin-left: 20px;
  width: 100%;
}

.sub-item {
  padding: 6px 10px;
  background: #8a6244;
  margin-bottom: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.sub-item:hover {
  background: #9e7550;
}



.movement-grid:not(.member-card-slider) {
      display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 30px 2.5%;
        max-width: calc(3 * 100% + 2 * 30px);
    margin: 0 auto;
    box-sizing: border-box;
}

.movement-grid:not(.member-card-slider) > * {
     flex: 0 1 31.5%;
    max-width: 31.5%;
  width: 100%;
  /*box-sizing: border-box;*/
}
.member-card-slider:not(.slick-slider), .member-card-slider.slider-stop {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.member-card-slider > .movement-card {
    width: calc((100% / 3) - 15px);
    margin: 0;
}

.member-card-slider .slick-track{
  display: flex;
}
.member-card-slider .slick-slide {
  margin: 0 12px; /* Adjust spacing as needed */
}

.member-card-slider .slick-next, 
.member-card-slider .slick-prev {
    color: #8B7765;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    aspect-ratio: 1 / 1;
    display: flex;
    width: 40px;
    text-align: center;
    justify-content: center;
    height: 40px;
    box-shadow: 0px 0px 4px 0px #8E7A6640;
    position: absolute;
}
.member-card-slider .slick-next {
    right: -20px;
    left: auto;
}
.member-card-slider .slick-prev {
    left: -20px;
}
.member-card-slider .slick-next i, 
.member-card-slider .slick-prev i{
  color: #8E7A66;
}

.member-card-slider .slick-list {
  margin: 0 -12px; /* Negative margin to keep edges flush */
  padding: 10px 0 0 0;
}
/* Responsive: 2 columns for medium screens */
@media (max-width: 900px) {
  .movement-grid {
    max-width: calc(2 * 100% + 1 * 10px);
    gap: 30px;
  }
  .movement-grid:not(.member-card-slider) {
      display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 30px 2.5%;
        max-width: calc(2 * 100% + 1 * 10px);
    margin: 0 auto;
    box-sizing: border-box;
}
  .movement-grid:not(.member-card-slider) > * {
        flex: 0 0 48%;
        max-width: 48%;
  }
}
@media (max-width: 768px) {
  .movement-grid:not(.member-card-slider) {
    max-width: calc(2 * 100% + 1 * 10px);
    gap: 25px;
  }
  .movement-grid:not(.member-card-slider) > * {
    flex:0 0 47%;
    max-width: 47%;
  }
  .movement-archive{
    padding: 30px 0;
  }
  .wix-user-name{
    font-size: 0;
    padding-right: 0;
  }
}
/* Responsive: single column for small screens */
@media (max-width: 480px) {
  .movement-grid:not(.member-card-slider) {
    max-width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .movement-grid:not(.member-card-slider) > * {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.movement-card { 
  background: #fff; 
  border-radius: 12px; 
  box-shadow: 0px 0px 12px 0px #8E7A6640; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  transition: 0.3s all;
}
.movement-card:hover { 
  transform: translate(0, -5px);
  box-shadow: 0px 0px 18px 0px #8E7A6640;
}
.movement-card .card-media { 
  background: #e9e2db; 
  min-height: 140px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 0;
  
}

/* Customizer Start here */

.movement-card .video-placeholder {
    color: #6d6357;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    background: #e9e2db;
    border-radius: 12px 12px 0 0;
    aspect-ratio: auto;
    position: relative;
}

.movement-card .video-placeholder img {
    display: block;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
}

.member-card-slider:not(.slick-slider), .member-card-slider.slider-stop {
    display: flex;
    flex-wrap: wrap;
}

.member-card-slider > .movement-card {
   /* width: 32.33%;
    margin: 0.5%;*/
}
/* Customizer end here */

.movement-card .video-embed { 
  width: 100%; 
  position: relative; 
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.movement-card .video-embed iframe { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  border: none;
  border-radius: 0;
}

.movement-card .video-placeholder { 
  color: #6d6357; 
  font-size: 1.1rem; 
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: #e9e2db;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 9;
}

.movement-card .video-thumb { 
  width: 100%; 
  height: auto;
  border-radius: 12px; 
  max-height: 180px; 
  object-fit: cover;
}

@media (max-width: 600px) {
  .movement-card .video-embed {
    padding-bottom: 75%; /* slightly taller ratio on small screens */
  }
  .movement-card .video-placeholder {
    font-size: 1rem;
    min-height: 100px;
  }
}

.movement-card .card-content { 
     background: white;
    padding: 18px 20px;
    text-align: left;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    height: 100%;
    flex: 1;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
}
.movement-card .card-content .the_excerpt{
    font-size: 1rem;
  color: #252525;
  margin: 0 0 18px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.movement-card .card-content .the_excerpt:empty{
  display: none;
}
.movement-card .card-title { 
  margin: 0 0 15px 0; 
  font-size: 18px; 
  color: #252525;
  line-height: 1.2;
}
.movement-card .card-category {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  text-transform: capitalize;
  color: #8e7a66;
  line-height: 1;
}

.movement-card .read-more-btn { 
  background: #8E7A66;
  color: white;
  font-size: 17px;
  padding: 11px 15px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #8E7A66;
  line-height: 1;
  margin-top: auto;
  display: inline-block;
  width: fit-content;
}
.movement-card .read-more-btn:hover{
  border:1px solid #8E7A66; 
  background: transparent;
  color: #8E7A66;

}

@media (max-width: 768px) {
  .archive-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .movement-grid {
    grid-template-columns: 1fr;
  }
}

/* Post Archive Page End Here */


.no-content .card-desc{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body.has_member .has_member_hide{
  display: none !important;
}
body:not(.has_member) .has_member_hide{
  /*display: none !important;*/
}
/*body:not(.has_member) */

/*.card-button.has_member_hide{
  display: none !important;
}*/

body:not(.has_member) .has_not_member_hide{
  display: none !important;
}



/* Course Page Start Here  */
.single-sfwd-courses *,
body.bb-custom-typo{
  font-family: "Inter";
}
body.bb-custom-typo b, 
body.bb-custom-typo strong {
    font-weight: 600;
}
.course-vimeo-preview{
  background: #FBF9F9;
  border-radius: 12px;
  margin-bottom: 30px !important;
}
.course-media,
.course-media img{
  border-radius: 12px;
}
.single-sfwd-courses .entry-title{
  font-family: Inter;
  font-weight: 600;
  font-size: clamp(24px,3vw,35px);
  line-height: 1.3;
  color: #2E5343;
  margin-bottom: 10px;
}
.single-sfwd-courses .bb-course-single-meta .avatar{
  max-width: 38px;
  margin-right: 6px;
}
.single-sfwd-courses .bb-course-single-meta{    
  display: flex;
  gap: 5px;
  align-content: center;
}
.single-sfwd-courses .bb-course-single-meta a{
  pointer-events: none;
}
.single-sfwd-courses span.author-name {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #464B50;
}
.single-sfwd-courses span.course-date {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 38px;
  align-content: center;
  color: #464B50;
}
.single-sfwd-courses .bb-course-single-meta .meta-saperator{
      font-size: 32px;
    color: #464B50;
    height: 32px;
    line-height: 1;
    align-content: center;
}

.learndash-wrapper .ld-tabs .ld-tabs-content .ld-tab-content.ld-visible{
  border: 1px solid #8E7A66;
  background: #D3C3BA1A;
  padding: 30px 20px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #464B50;
}
.bb-learndash-content-wrap h4{
  font-weight: 600;
  font-size: clamp(20px,2vw,26px);
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.bb-template-v2 .learndash-wrapper .ld-item-list.ld-course-list .ld-section-heading h2, .bb-template-v2 .learndash-wrapper .ld-item-list.ld-lesson-list .ld-section-heading h2{
  font-size: clamp(20px,2vw,26px);
  color: #252525;
}
.learndash-wrapper .ld-item-list.ld-lesson-list .ld-lesson-section-heading,
.learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-name{
  font-size: 18px;
}
.learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview{
    background: transparent;
  padding: 0 20px;
  border-width: 1px 1px 0 1px;
  border-color: transparent;
  border-style: solid;
}
.learndash-wrapper .ld-item-list .ld-item-list-item.ld-expanded .ld-item-list-item-preview{
  border-width:1px 1px 0 1px;
  border-color: #8E7A66;
  border-style:solid;
  border-radius: 6px 6px 0 0;
  color: #252525;
}
.learndash-wrapper .ld-table-list .ld-table-list-header .ld-text{
  font-weight: 600;
}
.learndash-wrapper .ld-table-list .ld-table-list-items .ld-table-list-item a.ld-table-list-item-preview .ld-topic-title,
.learndash-wrapper .ld-item-list-item-expanded .ld-table-list-items .ld-table-list-item .ld-table-list-item-quiz .ld-item-title,
.learndash-wrapper .ld-table-list .ld-table-list-items .ld-table-list-item a.ld-table-list-item-preview{
  color: #252525 !important;
  font-size: 18px;
  font-weight: 400;
}
.learndash-wrapper .ld-table-list .ld-table-list-items .ld-table-list-item a.ld-table-list-item-preview{
  padding: 10px 15px 10px 80px;
}
.learndash-wrapper .ld-item-list-item.ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-status-icon{
  /*display: none;*/
}
.learndash-wrapper .ld-item-list-item.ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title{
  width: 100%;
  text-transform: capitalize;
}
.learndash-wrapper .ld-item-list .ld-item-list-item.ld-expanded .ld-item-list-item-expanded{
  border-width:1px 1px 1px 1px;
  border-color: #8E7A66;
  border-style:solid;
  border-radius: 0 0 6px 6px;
  background:#D3C3BA1A;
}
.learndash-wrapper .ld-item-list.ld-lesson-list .ld-topic-list .ld-table-list-header{
  padding: 20px 20px 20px 50px;
}
.learndash-wrapper .ld-table-list .ld-table-list-items {
  padding-bottom: 20px;
}
.single-sfwd-courses .container{
  padding: 80px 10px;
}
.learndash-wrapper .ld-item-list-item .ld-item-list-item-preview .ld-icon-arrow-down:before {
  content: "\e827";
  font:normal normal normal 22px/1 bb-icons;
  color: #0F0F0F;
}
.learndash-wrapper .ld-item-list-item .ld-item-list-item-preview .ld-expanded .ld-icon-arrow-down:before {
    content: "\e826";
}
.lms-topic-sidebar-wrapper .ld-secondary-background, .i-progress.i-progress-completed, .bb-cover-list-item .ld-secondary-background, .learndash-wrapper .ld-status-icon.ld-status-complete.ld-secondary-background, .learndash-wrapper .ld-status-icon.ld-quiz-complete, .ld-progress-bar .ld-progress-bar-percentage.ld-secondary-background {
    background-color: #D3C3BA !important;
}
.bb-single-course-sidebar .widget{
  box-shadow: -2.13px 2.13px 12.8px 0px #0000000F;
  border: 1px solid #8E7A66;
}
.bb-course-preview-content{
  padding-top: 30px;
}
.bb-single-course-sidebar a.btn-advance,
.bb-single-course-sidebar a.btn-advance:not(.button){
   background-color: #8E7A66 !important;
  border: 1px solid #8E7A66;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 15px;
  line-height: 1.4;
  border-radius: 6px;
  border-bottom: 1px solid #8E7A66 !important;

}
#btn-join:hover, .bb-single-course-sidebar #btn-join:hover, .bb-single-course-sidebar .btn-join:hover, .bb-single-course-sidebar a.btn-advance:hover, .btn-join:hover, .learndash-wrapper a.button:not(.outline):hover{
  border-bottom: 1px solid #8E7A66;
}
.bb-single-course-sidebar a.btn-advance:hover{
  border-color: #8E7A66;
   background-color: #8E7A66 !important;
   opacity: 0.85;
}
.bb-single-course-sidebar .bb-course-member-wrap,
.bb-single-course-sidebar .bb-button-wrap .bb-course-type.bb-course-type-paynow {
  display: none;
}
.learndash-wrapper .bb-single-course-sidebar .ld-status{
  font-size: 16px;
  font-weight: 400;
  padding: 14px 20px;
  border-radius: 6px;
  line-height: 1.4;
}
.learndash-wrapper:not(.ld-registration__outer-wrapper) #btn-join, .learndash-wrapper:not(.ld-registration__outer-wrapper) .btn-join{
  font-size: 16px;
    font-weight: 600;
  padding: 14px 20px;
  border-radius: 6px;
  background-color: #8E7A66;
  color: #fff;
  border: 1px solid #8E7A66;
  border-bottom:1px solid #8E7A66 !important;
}
.learndash-wrapper:not(.ld-registration__outer-wrapper) #btn-join:hover, .learndash-wrapper:not(.ld-registration__outer-wrapper) .btn-join:hover{
  background-color: #8E7A66;
  opacity: .85;
}
.bb-single-course-sidebar .bb-course-volume-list{
  padding: 0;
}
.learndash-wrapper.learndash-widget .ld-progress .ld-progress-bar,
.ld-progress-bar {
  background-color: #8E7A66;
}
.learndash-wrapper .ld-progress .ld-progress-bar .ld-progress-bar-percentage {
  background: #D3C3BA;
}
.learndash-theme.single-sfwd-courses .ld-progress .ld-progress-bar .ld-progress-bar-percentage, .single-item.groups.courses .ld-progress .ld-progress-bar .ld-progress-bar-percentage,
.learndash-theme.single-sfwd-courses .ld-progress.ld-progress-inline .ld-progress-bar, .single-item.groups.courses .ld-progress.ld-progress-inline .ld-progress-bar {
  height: 6px;
}
.bb-template-v2 .bb-single-course-sidebar h4{
  font-weight: 600;
}
.learndash-wrapper .ld-progress-percentage{
  font-weight: 400;
  font-size: 14.93px;
  line-height: 1.4;
  color: #252525 !important;
}
.learndash-wrapper .ld-progress .ld-progress-stats .ld-progress-steps{
  display: none;
}
.bb-single-course-sidebar .bb-button-wrap{
    padding-bottom: 10px;
}
.bb-single-course-sidebar .bb-course-volume-list li{
  font-size: 14px;
  color: #252525;
      margin-bottom: 10px;
}
.bb-single-course-sidebar .bb-course-volume-list li i{
  color: #8E7A66;
}
.learndash-wrapper.learndash-widget .ld-progress .ld-progress-bar{
  margin-bottom: 10px;
}
.learndash-wrapper .ld-table-list .ld-table-list-header .ld-table-list-lesson-details {
    color: #252525;
}
.learndash-wrapper .ld-topic-list.ld-table-list .ld-table-list-lesson-details .ld-lesson-list-progress{
  padding-right: 0;
}

.ld-in-focus-mode .learndash-wrapper .bb-lms-header .lms-header-title, .ld-in-focus-mode .learndash-wrapper .bb-lms-header .lms-header-instructor,
.lms-topic-sidebar-course-navigation .ld-course-navigation .course-entry-title,
body.bb-sfwd-aside #learndash-course-header.bb-lms-header h1{
  color: #2e5343;
}
@media screen and (max-width: 820px) {
  .bb-single-course-sidebar.bb-preview-wrap{
    display: none;
  }
}
@media screen and (min-width: 800px) {
    .bb-grid .bb-learndash-content-wrap {
        padding-right: 60px;
    }
}
@media screen and (min-width: 820px) {
    .bb-single-course-sidebar.bb-preview-wrap {
        margin-top: 0 !important;
    }
    .bb-ld-sticky-sidebar.is_stuck {
     /*position: fixed !important;
      top: 80px !important;
      z-index: 99;*/
      /*width: 100% !important;
      max-width: 430px;*/
    }
    .bb-single-course-sidebar {
      max-width: 450px;
    }
}
@media (max-width: 768px){
  .ld-in-focus-mode .learndash-wrapper .bb-lms-header .lms-header-title h1 {
    font-size: 26px;
  }
  .learndash-wrapper .ld-tabs .ld-tabs-content .ld-tab-content.ld-visible{
      padding: 20px 20px;
      font-size: 14px;
  }
  .single-sfwd-courses .container {
      padding: 20px 10px 0 10px;
  }
  .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview {
      background: transparent;
      padding: 10px 0;
  }
  .bb-course-single-meta {
      margin-bottom: 10px;
  }
  .bb-learndash-content-wrap>div {
    margin-bottom: 20px;
  }
  .learndash-wrapper .ld-item-list .ld-item-list-item{
    margin: 0;
  }
}

/* Course Page End Here  */

/* Lesson Start Here  */
body.bb-sfwd-aside .site-header:not(.site-header--elementor){
        width: 100%;
 }
body.bb-dark-theme.bb-sfwd-aside .site-header:not(.site-header--elementor){
        border-bottom: 1px solid #737373;
}
body.bb-sfwd-aside .site-header .container {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 68px;
}
body.bb-sfwd-aside.buddypanel-open .site-header .container {
    padding-left: 0;
}
body.bb-sfwd-aside #learndash-course-header{
    max-width: 100%;
    padding-top: 30px;
}
body.bb-sfwd-aside.ld-in-focus-mode .learndash-wrapper,
body.bb-sfwd-aside .learndash-wrapper .ld-lesson-status,
body .learndash-wrapper .ld-breadcrumbs{
    background: transparent;
}
body.bb-sfwd-aside .site-content .container .container-full{
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper .lms-topic-sidebar-data .lms-course-members-list{
  display: none;
}
body.bb-sfwd-aside .site-content .container .container-full .bb-grid.grid{
    gap: 30px;
    max-width: 100%;
    margin: 0 auto; 
}

body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper{
    order: 2;
    background-color: transparent;
    box-shadow: none;
    max-height: 620px;
}
body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper .lms-topic-sidebar-data{
    position: inherit;
    background-color:#D3C3BA1A;
    width: 100%;
    padding: 30px 10px 30px 25px;
    margin-top: 30px;
    border-radius: 6px;
    max-height: 86% !important;
    overflow: hidden;
}
body.bb-sfwd-aside .lms-topic-sidebar-wrapper .lms-lessions-list{
  max-height: calc(90vh - 350px) !important;
  overflow: auto;
}
body.bb-sfwd-aside.bb-dark-theme .site-content .container .container-full .lms-topic-sidebar-wrapper .lms-topic-sidebar-data{
    background-color: #212121 !important;
}
body.bb-sfwd-aside .site-content .container .container-full #learndash-page-content{
   /* order: 1;*/
    padding: 0 0;
    max-width: 1100px;
}
.learndash-wrapper .learndash_content_wrap .ld-table-list .ld-table-list-items div.ld-table-list-item:nth-child(odd) a.ld-table-list-item-preview{
  background: rgb(251 249 248);
}

.learndash-wrapper .ld-item-list-item.ld-item-lesson-item .ld-item-list-item-preview .ld-icon-arrow-down, .learndash-wrapper .ld-item-list-item.ld-item-lesson-item .ld-item-list-item-preview .ld-item-name .ld-item-title .lms-is-locked-ico i, .learndash-wrapper .ld-item-list-item.ld-item-lesson-item .ld-item-name .ld-item-title .ld-item-components span, .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview .ld-topic-title, .learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item a.ld-table-list-item-preview .ld-topic-title:before, .learndash-wrapper .ld-table-list-items .ld-table-list-item .ld-table-list-item-quiz .ld-item-title,
.buddyboss-theme.single-sfwd-quiz .learndash-wrapper .ld-breadcrumbs a,
.learndash-wrapper .bb-ld-info-bar .ld-breadcrumbs .ld-breadcrumbs-segments span a{
  color: #252525 !important;
}
.learndash-wrapper .ld-breadcrumbs{
  padding: .5em 0;
}
label{
  color: #252525;
}
.wpProQuiz_content .wpProQuiz_questionList.ui-sortable li.wpProQuiz_questionListItem, .wpProQuiz_content .wpProQuiz_questionList[data-type=multiple] li.wpProQuiz_questionListItem, .wpProQuiz_content .wpProQuiz_questionList[data-type=single] li.wpProQuiz_questionListItem, .wpProQuiz_content .wpProQuiz_questionList[data-type=sort_answer] li.wpProQuiz_questionListItem{
  border-color: #8e7a66 !important;
}
.learndash-wrapper .ld-breadcrumbs .ld-breadcrumbs-segments,
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .ld-breadcrumbs .ld-breadcrumbs-segments, body.single-guest_experts .ld-breadcrumbs-segments{
    font-size: 15px;
    color: #252525;
    line-height: 20px;
}
body.bb-sfwd-aside.bb-dark-theme #learndash-course-header .bb-ld-info-bar .ld-breadcrumbs .ld-breadcrumbs-segments, body.single-guest_experts .ld-breadcrumbs-segments{
    color: #fff;
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .ld-breadcrumbs .ld-breadcrumbs-segments span:after, body.single-guest_experts .ld-breadcrumbs-segments span:after{
    color: #252525;
    content: "/";
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .ld-breadcrumbs .ld-breadcrumbs-segments span:last-child:after, body.single-guest_experts .ld-breadcrumbs-segments span:last-child:after{
    content: none;
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .ld-breadcrumbs{
    padding: 0 0 0;
    border-bottom: 0;
}
.learndash_post_sfwd-lessons .learndash-wrapper .ld-breadcrumbs .ld-status.ld-status-complete{
    display: none;
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .ld-breadcrumbs .ld-status.ld-status-progress{
    display: none;
}
body.bb-sfwd-aside .learndash-wrapper .learndash_content_wrap .ld-progress{
    display: none;
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .learndash-wrapper.learndash-wrap{
    max-width: 90%;
    width: 100%;
}
body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar #bb-toggle-theme{
        max-width: 60px;
    text-align: right;
    display: flex;
    justify-content: end;
    min-width: 60px;
    background: #000;
    width: 100%;
    border-radius: 20px;
    justify-content: space-between;
    padding: 0 5px;
    min-height: 30px;
}
body.bb-sfwd-aside.bb-dark-theme #learndash-course-header .bb-ld-info-bar #bb-toggle-theme{
    background: #fff;
}

.lms-topic-sidebar-course-navigation .ld-course-navigation {
    margin: 15px 0;
}
.lms-topic-sidebar-wrapper .ld-item-list-section-heading {
    padding: 5px 30px 5px 0;
}
.lms-topic-sidebar-wrapper .lms-lessions-list>ol.bb-lessons-list>li.lms-lesson-item {
  padding: 0 0 0;
}
.lms-topic-sidebar-wrapper .lms-lessions-list>ol.bb-lessons-list>li.lms-lesson-item .bb-lesson-head{
  padding: 10px 10px;
  padding-left: 20px;
}
.lms-topic-sidebar-progress .course-progress-wrap{
  margin: 15px 0 15px;
}

.lms-topic-sidebar-wrapper .lms-toggle-lesson .bb-icon-caret-down:before{
  content:'\e826';
  color: #252525;
}
.bb-lesson-head .bb-lesson-quizzes-count, .bb-lesson-head .bb-lesson-sidebar-ld-sep, .bb-lesson-head .bb-lesson-topics-count{
  color: #252525;
}
.learndash-wrapper .learndash_content_wrap .learndash_mark_complete_button, .learndash-wrapper:not(.ld-registration__outer-wrapper,.learndash-wrapper--modern) .learndash_content_wrap .learndash_mark_complete_button{
  border-color: #2e5343 !important;
}
div.bb-lms-header .sfwd-course-position{
  display: none;
}
#learndash-page-content .sfwd-course-nav{
  width: 100%;
  justify-content: space-between;
}
#learndash-page-content .sfwd-course-nav .learndash_next_prev_link a{
  background-color: #8e7a66;
}
.lms-topic-sidebar-course-navigation a.course-entry-link{
  background-color: #8E7A66;
  color: #fff;
}
.lms-topic-sidebar-course-navigation a.course-entry-link:hover{
  opacity: 0.85;
  background-color: #8E7A66;
}
.buddyboss-theme .learndash-wrapper .ld-breadcrumbs .ld-status.ld-status-progress, .buddyboss-theme .learndash-wrapper .ld-status.ld-status-progress {
    background-color: #8E7A66 !important;
}
.lms-topic-sidebar-wrapper .lms-toggle-lesson {
    position: absolute;
    top: -4px;
    left: -10px;
    display: inline-block;
    width: 15px;
    height: 20px;
    margin-right: 6px;
    cursor: pointer;
}
.learndash .fluid-width-video-wrapper{
  border-radius: 12px;
}
.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
  border-radius: 12px 12px 0 0;
}
.lms-topic-sidebar-progress .ld-progress-steps{
  display: none;
}



.learndash-wrapper .wpProQuiz_content .wpProQuiz_listItem[data-type=multiple] .wpProQuiz_questionListItem:not(.ld-sortable__item) label, .learndash-wrapper .wpProQuiz_content .wpProQuiz_listItem[data-type=single] .wpProQuiz_questionListItem:not(.ld-sortable__item) label {
  border: 0;
}
.buddyboss-theme.single-sfwd-quiz .learndash-wrapper .wpProQuiz_content .wpProQuiz_button:not(.wpProQuiz_button_reShowQuestion),
.learndash-wrapper .wpProQuiz_content .wpProQuiz_button, .learndash-wrapper .wpProQuiz_content .wpProQuiz_button2{
  background-color: #8E7A66 !important;
  border: 1px solid #8E7A66;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 15px;
  line-height: 1.4;
  border-radius: 6px;
  border-bottom: 1px solid #8E7A66 !important;
}

@media screen and (max-width:767px){
  body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper .lms-topic-sidebar-data{
    max-height: 100% !important;
  }
  body.bb-sfwd-aside .lms-topic-sidebar-wrapper .lms-lessions-list {
    max-height: 40vh !important;
    overflow: auto;
    display: none;
}
    body.bb-sfwd-aside .site-content .container .container-full #learndash-page-content{
        max-width: 100%;
        padding-bottom: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }
    body.bb-sfwd-aside .lms-topic-sidebar, 
    body.bb-sfwd-aside .lms-topic-sidebar-wrapper {
        max-width: 100%;
        width: 100%;
        min-height: inherit !important;
    }
    #learndash-page-content{
      /*min-height: inherit !important;*/
    }
    .learndash_content_wrap .ld-tabs-content {
      margin-bottom: 0;
  }
    body.bb-sfwd-aside .site-content .container .container-full .bb-grid.grid{
        flex-direction: column-reverse;
        gap: 10px;
    }
    body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper{
        display: block !important;
        width: 100% !important;
        max-width: 100%;
        position: inherit !important;
    }
    body.bb-sfwd-aside #learndash-content .lms-topic-sidebar-wrapper{
        max-width: 100%;
        position: inherit !important;
        padding: 0 10px;
    }
    .lms-topic-sidebar-progress .course-progress-wrap{
      border-bottom: 0;
    }
    body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar{
      display: none;
    }
    body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper .lms-topic-sidebar-data{
      padding: 10px 15px 10px 15px;
    }
    div.bb-lms-header .bb-position{
      margin-bottom: 30px;
    }
    .learndash-wrapper:not(.ld-registration__outer-wrapper) .ld-content-actions .ld-content-action {
        padding: 1em 0;
    }
    body.bb-sfwd-aside .lms-topic-sidebar-wrapper.lms-topic-sidebar-close{
        margin: 0 !important;
    }
    body.bb-sfwd-aside .site-content .container .container-full .lms-topic-sidebar-wrapper .lms-topic-sidebar-data{
        max-width: 100%;
    }
    body.bb-sfwd-aside #learndash-content .lms-topic-sidebar-wrapper .lms-topic-sidebar-data{
        height: 100%;
    }
    body.bb-sfwd-aside .site-content .container .container-full{
        padding: 0 0 30px 0;
    }
    body.bb-sfwd-aside #learndash-course-header{
      padding-top: 0px;
    }
    #learndash-page-content .ld-focus-comments .comment .ld-comment-avatar .ld-comment-avatar-author {
        display: flex;
        align-items: start;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
        gap: 5px;
    }
    body.custom-single-page #learndash-page-content .ld-focus-comments .comment-respond{
        margin: 0;
    }
    .learndash-wrapper .learndash_content_wrap .learndash_mark_complete_button, .learndash-wrapper:not(.ld-registration__outer-wrapper,.learndash-wrapper--modern) .learndash_content_wrap .learndash_mark_complete_button{
      width: fit-content;
      margin: 0 auto;
    }
    .single.single-sfwd-lessons .learndash_content_wrap>div {
        margin-bottom: 0;
    }
}
@media screen and (max-width:480px){
    .learndash-wrapper .ld-tabs .ld-tabs-content .ld-tab-content.ld-visible .tab .tablinks, body.single-guest_experts .tab .tablinks{
        font-size: 14px;
        margin-right: 15px;
    }
    body.bb-sfwd-aside #learndash-course-header .bb-ld-info-bar .learndash-wrapper.learndash-wrap {
        max-width: 80%;
    }
}

/* Lessons End here */
.moment-non-grid .elementor-widget-image-box .elementor-image-box-img{
  min-height: 155px;
  align-content: center;
}
.moment-non-grid .elementor-widget-image-box .elementor-image-box-img img{
  max-height: 155px;
  width: auto;
}



/* Moment plan Start here */
.cust-container{
  max-width: 1300px;
  padding: 0 10px;
  width: 100%;
  margin: 0 auto;
}
.site-content:not(.maintenance-content){
  padding: 0;
}
.single-movement_plan .container{
  max-width: 100%;
}
.post-main-content {
  padding: 0 !important;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  padding: 80px 0 160px 0;
}
section.hero.day-wise{
  padding: 80px 0 80px 0;
}
.hero-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-text h1 {
    font-weight: 600;
    font-size: clamp(24px, 4vw, 47px);
    line-height: 1.2;
    color: #2e5343;
    /*flex: 1 1 46%;
    max-width: 46%;*/
}
.hero-text .hero-desc {
  width: 100%;
  margin: 0 0 18px 0;
  color: #252525;
  font-size: 18px;
  line-height: 1.5;
      max-width: 100%;
}
.hero-text .hero-desc ul{
    width: fit-content;
    margin: 0 auto 10px auto;
}
.wrap-sub-content{
   margin: 0 0 18px 0;
  color: #252525;
  font-size: 18px;
  line-height: 1.5;
}
.short-content{
   margin: 0 0 0 0;
  color: #252525;
  font-size: 16px;
  line-height: 1.5;
}
.cat-description{
   margin: 0 0 30px 0;
  color: #252525;
  font-size: 18px;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 12px;
}
.btn-primary, .btn-secondary {
  padding: 9px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary {
  background: #9c8470;
  color: #fff;
  box-shadow: 0 2px 8px rgba(136,120,104,.15);
}
.btn-primary:hover {
  background: #826c58;
}
.btn-secondary {
  background: #f4f2f0;
  color: #584536;
  border: 2px solid #9c8470;
}
.btn-secondary:hover {
  background: #ece1d7;
}

.video-preview {
  position: relative;
  background: #294334; /* Green band */
  border-radius: 12px 12px 0 0;
  /*min-height: 30vh;*/
}
.video-preview .moment-video{
  position: relative;
  aspect-ratio: 16/9;
  top: -80px;
  width: 100%;
  object-fit: cover;
}
.video-preview .moment-video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.video-preview::after {
  /*content: '';
  display: block;
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 240px;
  border-radius: 22px;
  background: #e8e1da;
  z-index: 1;*/
}

.video-preview-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6dfd8;
  color: #222;
  font-size: 1.6rem;
  font-weight: 600;
  width: 95%;
  height: 240px;
  border-radius: 22px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 32px rgba(80,70,60,0.07);
}

.post-description {
  padding: 80px 10px;
}
.post-description .cust-container{
  border: 1.5px solid #c4b5aa;
  background: #D3C3BA1A;
  border-radius: 8px;
  padding: 50px 30px;
  color: #252525;
  box-shadow: 0 6px 16px rgba(0,0,0,0.03);
}
.post-description h2 {
  color: #252525;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}
.post-description li,
.post-desc,
.post-desc p {
  font-size: 16px;
  line-height: 1.5;
  color: #464B50;
}
.post-desc p{
  margin: 0;
}
.post-desc strong{
  color: #252525;
}
.post-description .post-desc ul {
  margin-top: 16px;
}
.post-description li {
  margin: 6px 0;
}

@media (max-width: 850px) {
  .post-description {
    padding: 30px 10px;
  }
  .hero {
    padding: 30px 10px 60px 10px;
  }
  section.hero.day-wise {
    padding: 30px 10px;
  }
  .post-description .cust-container{
    padding: 30px 20px;
  }
  .hero-text h1{
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .hero-text .hero-desc {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .video-preview .moment-video{
    top: -30px;
  }
}




/* Tabing Wise Start Here  */
/* CSS */
.sec-title h2{
  text-align: center;
  font-size: clamp(24px,3vw,36px);
  margin-bottom: 50px;
}
.sec-title h2:empty{
  display: none;
}
.tab-section {
  padding: 80px 0;
  color: #252525;
  user-select: none;
  background: #D3C3BA1A;
}

.tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
  margin: 0 auto;
  margin-bottom: 20px;
  justify-content: start;
}

.tab {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border: 1px solid #8E7A66;
  border-radius: 6px;
  background: #D3C3BA1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #252525;
  position: relative;
  font-weight: 600;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  font-size: 20px;
}

.tab .day-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #252525;
  margin-bottom: 5px;
}
.tab:hover .day-label,
.tab.active .day-label{
  color: #fff;
}
.tab:hover,
.tab.active {
  background: #2E5343;
  border-color: #2E5343;
  color: #fff;
}

.tab.day-completed {
  color: #2E5343;
  border-color: #2E5343;
}

.tab.day-completed .icon.complete-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 14px;
  color: #2E5343;
}

.tab.day-warn {
  background: #F5D6D6;
  color: #8A2323;
  border-color: #8A2323;
}

.tab.day-warn .icon.warn-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 14px;
  color: #8A2323;
}

.icon {
  font-size: 14px;
  line-height: 1;
}

.tab-content-wrapper {
  border: 1px solid #8E7A66;
  border-radius: 6px;
  padding: 30px;
  color: #252525;
  min-height: 120px;
  margin: 0 auto;
}

.tab-content {
  display: none;
}
.tab-content .movement-card .card-title{
  margin: 0;
} 
.tab-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 1200px){
  .tabs{
    justify-content: left;
  }
}
@media (max-width: 768px){
  .tab-section{
    padding: 30px 0;
  }
  .tab-content-wrapper{
    padding: 20px;
  }
}
@media (max-width: 650px) {
  .tab {
    width: 62px;
    height: 62px;
  }
  
}

@media (max-width: 400px) {
  .tab {
    /*width: 40px;
    height: 40px;*/
  }
  .tab .day-label {
  /*  font-size: 0.5rem;
    margin-bottom: 3px;*/
  }
}


/* Tabing Wise End Here  */

/* Moment Plan End Here */

/* Moment Plan Filter Style Start Here */
   /* Container */
.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: fit-content;
}

button.dropdown-toggle::after {
    content: "\ee9a";
    font-weight: 300;
    font-family: bb-icons;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

button.dropdown-toggle.loading::after {
    background-image: url('https://i.gifer.com/ZZ5H.gif'); /* replace with your loader */
}

/* Toggle button */

.dropdown-toggle {
   width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    background-color: #8E7A66;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    text-align: left;
    display: flex;
    flex-direction: row-reverse;
    align-content: center;
    gap: 5px;
}
.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle:hover {
  background-color: #2e5343;
}

#load-more-btn{
     width: auto;
    padding: 12px 20px;
    font-size: 18px;
    background-color: #8E7A66;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    margin: 50px auto 30px auto;
    text-align: center;
    display: block;
}
#load-more-btn:hover{
   background-color: #8E7A66;
  opacity: 0.85;
}
/* Dropdown menu */
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 20px;
  background: #8E7A66;
  border: 1px solid #ddd;
  display: none;
  position: absolute;
  min-width: 260px;
  z-index: 1000;
  right: 0;
  border-radius: 12px;
  max-width: 260px;
}

/* Dropdown items */
.dropdown-menu li {
  padding: 8px 12px 8px 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  background: #FFFFFF;
  border-radius: 6px;
  margin-bottom: 5px;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  color: #252525;
  gap: 5px;
  min-height: 54px;
}

.dropdown-menu li img {
  width: 100%;
  height: auto;
  max-width: 40px;
  object-fit: contain;
  max-height: 40px;
}

.dropdown-menu li:hover {
    background: #f2f2f2;
}

.dropdown-menu li.has-children > .arrow {
    margin-left: 5px;
    font-size: 15px;
    color: #252525;
}
.dropdown-menu li.has-children > .arrow img{
  display: none;
}
.dropdown-menu li.has-children > .arrow:before{
  content: "\e826";
  font-size: 14px;
  position: relative;
  font-family: bb-icons;
  font-weight: 400;
}

.dropdown-menu li ul {
    top: 0;
    left: 100%;
    display: none;
    position: absolute;
    border: 1px solid #ddd;
}

.dropdown-menu li:hover > ul {
    display: block;
    right: 0;
}

/* Root dropdown open on button click */
.custom-dropdown.open > .dropdown-menu {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .custom-dropdown {
    max-width: 100%;
  }
  .dropdown-toggle {
    font-size: 14px;
    padding: 10px;
    width: fit-content;
  }
  .dropdown-menu li img {
    width: 22px;
    height: 22px;
  }
}

/* Moment Plan Filter End Here */

.accordion-header {
  background: #D3C3BA1A;
  padding: 20px;
  font-weight: 600;
  border: 1px solid transparent;
  margin-top: 20px;
  position: relative;
  display: flex;
  gap: 10px;
  border-radius: 6px;
}
.accordion-header.active {
  background: #D3C3BA1A;
  border: 1px solid #8E7A66;
  border-radius: 6px 6px 0 0;
}
.accordion-header:before{
  content: "\e827";
  font-family: bb-icons;
  font-weight: 300;
  position: relative;
  left: 0;
  color: #0F0F0F;
  font-size: 22px;
}
.accordion-header.active:before{
  content:"\e826";
}
.accordion-header:hover:before{
  color: #2e5343 !important;
}
.learndash-wrapper .ld-item-list.ld-lesson-list .accordion-header:hover .ld-lesson-section-heading, 
.learndash-wrapper .ld-table-list .accordion-header:hover .ld-table-list-header{
  color: #2e5343 !important;
}
.learndash-wrapper .accordion-content {
  padding:10px 15px 15px 15px;
  border: 1px solid transparent;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: #D3C3BA1A;
}
.learndash-wrapper .accordion-header.active + .accordion-content{
  border: 1px solid #8E7A66;
  border-top: none;
}
 
.learndash-wrapper .ld-item-list.ld-lesson-list .ld-lesson-section-heading, .learndash-wrapper .ld-table-list .ld-table-list-header{
  color: #252525;
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
}

/* Menu Start Here */
@media (max-width: 1024px){
  .eael-simple-menu-container .eael-simple-menu-toggle-text{
    display: none;
  }
  header#masthead.has-scrolled {
      position: fixed;
      width: 100%;
      padding: 10px 0 0;
      top: 0px;
      left: 0;
      right: 0;
  }
  ul.eael-simple-menu{
    background-color: #f8f8f8 !important;
    height: 100vh;
    padding: 30px !important;
    position: fixed !important;
    top: 90px !important;
  }
  .logged-in.admin-bar ul.eael-simple-menu{
    top: 124px !important;
  }
  .eael-simple-menu-container.preset-2 .eael-simple-menu.eael-simple-menu-horizontal:not(.eael-advanced-menu-responsive)>li>a{
    border-right: 0;
  }
  .eael-simple-menu-container.preset-2 .eael-simple-menu li>a{
      padding: 15px 15px 15px 15px !important;
      font-size: 4vw !important;
  }
  .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-horizontal li{
    border-right: 0;
  }
  .login-btn a span.elementor-button-text{
    display: none;
  }
}
@media (max-width: 768px){
  .lms-topic-sidebar-progress .course-progress-wrap {
    margin: 15px 0 0;
  }
  .accordion-header{
    padding: 15px;
  }
  ul.eael-simple-menu{
    top: 70px !important;
  }
  .logged-in.admin-bar ul.eael-simple-menu {
      top: 125px !important;
  }
  .logged-in.admin-bar header.has-scrolled ul.eael-simple-menu {
      top: 90px !important;
  }
}
/* Menu End Here */



.course-slider.swiper-autoheight .swiper-wrapper {
  align-items: stretch;
}



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

/* Category Grid Styles */
.movement-archive .archive-header{
  margin-bottom: 30px;
}
.movement-archive .archive-header h1.archive-title{
  font-weight: 600;
  font-size: clamp(24px, 4vw, 47px);
  line-height: 1.2;
  color: #2E5343;
}
.moment-cat-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));*/
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.moment-cat-grid .cat-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px 10px 15px 10px;
  text-align: center;
  box-shadow: 0px 0px 10.08px 0px #8E7A6640;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer !important;
  max-width: 200px;
  width: 100%;
}

.moment-cat-grid .cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.moment-cat-grid .cat-card img {
    width: 100%;
    max-height: 155px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 15px;
    aspect-ratio: 2/1.5;
}

.moment-cat-grid .cat-card h3 {
    font-size:14px;
    margin: 0;
    color: #252525;
    font-weight: 600;
    line-height: 1.5;
}

.moment-cat-grid .cat-card p {
    font-size: 14px;
    color: #252525;
    margin: 0;
    line-height: 1.4;
}

.movement-plan-slider .slider-btn{
  display: none;
}

.category-with-view-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.category-with-view-all h2.category-title{
  margin-bottom: 0;
      font-weight: 600;
    font-size: clamp(24px, 4vw, 47px);
    line-height: 1.2;
    color: #2E5343;
    text-transform: capitalize;
}
.view-all-btn{
  background: #8E7A66;
  color: white;
  font-size: 17px;
  padding: 11px 15px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #8E7A66;
  line-height: 1;
  margin-top: auto;
  display: inline-block;
  width: fit-content;
  text-transform: capitalize;
}
.view-all-btn:hover{
  border: 1px solid #8E7A66;
  background: transparent;
  color: #8E7A66;
}

.categories-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.button.back-to-all-btn{
   background: #8E7A66;
  color: white;
  font-size: 17px;
  padding: 11px 15px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #8E7A66;
  line-height: 1;
  margin-top: auto;
  display: inline-block;
  width: fit-content;
}
.button.back-to-all-btn:hover{
  border: 1px solid #8E7A66;
  background: transparent;
  color: #8E7A66;
}

.category-section{
      margin-top: 30px;
}
@media (max-width: 1024px){
  .moment-cat-grid .cat-card{
    padding: 10px;
  }

  .categories-container{
    gap: 30px;
  }
}
@media (max-width: 768px){
  .moment-cat-grid .cat-card{
    max-width: 48%;
  }
}
@media (max-width: 560px){
  .moment-cat-grid {
    gap: 10px;
  }
  .moment-cat-grid .cat-card{
    max-width: 47.5%;
  }
  .category-with-view-all{
        flex-wrap: wrap;
      gap: 10px;
  }
  .movement-archive .archive-header {
    margin-bottom: 10px;
}
}

@media (max-width: 480px){
  .wix-user-name{
    display: none;
  }
}



/* Recording style start here */
.container.recordings-archive{
  padding: 80px 10px;
}
.recordings-archive .archive-title {
  margin-bottom: 30px;
  color: #2E5343;
}
.recordings-archive .movement-card .card-media{
  aspect-ratio: 16/9;
}

.recordings-archive .movement-card .card-title{
  margin-bottom: 0;
}
.card-content.record-title{
  display: none;
}
.info-content.record-title{
  display: none;
}

.category-posts .empty-posts img{
  object-fit: cover;
  height: auto;
  max-height: 260px;
  width: 100%;
  align-items: center;
  border-radius: 12px;
}
.member-card-slider > .movement-card {
    /*width: 32.33%;
    margin: 0.5%;*/
}
ul.slick-dots{
  display: none !important;
}
@media (max-width: 991px){
  .member-card-slider > .movement-card {
      width: 47.33%;
      margin: 0.5%;
  }
}
@media (max-width: 768px){
  .movement-archive {
    padding: 30px 0;
}
  .category-section {
    margin-top: 0;
}
  .member-card-slider .slick-next {
    right: 10px;
    left: auto;
}
.member-card-slider .slick-prev {
    left: 10px;
}
  .movement-plan-slider .swiper-button-next {
      right: 10px;
  }
  .movement-plan-slider .swiper-button-prev {
    left: 10px;
  }
  .container.recordings-archive {
      padding: 30px 10px;
  }
}
@media (max-width: 568px){
  .member-card-slider > .movement-card {
      width: 100%;
      margin: 0;
  }
}
/* Recording style start here */









.release-grid {
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.release-grid .release-card {
  aspect-ratio: 16/9;
  background: #fff;
  border-radius: 8px;
  padding: 0;
  text-align: center;
  box-shadow: 0px 0px 10.08px 0px #8E7A6640;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer !important;
}

.release-grid .release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.release-grid .release-card img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.release-grid > .release-card {
    width: calc((100% / 3) - 15px);
}
@media (max-width: 991px){
  .release-grid > .release-card {
      width: 48.5%;
      margin: 0;
  }
  .release-grid {
    justify-content: space-around;
  }
}


@media (max-width: 768px){
  .release-grid {
    justify-content: flex-start;
  }
  .learndash-wrapper .ld-item-list.ld-lesson-list .ld-lesson-section-heading, .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-name {
      font-size: 16px;
  }
  .release-grid > .release-card {
    width: 48%;
  }
}
@media (max-width: 568px){
  .release-grid > .release-card {
        width: 100%;
    }
}


/* page-template-default */
.page-template-default.page .content-area{
  padding: 80px 15px;
}
.page-template-default.page .container{
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}
.page-template-default.page p{
  margin: 0 0 15px;
}

.category-filter {
    list-style: none;
    margin: 0;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.category-filter li{
  padding: 5px 20px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid #8E7A66;
  color: #8E7A66;
  cursor: pointer;
}
.category-filter li.active,
.category-filter li:hover{
  background: #8E7A66;
  color: #fff;
  border: 1px solid #8E7A66;
}

.purchase-mebership{
  background: #2e5343;
    padding: 10px;
    color: #fff;
}
/* Live Classes Start Here */

.container.live-classes-archive {
  padding: 80px 10px;
  max-width: 1320px;
}
.live-classes-archive .archive-title {
    margin-bottom: 30px;
    color: #2E5343;
}
.live-classes-archive .live-classes-grid:not(.member-card-slider) {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px 2.5%;
  max-width: calc(3 * 100% + 2 * 30px);
  margin: 0 auto;
  box-sizing: border-box;
}
.live-classes-card {
      flex: 0 1 31.5%;
    max-width: 31.5%;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 12px 0px #8E7A6640;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s all;
}
.live-classes-card{
  transform: translate(0, -5px);
  box-shadow: 0px 0px 18px 0px #8E7A6640;
}
.live-classes-card .live-classes-card-media {
  aspect-ratio: 16 / 9;
  background: #e9e2db;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.live-classes-card .live-classes-card-content {
    background: white;
    padding: 18px 20px;
    text-align: left;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.live-classes-card .live-classes-card-title {
    font-size: 18px;
    color: #252525;
    line-height: 1.2;
    margin-bottom: 10px;
}
.live-classes-card .live-classes-card-content p.the_excerpt{
      font-size: 1rem;
    color: #252525;
    margin: 0 0 18px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.read-more-btn{
    background: #8E7A66;
    color: white;
    font-size: 17px;
    padding: 11px 15px;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #8E7A66;
    line-height: 1;
    margin-top: auto;
    display: inline-block;
    width: fit-content;
}
.read-more-btn:hover{
      border: 1px solid #8E7A66;
    background: transparent;
    color: #8E7A66;
}
@media (max-width: 900px) {
    .live-classes-archive .live-classes-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 30px 2.5%;
        max-width: calc(2 * 100% + 1 * 10px);
        margin: 0 auto;
        box-sizing: border-box;
    }
    .live-classes-archive .live-classes-grid > * {
        flex: 0 0 48%;
        max-width: 48%;
    }
}
@media (max-width: 768px){
  .get-form div.wpforms-container-full .wpforms-form button[type=submit]{
    padding: 12px 20px;
    font-size: 18px;
  }
  .page-template-default.page .content-area,
  .container.live-classes-archive{
    padding: 30px 10px;
  }
}
@media (max-width: 480px) {
      .live-classes-archive .live-classes-grid {
        max-width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
    .live-classes-archive .live-classes-grid > * {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
/* Single Page Start Here */
.single-live_class .container {
    max-width: 100%;
    padding: 0;
}
.single-live_class .site-content{
  padding: 80px 0 0 0;
}
.single-live_class .live-class-single{
  margin: 0;
}
.single-live_class .live-class-single article{
  max-width: 1320px;
  padding: 80px 10px;
  margin: 0 auto;
}


.single-live_class .tab{
  width: fit-content;
  height: auto;
  padding: 10px 20px;
}
.single-live_class .tab .day-label{
  margin-bottom: 0;
}


.non-login-notice{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: fit-content;
  font-size: 20px;
  color: #000;
}
.non-login-notice .purchase-mebership{
  background: #2e5343;
  padding: 10px 30px;
  color: #fff;
  width: fit-content;
  margin: 20px auto;
  font-size: 16px;
  border-radius: 6px;
}

.single-live_class .live-class-thumbnail{
  margin-bottom: 30px;
}
.single-live_class .live-class-thumbnail img{
  border-radius: 12px;
}

.single-live_class h1.live-class-title{
  font-weight: 600;
  font-size: clamp(24px, 4vw, 47px);
  line-height: 1.2;
  color: #2e5343;
  margin: 0 0 10px 0;
}
.single-live_class .live-class-meta{
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  align-content: center;
  color: #464B50;
  margin: 0 0 10px 0;
}
.single-live_class .live-class-content{
  border: 1px solid #8E7A66;
  background: #D3C3BA1A;
  padding: 20px 20px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.6;
  color: #464B50;
}
.single-live_class .live-class-content p{
  margin: 0;
    font-size: 16px;
  line-height: 1.6;
  align-content: center;
  color: #464B50;
}
.relesed-posts h1{
	    font-weight: 600;
    font-size: clamp(24px, 4vw, 47px);
    line-height: 1.2;
    color: #2E5343;
    text-transform: capitalize;
}
@media (min-width: 768px){
  .title-mob br{
    display: none;
  }
}
@media (max-width: 768px){
	#learndash-page-content {
        min-height: calc(85vh - 10px);
    }
	
  .read-more-text p {
    max-height: 3em; /* about 2 lines if line-height ~1.5em */
    overflow: hidden;
    line-height: 1.5em;
    position: relative;
    transition: max-height 0.4s ease;
    mask-image:linear-gradient(to bottom, #ffffff 10%, #ffffff00 100%);
    -webkit-mask-image:linear-gradient(to bottom, #ffffff 10%, #ffffff00 100%);
    pointer-events: none;
    margin-bottom: 0;
  }

  .read-more-text p.expanded {
    max-height: none;
    mask-image: none;
    -webkit-mask-image: none;
    pointer-events: auto;
  }

  .read-more-toggle {
    display: none;
    cursor: pointer;
    color: #8e7a66;
    margin-top: 6px;
    font-weight: 600;
  }
  .read-more-toggle {
      display: inline-block;
	  margin-bottom:20px;
    }
  

  .movement-card .read-more-btn {
    font-size: 14px;
    padding: 10px 14px;
  }
  .single-live_class .live-class-single article{
    padding: 30px 10px;
  }
  .mob-title-btn {
    display: flex;
    flex-wrap: nowrap;
  }
}

@media (max-width: 568px){
  .slick-arrow{
    top: 40%;
  }
  .br-remove br:first-child{
    display: none;
  }
  .br-remove .elementor-heading-title{
    font-size: 7vw !important;
  }
  .view-all-btn{
    font-size: 14px;
  }
  .sticky-header .site-content {
    min-height: 72vh;
  }
}
/* Live Classes End Here */


.plan-card{
  max-width: 200px !important;
}
.bb-single-course-sidebar .bb-course-status-wrap .bb-course-status-content {
	padding-top: 0;
}
@media (max-width: 480px){
	.post-description .post-desc ul {
    margin-top: 16px;
    margin-left: 10px;
  }
	#learndash-page-content{
		min-height:calc(66vh - 10px);
	}
  .mob-title-btn .elementor-widget-heading .elementor-heading-title{
        font-size: 18px !important;
  }
  .mob-title-btn .elementor-button{
    font-size: 12px !important;
  }
  .mob-title-btn {
    justify-content: space-between !important;
  }
  .mob-title-btn .elementor-element{
    width: fit-content !important;
  }
  .mob-title-btn .elementor-element.has_member_hide{
    min-width:128px;
  }
  .movement-card .card-media{
    min-height: 110px;
  }
  .plan-card {
      max-width: 46% !important;
  }
	.mob-title-btn .elementor-widget-button.has_member_hide{
		min-width:128px;
	}
}
@media screen and (max-width: 400px) {
    #learndash-content .lms-topic-sidebar-wrapper {
        max-width: 350px;
        min-width: 300px;
    }
}
@media screen and (max-width: 380px){
	.br-remove .elementor-heading-title {
      font-size: 10vw !important;
  }
}


/* Start Here Page Start Here */
.step-box .elementor-image-box-img{
    max-height: 205px;
}
.step-box .elementor-image-box-img img{
    max-height: 205px;
    border-radius: 12px 12px 0 0;
        object-fit: cover;
}
.step-box .elementor-image-box-content{
    padding: 20px;
}
@media (max-width: 1024px){
  ul.sub-menu {
      left: 0 !important;
  }
}
@media (max-width: 768px){
  .eael-simple-menu-container.preset-2 .eael-simple-menu li ul li>a{
    text-align: center;
  }
    .step-box .elementor-image-box-img{
        max-height: 300px;
    }
    .step-box .elementor-image-box-img img{
        max-height: 300px;
    }
    .elementor-16 .elementor-element.elementor-element-6b0c74c .eael-simple-menu li .eael-simple-menu-indicator.eael-simple-menu-indicator-open{
      color: #2e5343;
      background-color: transparent !important;
      border-color: #2e5343 !important;
    }
    body .eael-simple-menu li .eael-simple-menu-indicator.eael-simple-menu-indicator-open svg {
      fill: #2e5343 !important;
  }
  body .eael-simple-menu li .eael-simple-menu-indicator.eael-simple-menu-indicator-open{
     background-color: transparent !important;
    border-color: transparent !important;
  }
  body .eael-simple-menu li .eael-simple-menu-indicator:hover{
     background-color: transparent !important;
    border-color: transparent !important;
  }
  .elementor-16 .elementor-element.elementor-element-6b0c74c .eael-simple-menu li .eael-simple-menu-indicator:hover svg{
    fill: #fff !important;
  }
  body .elementor-16 .elementor-element.elementor-element-6b0c74c .eael-simple-menu li .eael-simple-menu-indicator.eael-simple-menu-indicator-open svg{
    fill: #fff !important;
  }
  body.eael-simple-menu li .eael-simple-menu-indicator:hover svg{
    fill:#2e5343 !important;
  }
  body .eael-simple-menu-container .eael-simple-menu > .eael-simple-menu-indicator{
    border-color:transparent !important;
  }
  body .eael-simple-menu .eael-nav-menu-wrapper li > .eael-simple-menu-indicator:hover svg{
    fill: #fff !important;
  }
  .bb-template-v2 .site-header .sub-menu a{
        border-radius: 0;
    margin: 0;
  }
  body .elementor-830 .elementor-element.elementor-element-6b0c74c .eael-simple-menu li .eael-simple-menu-indicator.eael-simple-menu-indicator-open {
    background-color: transparent !important;
    border-color: transparent !important;
  }
  body .elementor-830 .elementor-element.elementor-element-6b0c74c .eael-simple-menu li .eael-simple-menu-indicator.eael-simple-menu-indicator-open svg {
     fill: #2e5343 !important;
  }
  body .eael-simple-menu-container .eael-simple-menu .eael-simple-menu-indicator.eael-simple-menu-indicator-open svg{
     fill: #fff !important;
  }
}
/* Start Here Page End Here */

.popup-video.fluid-width-video-wrapper iframe, 
.popup-video.fluid-width-video-wrapper object, 
.popup-video.fluid-width-video-wrapper embed{
  border-radius: 12px 12px 12px 12px;
}
.video-wraper{
    position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  padding: 0;
}

 #closeModalBtn{
  position: absolute; 
  right: -15px;
  top: -30px; 
  color: #fff; 
  font-size: 30px; 
  font-weight: bold; 
  cursor: pointer;
  z-index: 10000;
}