.new-update-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 500px;
    border: 1px solid #E4BFFF;
    background: #F4EBFF;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.20);
    padding: 5px 10px;
    position: fixed;
    bottom: 20px;
    z-index: 99;

    & > div {
        padding: 5px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    p {
        color: #20046E;
        font-size: 14px;
        line-height: 160%;
    }

    .read-more {
        all: unset;
        cursor: pointer;
        padding: .25rem 1rem;
        color: #20046E;
        background: white;
        border-radius: 2.25rem;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        white-space: nowrap;

        &:hover {
            background-color: #FAF8FE;
        }
    }

    .hide-update-info-btn {
        all: unset;
        cursor: pointer;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .update-bar-container{
        padding-inline: initial !important;
        max-width: initial !important;
    }

    .new-update-bar {
        width: 100%;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        padding-block: 20px 10px;
        flex-direction: column;

        .hide-update-info-btn{
            position: absolute;
            top: 10px;
            right: 20px;
        }
    }
}
