.mrhost-header-topbar {
    position: relative;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7253ED;
    padding: 0px;
}

.mrhost-header-topbar__slider {
    width: 100%;
    position: relative;
}

.mrhost-header-topbar__item {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    gap: 14px;

    opacity: 0;
    transform: translateY(6px);

    transition: opacity 0.6s ease, transform 0.6s ease;

    pointer-events: none;
}

.mrhost-header-topbar__item.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mrhost-header-topbar__text {
    white-space: nowrap;
}

.mrhost-header-topbar__btn {
	margin-left: 10px;
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    background: #673DE6;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.mrhost-header-topbar__btn:hover {
    background: #5025D1;
}

.mrhost-header-topbar__btn i {
    margin-left: 8px;
    font-size: 11px;
}