.eltdf-side-menu .widget.widget_search .input-holder button, .eltdf-side-menu .widget.widget_search .input-holder input {
  height: 41.6px !important;
}

/* Make sure the grid items have consistent height */
.eltdf-post-item {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure all items take full height of their container */
}

/* Set a fixed height for the title container */
.eltdf-post-title {
    min-height: calc(3 * 1.2em); /* Same as your max-height for text */
    margin-bottom: 0; /* Remove any default margins */
}

/* Your existing title text styling (with slight modification) */
.eltdf-post-title a {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: calc(3 * 1.2em) !important;
    line-height: 1.2em !important;
    margin: 0 !important; /* Remove any margins */
}

/** Previous & Next Navigation - Table Style **/
.wpb-posts-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto; /* This centers horizontally */
    width: calc(100% - 40px); /* Prevents touching viewport edges */
    margin-left: auto;
    margin-right: auto;
}


.wpb-posts-nav__prev,
.wpb-posts-nav__next {
    padding: 15px;
}

.wpb-posts-nav__next {
    border-right: none; /* Remove right border for last column */
}

.wpb-posts-nav a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Table-like grid lines */
.wpb-posts-nav__grid {
    display: grid;
}

.wpb-posts-nav__thumbnail {
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.wpb-posts-nav__thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.wpb-posts-nav__direction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    margin: 0 0 10px 0;
    padding: 8px 0;
}

.wpb-posts-nav__title {
    margin: 10px 0 0 0;
    font-size: 17px;
    padding: 8px 0;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .wpb-posts-nav__grid {
        grid-template-columns: 150px 1fr;
    }
    
    .wpb-posts-nav__thumbnail {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
        padding-right: 20px;
        margin-right: 20px;
    }
    
    .wpb-posts-nav__next .wpb-posts-nav__direction {
        justify-content: flex-end;
    }
    
    .wpb-posts-nav__next .wpb-posts-nav__content {
        text-align: right;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .wpb-posts-nav {
        border-left: none;
        border-right: none;
        grid-template-columns: 1fr 1fr;
    }
    
    .wpb-posts-nav__prev,
    .wpb-posts-nav__next {
        padding: 12px;
    }
    
    .wpb-posts-nav__thumbnail {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    .wpb-posts-nav__next .wpb-posts-nav__direction {
        justify-content: flex-end;
    }
    
    .wpb-posts-nav__thumbnail img {
        height: 120px;
        object-fit: cover;
    }
}
/* Customizer */
.eltdf-side-menu .widget.widget_search .input-holder button, .eltdf-side-menu .widget.widget_search .input-holder input {
  height: 41.6px !important;
}

.eltdf-post-title a {
    display: -webkit-box !important; /* Required for line-clamp */
    -webkit-line-clamp: 3 !important; /* Limit to 3 lines */
    -webkit-box-orient: vertical !important; /* Required for line-clamp */
    overflow: hidden !important; /* Hide overflow */
    text-overflow: ellipsis !important; /* Add ellipsis when text is cut off */
    max-height: calc(3 * 1.2em) !important; /* Fallback for browsers that don't support line-clamp (adjust 1.2em to match your line-height) */
    line-height: 1.2em !important; /* Adjust based on your design */
}
.buy_btn{
	display: flex;
  max-width: fit-content;
  margin: auto;
}
/* .frm-show-form .frm_form_field input[type=email] {
  border-color: #000000;
	height: 37px;
  padding: 8px;
	
} */
ul#menu-glam-2020-mobile li a{
	text-transform: uppercase;
}
/* .frm-show-form .frm_form_field .frm_primary_label{
	display:none;
}
.frm-show-form .frm_form_field .frm_error{
	color:#000000;
} */
.eltdf-top-bar .eltdf-main-menu>ul>li>a>span.item_outer{
	top: unset !important; 
     -webkit-transform: translateY(0%) !important; 
    -moz-transform: translateY(0%) !important;
     transform: translateY(0%) !important;
}

/* Remove default list styling */
.theiaPostSlider_slides ul,
.theiaPostSlider_slides ol {
  list-style: none !important;
  padding-left: 1.5em !important; /* Adjust spacing as needed */
}

/* Manually add bullets with proper alignment */
.theiaPostSlider_slides li {
  position: relative;
  padding-left: 1em !important; /* Space for bullet */
  margin-bottom: 0.5em !important; /* Adjust spacing between items */
}

.theiaPostSlider_slides li::before {
  content: "•"; /* Custom bullet (use 'counter(li)' for numbered lists) */
  position: absolute;
  left: 0;
  color: inherit; /* Match text color */
}