/* Relax Room Music Experience Ver2.2 */

/*
 * Relax Roomページでは、サイト共通の右下BGMレコードを非表示にする。
 * JavaScriptが実際の既存要素へ rr-site-music-hidden を付けるため、
 * 元コントロールのIDやclassに依存しない。
 */
body.rr-relax-room-page .rr-site-music-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}



.rr-room {
    --rr-bg: #0c0c0d;
    --rr-panel: #171719;
    --rr-panel-soft: #202023;
    --rr-white: #ffffff;
    --rr-gray: #c8c8ca;
    --rr-muted: #929297;
    --rr-gold: #d6b35d;
    --rr-gold-light: #f7dfa0;
    --rr-gold-dark: #8c6a27;
    --rr-border: rgba(255, 255, 255, .12);
    --rr-shadow: 0 22px 60px rgba(0, 0, 0, .48);
    --rr-row-height: 76px;
    --rr-visible-rows: 5;
    --rr-record-seconds: 8s;

    box-sizing: border-box;
    max-width: 1120px;
    margin: 40px auto;
    padding: clamp(22px, 4vw, 48px);
    overflow: hidden;
    border: 1px solid rgba(214, 179, 93, .22);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% -20%, rgba(214, 179, 93, .15), transparent 36%),
        linear-gradient(145deg, #121214, var(--rr-bg));
    color: var(--rr-white);
    box-shadow: var(--rr-shadow);
    font-family: "Yu Gothic UI", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.rr-room *,
.rr-room *::before,
.rr-room *::after {
    box-sizing: border-box;
}

.rr-header {
    margin-bottom: 34px;
    text-align: center;
}

.rr-eyebrow {
    margin: 0 0 10px;
    color: var(--rr-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
}

.rr-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 5vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: .01em;
}

.rr-subtitle {
    margin: 14px 0 0;
    color: var(--rr-gray);
    font-size: clamp(14px, 2vw, 17px);
}

.rr-section-title {
    margin: 0 0 18px;
    color: var(--rr-gold-light);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Start button */
.rr-start-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 122px;
    height: 122px;
    margin: 0 auto 28px;
    padding: 18px;
    overflow: hidden;
    border: 2px solid #56565b;
    border-radius: 50%;
    background:
        radial-gradient(circle at 48% 35%, #35353a 0 10%, #18181b 42%, #080809 74%);
    color: var(--rr-gold-light);
    box-shadow:
        inset 0 0 0 5px #111114,
        inset 0 0 20px rgba(255, 255, 255, .08),
        0 8px 22px rgba(0, 0, 0, .62);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .3s ease, border-color .3s ease;
    isolation: isolate;
}

.rr-start-button:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.025);
    border-color: var(--rr-gold);
    box-shadow:
        inset 0 0 0 5px #111114,
        inset 0 0 20px rgba(255, 255, 255, .1),
        0 0 28px rgba(214, 179, 93, .3),
        0 10px 25px rgba(0, 0, 0, .65);
}

.rr-start-button:active:not(:disabled) {
    transform: translateY(2px) scale(.985);
}

.rr-start-button:focus-visible {
    outline: 3px solid var(--rr-gold-light);
    outline-offset: 5px;
}

.rr-start-button:disabled {
    cursor: wait;
}

.rr-start-button__power {
    position: absolute;
    top: 22px;
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    opacity: .9;
}

.rr-start-button__power::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 2px;
    height: 11px;
    background: currentColor;
    transform: translateX(-50%);
}

.rr-start-button__text {
    margin-top: 25px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .1em;
    text-align: center;
}

.rr-start-button__ring {
    position: absolute;
    inset: 7px;
    z-index: -1;
    border: 1px solid rgba(214, 179, 93, .2);
    border-radius: 50%;
}

.rr-start-button.rr-is-selecting {
    color: var(--rr-white);
    border-color: var(--rr-gold);
    box-shadow:
        inset 0 0 0 5px #111114,
        0 0 18px rgba(214, 179, 93, .55),
        0 0 42px rgba(214, 179, 93, .28);
}

