
/* Header Pembe Shop */
.pembe-i-pink {
    color: var(--primary-color) !important;
}


/* Slider Text Info Box */
.info-banner {
    background: #f7e2e7;
    padding: 12px 26px;
    font-size: 1.06rem;
    font-weight: 500;
    direction: rtl;
    overflow: hidden;
}
.info-banner__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.info-banner__item {
    color: #3E3E3E;
    padding: 0 8px;
    white-space: nowrap;
}
.info-banner__dot-sep {
    display: inline-block;
    margin: 0 2px;
    color: #FF0286;
    font-size: 8px;
    vertical-align: middle;
}
@media (max-width: 991.98px) {
    .info-banner__list {
        animation: scroll-news 20s linear infinite;
        white-space: nowrap;
        flex-wrap: nowrap;
        width: 100%;
    }
    .info-banner__item {
        display: inline-block;
        white-space: nowrap;
    }
    .info-banner__dot-sep {
        display: inline-block;
        margin: 0 10px;
    }
}
@keyframes scroll-news {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}