img.cbs-icon-row.lazy.loaded
{
    width: 42px !important;
}
.cbs-wrapper {
    background: var(--cbs-bg);
    padding: var(--cbs-pad);
    position: relative;
    overflow: hidden;
}

.cbs-slider {
    display: flex;
    gap: var(--cbs-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.cbs-slider::-webkit-scrollbar {
    display: none;
}

.cbs-box {
      min-width: 258px;
    height: 354px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    flex-shrink: 0;
}

.cbs-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.coverimg
{
    object-fit: cover !important;

}

/* Title + Icon */
.cbs-title-row {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    color: var(--cbs-text);
}
.cbs-title-row h3
{
    color: var(--cbs-text);
}

.cbs-title-row h3 {
    margin: 0;
    font-size: 16px;
}

.cbs-title-row img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

/* Arrows */
.cbs-arrow {
      position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 79px;
    
    background: #e9e9e9b8;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .2);
    color: #424242;
    font-size: 20px !important;
}
.cbs-arrow:hover
{
background-color: #424242!important;
}
.cbs-arrow.left { left: 0px; border-radius: 0% 10% 10% 00%;}
.cbs-arrow.right { right: 0px; border-radius: 10% 0% 0% 10%;}

.cbs-arrow.hidden {
    display: none;
}
.cbs-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Gradient overlay */
.cbs-gradient-overlay {
    position: absolute;
    inset: 0;
    background: var(--cbs-box-bg);
    z-index: 2;
    pointer-events: none;
}