.rr-start-button.rr-is-selecting .rr-start-button__ring {
    animation: rr-start-pulse 1.05s ease-in-out infinite;
}

.rr-start-button.rr-is-next {
    color: var(--rr-gold-light);
}

@keyframes rr-start-pulse {
    50% {
        border-color: var(--rr-gold-light);
        box-shadow: 0 0 22px rgba(214, 179, 93, .55);
        transform: scale(1.04);
    }
}

/* Roulette */
.rr-selector {
    position: relative;
    margin-bottom: 42px;
}

.rr-song-board {
    position: relative;
    height: calc(var(--rr-row-height) * var(--rr-visible-rows));
    overflow: hidden;
    border: 1px solid rgba(214, 179, 93, .48);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(5, 5, 6, .96), rgba(35, 35, 38, .96) 50%, rgba(5, 5, 6, .96));
    box-shadow:
        inset 0 0 38px rgba(0, 0, 0, .9),
        0 15px 38px rgba(0, 0, 0, .34);
    user-select: none;
    isolation: isolate;
}

.rr-song-board::before,
.rr-song-board::after {
    content: "";
    position: absolute;
    z-index: 5;
    left: 0;
    width: 100%;
    height: 31%;
    pointer-events: none;
}

.rr-song-board::before {
    top: 0;
    background: linear-gradient(to bottom, #09090a 4%, rgba(9, 9, 10, 0));
}

.rr-song-board::after {
    bottom: 0;
    background: linear-gradient(to top, #09090a 4%, rgba(9, 9, 10, 0));
}

.rr-roulette-track {
    position: relative;
    z-index: 2;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.rr-roulette-row,
.rr-roulette-placeholder {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    height: var(--rr-row-height);
    padding: 0 58px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .64);
}

.rr-song-title,
.rr-song-artist {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rr-song-title {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .015em;
}

.rr-song-artist {
    color: rgba(255, 255, 255, .48);
    font-size: 15px;
    text-align: right;
}

.rr-selection-window {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 18px;
    left: 18px;
    height: var(--rr-row-height);
    border: 2px solid rgba(214, 179, 93, .7);
    border-radius: 13px;
    background: linear-gradient(90deg, rgba(214, 179, 93, .08), rgba(214, 179, 93, .025), rgba(214, 179, 93, .08));
    box-shadow:
        0 0 12px rgba(214, 179, 93, .15),
        inset 0 0 16px rgba(214, 179, 93, .06);
    transform: translateY(-50%);
    transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
    pointer-events: none;
}

.rr-roulette-pointer {
    position: absolute;
    z-index: 6;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translateY(-50%);
    pointer-events: none;
}

.rr-roulette-pointer--left {
    left: 0;
    border-left: 17px solid var(--rr-gold);
}

.rr-roulette-pointer--right {
    right: 0;
    border-right: 17px solid var(--rr-gold);
}

.rr-roulette-row.rr-is-selected {
    color: var(--rr-white);
    background: rgba(214, 179, 93, .08);
}

.rr-roulette-row.rr-is-selected .rr-song-title {
    color: var(--rr-gold-light);
}

.rr-roulette-row.rr-is-selected .rr-song-artist {
    color: var(--rr-white);
}

.rr-song-board.rr-selection-flash .rr-selection-window {
    border-color: #fff1b8;
    background: rgba(214, 179, 93, .18);
    box-shadow:
        0 0 16px #f5d878,
        0 0 38px rgba(245, 216, 120, .85),
        0 0 68px rgba(214, 179, 93, .52),
        inset 0 0 22px rgba(255, 242, 188, .24);
}

.rr-status {
    min-height: 1.7em;
    margin: 15px 0 0;
    color: var(--rr-gray);
    font-size: 14px;
    text-align: center;
}

.rr-category-banner {
    position: absolute;
    z-index: 12;
    top: 53%;
    left: 50%;
    min-width: min(86%, 520px);
    padding: 15px 24px;
    border: 1px solid var(--rr-gold);
    border-radius: 10px;
    background: rgba(12, 12, 13, .96);
    color: var(--rr-gold-light);
    box-shadow: 0 0 35px rgba(214, 179, 93, .42);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 4vw, 30px);
    text-align: center;
    transform: translate(-50%, -40%) scale(.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
    pointer-events: none;
}

.rr-category-banner.rr-is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Record */
.rr-record-section {
    display: grid;
    justify-items: center;
    gap: 24px;
    margin: 44px 0 38px;
    text-align: center;
}

.rr-record-stage {
    display: grid;
    place-items: center;
    width: min(100%, 430px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 179, 93, .065), transparent 68%);
}

.rr-record {
    position: relative;
    width: clamp(230px, 36vw, 370px);
    aspect-ratio: 1;
    border: 5px solid #080809;
    border-radius: 50%;
    background: #050506;
    box-shadow:
        inset 0 0 34px rgba(255, 255, 255, .075),
        inset 0 0 80px rgba(0, 0, 0, .88),
        0 25px 55px rgba(0, 0, 0, .58);
    isolation: isolate;
}

.rr-record::after {
    content: "";
    position: absolute;
    z-index: 8;
    inset: 1.5%;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 50%;
    pointer-events: none;
}

.rr-record__disc {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, transparent 0 17%, rgba(255,255,255,.035) 17.4% 17.8%, transparent 18.2% 100%),
        repeating-radial-gradient(circle at center, #050506 0 2px, #171719 3px 4px, #070708 5px 7px);
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.rr-record__disc.rr-is-spinning {
    animation-name: rr-record-spin;
    animation-duration: var(--rr-record-seconds);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
    -webkit-animation-name: rr-record-spin;
    -webkit-animation-duration: var(--rr-record-seconds);
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
}

.rr-record__grooves {
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            circle at center,
            transparent 0 5px,
            rgba(255, 255, 255, .035) 5.5px 6px,
            transparent 6.5px 11px
        );
}

.rr-record__reflection {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(
            from 16deg,
            transparent 0deg 20deg,
            rgba(255, 255, 255, .02) 24deg,
            rgba(255, 255, 255, .32) 31deg,
            rgba(255, 255, 255, .08) 38deg,
            transparent 46deg 184deg,
            rgba(255, 255, 255, .02) 190deg,
            rgba(255, 255, 255, .24) 198deg,
            rgba(255, 255, 255, .055) 207deg,
            transparent 218deg 360deg
        ),
        repeating-radial-gradient(
            circle at center,
            transparent 0 16px,
            rgba(255, 255, 255, .10) 17px 18px,
            transparent 19px 28px
        );
    opacity: .58;
    mix-blend-mode: screen;
    pointer-events: none;
}

.rr-record__label {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    display: grid;
    place-content: center;
    width: 29%;
    aspect-ratio: 1;
    border: 3px solid rgba(94, 63, 10, .7);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 27%, #f6dfa1, #c69e43 47%, #7b591e 100%);
    color: #17120a;
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, .28),
        0 0 0 3px rgba(0, 0, 0, .68);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(12px, 2.2vw, 18px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: .09em;
    transform: translate(-50%, -50%);
}

.rr-record__label span {
    display: block;
}

.rr-record__spindle {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 3%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fafafa, #8c8c8c 55%, #242424);
    box-shadow: 0 0 4px rgba(0, 0, 0, .9);
    transform: translate(-50%, -50%);
}

.rr-record.rr-is-playing {
    box-shadow:
        inset 0 0 34px rgba(255, 255, 255, .09),
        inset 0 0 80px rgba(0, 0, 0, .88),
        0 0 18px rgba(214, 179, 93, .18),
        0 0 48px rgba(214, 179, 93, .13),
        0 25px 55px rgba(0, 0, 0, .58);
}

.rr-record.rr-is-playing .rr-record__reflection {
    opacity: .78;
}

@keyframes rr-record-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rr-record-spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.rr-now-playing__kicker {
    margin: 0 0 8px;
    color: var(--rr-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

.rr-now-playing__title {
    margin: 0;
    color: var(--rr-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 4vw, 38px);
    font-weight: 500;
}

.rr-now-playing__artist {
    margin: 8px 0 0;
    color: var(--rr-gray);
    font-size: clamp(15px, 2.2vw, 19px);
}

/* Player and details */
.rr-player-area {
    display: flex;
    justify-content: center;
    margin: 38px 0;
}

.rr-player {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 18px;
    background: #000;
    box-shadow: var(--rr-shadow);
}

.rr-information {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--rr-border);
    border-radius: 20px;
    background: linear-gradient(145deg, var(--rr-panel), var(--rr-panel-soft));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.rr-information > h2 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rr-border);
    color: var(--rr-gold);
    font-size: 26px;
}

.rr-song-detail {
    color: var(--rr-gray);
    font-size: 16px;
    line-height: 1.85;
}

.rr-song-detail h3 {
    margin: 0;
    color: var(--rr-gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 4vw, 36px);
    font-weight: 500;
}

.rr-detail-artist {
    margin: 4px 0 28px;
    color: var(--rr-white);
    font-size: 18px;
}

.rr-item {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 17px;
}

.rr-label {
    color: var(--rr-gold);
    font-weight: 700;
}

.rr-value {
    min-width: 0;
}

.rr-related {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--rr-border);
}

.rr-related h4 {
    margin: 0 0 8px;
    color: var(--rr-gold);
}

.rr-related ul {
    margin: 0;
    padding-left: 20px;
}

/* Responsive */
@media (max-width: 760px) {
    .rr-room {
        margin: 16px;
        padding: 20px 16px 26px;
        border-radius: 20px;
    }

    .rr-song-board {
        --rr-row-height: 68px;
    }

    .rr-roulette-row,
    .rr-roulette-placeholder {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 8px 38px;
        text-align: center;
    }

    .rr-song-title {
        font-size: 17px;
    }

    .rr-song-artist {
        font-size: 13px;
        text-align: center;
    }

    .rr-start-button {
        width: 108px;
        height: 108px;
    }

    .rr-record-stage {
        width: min(100%, 330px);
    }

    .rr-record {
        width: clamp(220px, 72vw, 300px);
    }

    .rr-item {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

@media (max-width: 430px) {
    .rr-song-board {
        --rr-row-height: 64px;
    }

    .rr-roulette-row,
    .rr-roulette-placeholder {
        padding-inline: 30px;
    }

    .rr-title {
        font-size: 29px;
    }

    .rr-category-banner {
        min-width: 92%;
        padding: 13px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rr-room *,
    .rr-room *::before,
    .rr-room *::after {
        scroll-behavior: auto !important;
    }

    .rr-start-button,
    .rr-selection-window,
    .rr-category-banner {
        transition-duration: .01ms !important;
    }

    .rr-start-button.rr-is-selecting .rr-start-button__ring {
        animation: none;
    }

    .rr-record__disc.rr-is-spinning {
        animation-duration: 12s;
        -webkit-animation-duration: 12s;
    }
}


/* ==========================================================
   Relax Room page: Cocoon / WordPress Table of Contents
   This block is scoped to the shortcode page only.
========================================================== */
body.rr-relax-room-page .toc,
body.rr-relax-room-page .toc-widget,
body.rr-relax-room-page .toc-widget-box,
body.rr-relax-room-page .toc-content {
    border: 1px solid rgba(214, 179, 93, .48) !important;
    border-radius: 10px !important;
    background: rgba(15, 15, 15, .92) !important;
    color: #f7f7f7 !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .34) !important;
}

body.rr-relax-room-page .toc-title,
body.rr-relax-room-page .toc-widget-title,
body.rr-relax-room-page .toc .toc-title,
body.rr-relax-room-page .toc-content .toc-title {
    color: #f1d789 !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
}

body.rr-relax-room-page .toc ol,
body.rr-relax-room-page .toc ul,
body.rr-relax-room-page .toc-content ol,
body.rr-relax-room-page .toc-content ul,
body.rr-relax-room-page .toc-list {
    color: #ffffff !important;
}

body.rr-relax-room-page .toc li,
body.rr-relax-room-page .toc-content li,
body.rr-relax-room-page .toc-list li,
body.rr-relax-room-page .toc li::marker,
body.rr-relax-room-page .toc-content li::marker,
body.rr-relax-room-page .toc-list li::marker {
    color: #ffffff !important;
}

body.rr-relax-room-page .toc a,
body.rr-relax-room-page .toc-widget a,
body.rr-relax-room-page .toc-content a,
body.rr-relax-room-page .toc-list a,
body.rr-relax-room-page .toc a:link,
body.rr-relax-room-page .toc a:visited,
body.rr-relax-room-page .toc-content a:link,
body.rr-relax-room-page .toc-content a:visited {
    color: #ffffff !important;
    opacity: 1 !important;
    text-decoration: none !important;
    transition: color .2s ease, opacity .2s ease !important;
}

body.rr-relax-room-page .toc a:hover,
body.rr-relax-room-page .toc a:focus-visible,
body.rr-relax-room-page .toc-widget a:hover,
body.rr-relax-room-page .toc-widget a:focus-visible,
body.rr-relax-room-page .toc-content a:hover,
body.rr-relax-room-page .toc-content a:focus-visible,
body.rr-relax-room-page .toc-list a:hover,
body.rr-relax-room-page .toc-list a:focus-visible {
    color: #f1d789 !important;
    opacity: 1 !important;
}

body.rr-relax-room-page .toc .is-active-link,
body.rr-relax-room-page .toc a.is-active-link,
body.rr-relax-room-page .toc-content .is-active-link {
    color: #e5c16b !important;
    font-weight: 700 !important;
}

/* ==========================================================
   Relax Room headings: neutralize Cocoon's white heading bars
========================================================== */
body.rr-relax-room-page .rr-room h1,
body.rr-relax-room-page .rr-room h2,
body.rr-relax-room-page .rr-room h3,
body.rr-relax-room-page .rr-room h4,
body.rr-relax-room-page .rr-room h5,
body.rr-relax-room-page .rr-room h6 {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.rr-relax-room-page .rr-room h1::before,
body.rr-relax-room-page .rr-room h1::after,
body.rr-relax-room-page .rr-room h2::before,
body.rr-relax-room-page .rr-room h2::after,
body.rr-relax-room-page .rr-room h3::before,
body.rr-relax-room-page .rr-room h3::after {
    content: none !important;
    display: none !important;
}

body.rr-relax-room-page .rr-room .rr-section-title {
    width: auto !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    color: #f1d789 !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    letter-spacing: .18em !important;
}

body.rr-relax-room-page .rr-room .rr-now-playing__title {
    margin: 0 !important;
    padding: 0 !important;
    color: var(--rr-gold-light) !important;
    background: transparent !important;
}

body.rr-relax-room-page .rr-room .rr-information > h2 {
    margin: 0 0 22px !important;
    padding: 0 !important;
    color: #f1d789 !important;
    background: transparent !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 500 !important;
    letter-spacing: .05em !important;
}

.rr-auto-progress {
    margin: 14px 0 0;
    color: var(--rr-gold-light);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .12em;
}

/* ==================================================
   Relax Room Ver3.2 — single roulette architecture
   ================================================== */
.rr-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.rr-auto-anchor {
    position: relative;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.rr-auto-progress[hidden] {
    display: none !important;
}
