.custom-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.custom-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-item {
    min-width: 250px;
    box-sizing: border-box;
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.active {
    scale: 1;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

.flex-row {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.loop-grid-container{
	display: flex;
    justify-content: centre;
}

.ghost-no-posts{
    height: 400px;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty_message_image{
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.empty_message_title {
    font-size: 18px;
    font-weight: bold;
    color: #4444;
    text-align: center;
    margin: 0;
    padding: 0;
}

.empty_message_text {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: -10px;
}

.ghost-loading{
    height: 400px;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-image{
    height: 100px;
    width: 200px;
    object-fit: cover;
}

.filter-category-group{
    width: 100%;
    display: flex;
}

.filter-category-label, 
.filter-attribute-label{
    display: flex;
    align-items: center;
}

.d-flex{
    width: 100%;
    display: flex;
}

.filter-attribute-group, 
.filter-category-group{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ghost-search-widget{
    display: flex;
    width: 100%;
}

.loop-top-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.loop-search-container{
    position: relative;
}

.loop-search-icon{
    position: absolute;
    left: 0;
}