.community-voice-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 80vh;
    position: relative;
    align-items: center;
}

@media (min-width: 768px) {
    .community-voice-container {
        height: 60vh;
    }
}

.voice-container-scroller {
    height: 100%;
    will-change: transform;
    max-width: 480px;
}

.scroller__inner {
    width: 100%;
    white-space: nowrap;
    will-change: transform;
    padding: 0;
}

.voice-container-scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(0deg,
    transparent,
    white 20%,
    white 80%,
    transparent);
    mask: linear-gradient(0deg, transparent, white 20%, white 80%, transparent);
}

/* .voice-container-scroller[data-animated="true"] .scroller__inner {
    animation: voiceContainerScroll var(--_animation-duration, 15s) var(--_animation-direction, forwards) linear infinite;
} */

.voice-container-scroller[data-animated="true"] .scroller__inner {
    overflow: hidden;
    animation: voiceContainerScroll var(--_animation-duration, 15s) linear infinite;
}

.voice-container-scroller[data-direction="up"] {
    --_animation-direction: reverse;
}

.voice-container-scroller[data-direction="down"] {
    --_animation-direction: forwards;
}

.voice-container-scroller[data-speed="fast"] {
    --_animation-duration: 10s;
}

.voice-container-scroller[data-speed="slow"] {
    --_animation-duration: 24s;
}

@keyframes voiceContainerScroll {
    from {
        transform: translateY(0%);
    }

    to {
        transform: translateY(-25%);
    }
}

.lovewall_item-wrapper {
    margin: 15px;
    width: calc(100% - 30px);
    background-color: #FFF;
    box-shadow: 1px 1px 10px 2px #4444440f;
    border-radius: 5px;
}

.lovewall_text {
    text-align: start;
}

.lovewall_item {
    -webkit-font-smoothing: antialiased;
    background-color: hsla(0, 0%, 100%, .9);
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    padding: 20px 22px;
    position: relative;
    transform: scale(.9);
    transition: opacity .15s ease-in-out;
    overflow: hidden;
    text-wrap: auto;
}

@media only screen and (min-width:750px) {
    .lovewall_item {
        transform: scale(1)
    }
}

.lovewall_item:hover {
    opacity: .8
}

.lovewall_avatar {
    height: 52px;
    margin-right: 15px;
    position: relative;
    width: 54px
}

.lovewall_avatar-img {
    background-color: #fff;
    border-radius: 50%;
    filter: grayscale(1) brightness(1);
    height: 40px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    z-index: 2;
    z-index: 1
}

.lovewall_avatar-bg-a .circle-left,
.lovewall_avatar-bg-a .star-left {
    fill: #ed746f
}

.lovewall_avatar-bg-a .circle-right,
.lovewall_avatar-bg-a .star-right,
.lovewall_avatar-bg-b .circle-left,
.lovewall_avatar-bg-b .star-left {
    fill: #ffde01
}

.lovewall_avatar-bg-b .circle-right,
.lovewall_avatar-bg-b .star-right {
    fill: #3fbb72
}

.lovewall_avatar-bg-c .circle-left,
.lovewall_avatar-bg-c .star-left {
    fill: #6e5bff
}

.lovewall_avatar-bg-c .circle-right,
.lovewall_avatar-bg-c .star-right {
    fill: #ffde01
}

.lovewall_text {
    text-align: left
}

.lovewall_tweet p {
    font-size: .9rem;
    line-height: 1.4;
    margin: 0 0 4px
}

.lovewall_tweet p+p {
    margin-top: 1em
}

.lovewall_tweet p,
.lovewall_tweet p a {
    color: #272727;
    text-decoration: none
}

.lovewall_name {
    color: rgba(39, 39, 39, .5);
    font-size: .875rem;
    margin: 5px 0 0
}

.lovewall-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 480px;
}

.lovewall {
    height: 200px;
    overflow: visible;
    position: relative;
}

.tiny-heart {
    animation: animated-heart linear infinite;
    background-color: #ed746f;
    opacity: 0;
    position: absolute;
    z-index: 1;
}

.tiny-heart:after,
.tiny-heart:before {
    background-color: #ed746f;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.tiny-heart:before {
    transform: translateX(-50%)
}

.tiny-heart:after {
    transform: translateY(-50%)
}

@keyframes animated-heart {
    0% {
        opacity: 0;
        transform: translate(0) rotate(45deg)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translateY(-600%) rotate(45deg)
    }
}

[theme="dark"] .lovewall_item-wrapper {
    background-color: #1b1c1b;
    color: #fff;
}

[theme="dark"] .lovewall_item {
    background-color: #1b1c1b;
    color: #fff;
}


[theme="dark"] .lovewall_tweet p, .lovewall_tweet p a {
    color: #fff;
}

[theme="dark"] .lovewall_name {
    color: rgba(255, 255, 255, 0.85);
}