:root {
    --vod-color: #2563eb;
    --link-color: #16a34a;
    --live-color: #c81e1e;
}

@keyframes expand {
    from {
        max-width: 8em;
    }

    to {
        max-width: max-content;
    }

    25% {
        max-width: 13em;
    }

    50% {
        max-width: 16em;
    }

    75% {
        max-width: 19em;
    }

    100% {
        max-width: max-content;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    }
}

body:not(.ds-livestream-page) {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #222831;
    color: black;
    overflow-x: hidden;
}

#overlay-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
    z-index: 100;
    display: none;
}

#overlay {
    position: absolute;
    right: 0;
    width: 80%;
    height: 100%;
    z-index: 101;
    display: none;
    text-align: right;
}

    #overlay .fa-shopping-cart {
        margin-top: 10px;
        color: #df1037;
        font-size: 24px;
        border-left: 2px solid #0066b3;
        padding-left: 10px;
        margin-right: 6px;
    }

    #overlay .badge {
        border: medium none !important;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 700;
        height: 15px;
        line-height: 9px;
        min-width: 15px;
        position: absolute;
        text-align: center;
        top: 10px;
        right: 0;
    }

    #overlay > h5 {
        position: absolute;
        right: 150px;
        color: white;
        top: 20px;
    }

    #overlay > button {
        position: absolute;
        right: 150px;
        top: 75px;
        z-index: 9999;
    }

#overlay-cart {
    position: absolute;
    width: 80px;
    background-color: white;
    right: 0;
}

#arrowAnim {
    position: absolute;
    width: 200px;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    right: 10px;
    margin-top: -100px;
}

.arrow {
    width: 5vw;
    height: 5vw;
    border: 2.5vw solid;
    border-color: #0092d7 transparent transparent #0092d7;
    transform: rotate(45deg);
    border-radius: 5px;
}


.arrowSliding {
    position: absolute;
    -webkit-animation: slide 4s linear infinite;
    animation: slide 4s linear infinite;
}

.delay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.delay2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.delay3 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(50vw);
    }

    20% {
        opacity: 1;
        transform: translateY(9vw);
    }

    80% {
        opacity: 1;
        transform: translateY(-9vw);
    }

    100% {
        opacity: 0;
        transform: translateY(-15vw);
    }
}

.overlay-play-expired {
    position: absolute;
    top: 0;
    color: #FFFF00;
    text-align: center;
    font-size: 100px;
    background-color: rgba(221, 221, 221, 0.5);
    width: 100%;
    height: 100%;
    padding: 10px 0;
    z-index: 200;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0066b3;
}

    .overlay-play-expired:hover {
        background-color: rgba(128, 128, 128, 0.4);
    }

    .overlay-play-expired i {
        flex: 0 0 120px;
    }

.overlay-alert {
    flex-basis: 50%;
    width: 0;
    background-color: rgba(255, 243, 205, 0.9);
    border-radius: 20px;
}

.overlay-alert-text {
    font-size: 20px;
    color: #004085;
}

.overlay-alert-success {
    flex-basis: 50%;
    width: 0;
    background-color: rgba(204, 229, 255, 0.9);
    border-radius: 20px;
}

.single-video-right {
    height: 100%;
}

.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    color: #f2b01e;
}

    .rating > i {
        display: inline-block;
        position: relative;
        width: 1.1em;
    }

        .rating > i:hover:before,
        .rating > i:hover ~ i:before {
            font-weight: bold;
        }

.next-video p {
    font-size: 11px;
    margin-bottom: 0.1rem;
    margin-top: 4px;
    margin: 0;
}

.next-video .video-card {
    margin-bottom: 0px;
}

.video-suggestion-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-card.video-card-list.table-hover {
    padding: 10px;
}

.group-hidden {
    display: none;
}

.group-item {
    transition: 3s;
    margin-left: 50% !important;
}

.group-title {
    max-height: 45px;
    padding-top: 5px;
    cursor: pointer;
}

.btn:not(.ds-btn) {
    white-space: normal;
    font-size: 1.1rem;
}

.live-chat-box,
.live-question-box {
    overflow: scroll;
    overflow-x: hidden;
    padding-left: 5px;
    background: #eceff0 none repeat scroll 0 0;
    padding-bottom: 10px;
}

.live-chat-msg {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .45rem;
}

    .live-chat-msg .live-chat-msg-date {
        display: none;
    }

.live-chat-msg-reply-icon {
    font-size: .75rem;
    color: #94a3b8;
    cursor: pointer;
    opacity: 0;
    transition: opacity .15s ease;
}

.live-chat-msg:hover .live-chat-msg-reply-icon {
    opacity: .9;
}

.live-chat-msg-answer-body {
    font-size: 13px;
    background-color: lightgray;
    color: black;
    padding: 5px 10px 4px 8px;
    border-radius: 6px;
    margin: 0 3px 0 15px;
    border-left: 3px solid grey;
}

.dropdown-menu-reply-message {
    background-color: whitesmoke !important;
    border: none !important;
    border-radius: 6px !important;
}

.dropdown-item-menu-reply-message {
    font-size: 9.5pt !important;
    color: black !important;
    font-weight: bold !important;
}

    .dropdown-item-menu-reply-message:hover {
        background-color: lightgray !important;
    }

.live-chat-msg:first-child {
    padding-top: 15px;
    margin-bottom: 5px;
}

.live-chat-msg-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: .2rem;
}

    .live-chat-msg-photo i {
        font-size: 0.9rem;
    }

    .live-chat-msg-photo img {
        width: 25px;
        margin-left: -4.5px;
    }

.live-chat-msg-body {
    background: #f8fafc;
    border-radius: 12px;
    padding: .5rem .7rem;
    padding-right: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .15rem .3rem;
    width: 100%;
}

    .live-chat-msg-body a {
        display: inline-block;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .live-chat-msg-body:hover {
        background: #f1f5f9;
    }

.live-chat-msg-name {
    font-size: .75rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
}

.live-chat-msg-content {
    font-size: .85rem;
    color: #1f2937;
    flex-basis: 100%;
    line-height: 1.35;
}

.live-chat-msg-welcome,
.live-chat-msg-welcome-question-box {
    display: block;
    font-weight: 200;
    font-size: 0.7em;
    line-height: 17px;
    margin-bottom: 5px;
    padding-left: 15px;
}

.live-chat-msg-moderator {
    background-color: rgba(0,102,179,0.1);
}

    .live-chat-msg-moderator .live-chat-msg-body {
        background: #eef6ff;
        border-left: 4px solid #2563eb;
    }

    .live-chat-msg-moderator .live-chat-msg-name {
        color: #2563eb;
        font-weight: 600;
    }

    .live-chat-msg-moderator .live-chat-msg-content {
        color: #0066b3;
    }

    .live-chat-msg-moderator .live-chat-msg-photo {
        background: #2563eb;
        color: #fff;
    }

.live-chat-msg-date {
    font-size: .6rem;
    color: #94a3b8;
    margin-left: auto;
}

.live-chat-msg > .dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.live-chat-header {
    margin-bottom: 0;
}

@-webkit-keyframes glowing {
    0% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        -webkit-box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        -webkit-box-shadow: 0 0 3px #B20000;
    }
}

@keyframes glowing {
    0% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }

    50% {
        background-color: #FF0000;
        box-shadow: 0 0 40px #FF0000;
    }

    100% {
        background-color: #B20000;
        box-shadow: 0 0 3px #B20000;
    }
}

#btnShowSurvey {
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.survey-buttons {
    display: block;
    max-width: 450px;
    margin: 0 auto;
}

    .survey-buttons button {
        font-size: 1.5em;
    }

.img-sponsor {
    max-height: 90px;
    max-width: 100%;
    padding-top: 5px;
}

.sponsors-group {
    display: inline-block;
    margin: 0 auto;
}

.badge-moderator-info,
.badge-moderator-info-question-box {
    font-size: 12px;
    color: #6c757d !important;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .badge-moderator-info i,
    .badge-moderator-info-question-box i {
        color: #0d6efd !important;
    }

.fixed-moderator-video {
    position: fixed;
    width: 33%;
}

.swal2-timer-progress-bar-container,
.swal2-timer-progress-bar {
    height: 1.5em !important;
    background: rgba(33, 96, 40, 0.60) !important;
}

.swal2-timer-progress-bar-container {
    background: rgba(255,255, 255, 1) !important;
}

.player-username-overlay {
    position: absolute;
    z-index: 1;
    color: white;
    top: 45%;
    background-color: black;
    opacity: 0.4;
}

.client-right-sidebar {
    height: 100% !important;
    max-width: 400px;
    min-width: 300px;
    padding: 0;
    margin: 0;
}

.right-sidebar-content {
    background-color: whitesmoke;
    border-left: 1px solid lightgrey;
}

.player-client {
    overflow: auto;
    height: calc(100vh - 60px);
    overflow-x: hidden;
}

@media (max-width: 925px) {
    .player-client {
        overflow: auto;
        height: 100%;
        overflow-x: hidden;
    }
}

.live-page-header-container h3 {
    color: #0162c0;
}

.live-page-header-container span {
    color: black;
}

.live-page-header-container h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
}

#divClientContent {
    z-index: 10;
}

.programacao-live {
    max-width: 100%;
    overflow: auto;
}

.programacao-live-xs {
    display: none;
}

.programacao-live-md {
    display: block;
}

.plyr {
    border: 0 !important;
}

.nav-tabs {
    border: none;
    background: #eef2f7;
    border-radius: 10px;
    padding: 4px;
    display: flex;
}

    .nav-tabs .nav-item {
        width: 50%;
        margin: 0;
    }

    .nav-tabs .nav-link {
        border: none !important;
        border-radius: 8px;
        background: transparent;
        color: #334155;
        padding: .45rem .65rem;
        font-size: .8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .45rem;
        line-height: 1.1;
        transition: background .15s ease, color .15s ease;
    }

        .nav-tabs .nav-link i {
            font-size: 1.05rem;
            color: #475569;
        }

.row-chat-content .nav-tabs .nav-link i {
    font-size: inherit;
    color: black !important;
}

.nav-tabs .nav-link.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 3px 8px rgba(0,0,0,.15);
    font-weight: 700;
}

    .nav-tabs .nav-link.active i {
        color: #0369a1;
    }

@media only screen and (max-width: 924px) {
    .client-right-sidebar {
        height: 100% !important;
        min-width: 100% !important;
        width: 100% !important;
    }

    .client-left-sidebar {
        max-width: 100% !important;
    }

    .programacao-live-xs {
        display: block;
    }

    .programacao-live-md {
        display: none;
    }

    .right-sidebar-content {
        position: relative;
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media only screen and (max-width: 1280px) {
    .client-right-sidebar {
        height: 100% !important;
        max-width: 400px !important;
        width: 100% !important;
    }
}

@media only screen and (max-width: 1280px) and (min-width: 925px) {
    .player-username-overlay {
        top: 20%;
    }
}

@media only screen and (min-width: 1600px) {
    .client-right-sidebar {
        height: 100% !important;
        max-width: 450px !important;
        width: 100% !important;
    }
}

.container-cookies-policy .description {
    margin-bottom: 30px !important;
}

.container-cookies-policy .sub-title {
    font-size: 18pt !important;
    margin-bottom: 20px;
}

.container-cookies-policy ul {
    font-size: 20px !important;
    list-style: initial !important;
}

.btn-live h6 {
    color: black !important;
}

.change-color-live-chat {
    border-radius: 6px;
    padding: 5px;
    background: linear-gradient(135deg, #17a2b8 1%, #30def9 100%);
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #0066b3;
}

.translation-helper-overlay {
    position: absolute;
    width: 120px;
    height: 60px;
    z-index: 1;
    padding: 15px;
    right: 0;
    display: none;
    border-radius: 0 0 0 20px;
    text-align: center;
    cursor: pointer;
    background-color: white;
}

    .translation-helper-overlay:hover {
        opacity: 1 !important;
    }

.bg-glass {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.div-footer img {
    max-height: 40px;
}

.div-footer p {
    font-size: 14px;
}

#tableUserMessages tbody td,
#tableUserQuestions tbody td {
    padding: 0.25em;
    font-size: 14px;
}

#tableUserMessages span,
#tableUserQuestions span {
    font-size: 12px;
}

#tableUserMessages thead td,
#tableUserQuestions thead td {
    padding: 0.5em;
    font-size: 14px;
}

#tableUserMessages tbody td:first-child,
#tableUserQuestions tbody td:first-child {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 200px;
}

.stream-main-container {
    position: relative;
    z-index: 12;
    overflow: hidden;
}

html {
    font-size: 15px;
}

.chat-message {
    cursor: pointer;
    max-width: 100%;
}

.chat-image {
    cursor: pointer;
    max-width: 100%;
}

.text-remove {
    cursor: pointer;
}

.clickable {
    cursor: pointer;
}

.pinned-message-container {
    position: sticky;
    top: 0;
    z-index: 2;
}

.live-chat-pinned-name {
    padding: 2px;
    background-color: #ffffff;
    border-radius: 5px;
}

.pinned-message {
    background-color: #0064af;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    transition: 0.5s;
    max-width: 100%;
    position: relative;
    z-index: 1;
    top: 0.5em;
    margin: 0 0 1em 1em;
    padding: 0.5em 1.5em 1.5em 1em;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    white-space: normal;
    overflow: hidden;
    max-height: 15vh;
}

    .pinned-message a {
        color: #FAEBD7;
    }

        .pinned-message a:hover {
            color: #FFFFFF;
        }

.pinned-message-content {
    margin-top: 20px;
}

.message-image-helper-container {
    bottom: 3em;
    right: 2em;
    z-index: 2;
    position: absolute;
    max-width: 75%;
}

.message-image-helper {
    background-color: #f0f0f0;
    display: none;
    flex-direction: column;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    transition: 0.5s;
    margin: 0 0 1em 1em;
    padding: 0.5em 1.5em 1.5em 1em;
    border-radius: 20px;
}

    .message-image-helper a:first-of-type {
        margin-bottom: 0.5em;
        padding-bottom: 0.5em;
        border-bottom: 1px solid #8ebdf1;
    }

.pinned-message-read-more {
    display: none;
    cursor: pointer;
    font-size: 0.725em;
    color: #fff8dc;
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    margin-left: 35%;
    bottom: 0.15em;
    right: 1em;
    position: absolute;
}

dialog {
    border-radius: 5px;
    border: 0 solid black;
}

    dialog::backdrop {
        background: rgba(0, 0, 0, 0.5);
    }

.close-dialog {
    cursor: pointer;
    font-size: 1.25em;
    background-color: #19bcbc;
    color: #fff0f0;
    border-radius: 5px;
    padding: 0.125em 0.45em;
}

.notification {
    display: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
    position: absolute;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    top: 1em;
    left: 2em;
    max-width: 1em;
    z-index: 11;
    animation: expand 2s linear forwards 1;
    background-color: #0064af;
    color: #ffffff;
    padding: 0.25em;
    border-radius: 5px;
}

.glow {
    animation: glow 1s 5;
}

.live-circle {
    position: absolute;
    right: 0;
    top: 20px;
    transform: translateX(-50%) translateY(-50%);
    width: 20px;
    height: 20px;
}

    .live-circle:before {
        content: "";
        position: relative;
        display: block;
        width: 250%;
        height: 250%;
        box-sizing: border-box;
        margin-left: -75%;
        margin-top: -75%;
        border-radius: 45px;
        background: linear-gradient(135deg, #ff253a 0%,#ff8453 100%);
        animation: pulse 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    .live-circle:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #ff253a 0%,#ff8453 100%);
        border-radius: 50px;
        animation: circle 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
    }

@keyframes pulse {
    0% {
        transform: scale(0.33);
    }

    80%, 100% {
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.programacao-live img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.programacao-live table {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.login-main-left {
    background: #ffffff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

    .login-main-left #livestreamname-text {
        font-size: 1.25rem;
        font-weight: 500;
        color: #334155;
        margin-bottom: .25rem;
    }

    .login-main-left #time-period {
        font-size: .9rem;
        color: #64748b;
    }

        .login-main-left #time-period .badge {
            font-size: .7rem;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 999px;
        }

    .login-main-left #welcome-text {
        font-size: 1.4rem;
        font-weight: 600;
        color: #0f172a;
    }

    .login-main-left #login-text {
        font-size: .9rem;
        font-weight: 400;
        color: #64748b;
        margin-bottom: 1.5rem;
        opacity: .7;
    }

    .login-main-left #login,
    .login-main-left #register {
        border-radius: 10px;
    }

.more-info-block {
    font-size: .9rem;
    color: #475569;
    opacity: .9;
    max-width: 520px;
    margin: 0 auto;
}

.alert-danger span,
.alert-danger small {
    color: #721c24 !important;
}

.card-live {
    background-color: transparent !important;
}

    .card-live .card-header {
        border-bottom: 2px solid #12407F;
        background-color: rgba(255, 255, 255, 0.2);
    }

/* ==================================================
   LOBBY CLIENTE
   Escopo: #divClientLobby
================================================== */
#divClientLobby {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

    #divClientLobby a.btn-change-live {
        position: relative;
        display: block;
        background: #ffffff !important;
        color: #0f172a !important;
        border-radius: 14px;
        padding: 14px 18px;
        border: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 6px 18px rgba(0,0,0,.08);
        transition: all .25s ease;
        text-decoration: none;
        cursor: pointer;
    }

        #divClientLobby a.btn-change-live:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(0,0,0,.15);
            background: #f9fafb !important;
        }

        #divClientLobby a.btn-change-live .row {
            align-items: center;
        }

        #divClientLobby a.btn-change-live .col {
            padding-top: 0;
            padding-bottom: 0;
        }

        #divClientLobby a.btn-change-live h4 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.3;
            letter-spacing: .2px;
            color: #1f2937 !important;
        }

        #divClientLobby a.btn-change-live small {
            color: #64748b;
        }

        #divClientLobby a.btn-change-live .col:first-child {
            max-width: 85px;
            text-align: center;
            border-right: 1px solid rgba(0,0,0,.08) !important;
        }

        #divClientLobby a.btn-change-live .badge {
            border-radius: 999px;
            padding: 3px 9px;
            font-size: .6rem;
            font-weight: 700;
            letter-spacing: .03em;
        }

        #divClientLobby a.btn-change-live[data-live-type="live"] .badge {
            background: rgba(220,38,38,.12);
            color: var(--live-color);
        }

        #divClientLobby a.btn-change-live[data-live-type="vod"] .badge {
            background: rgba(37,99,235,.12);
            color: var(--vod-color);
        }

        #divClientLobby a.btn-change-live[data-live-type="redirect"] .badge {
            background: rgba(22,163,74,.12);
            color: var(--link-color);
        }

        #divClientLobby a.btn-change-live::before {
            content: "";
            position: absolute;
            inset: 0;
            width: 5px;
            border-radius: 14px 0 0 14px;
        }

        #divClientLobby a.btn-change-live[data-live-type="live"]::before {
            background: var(--live-color);
        }

        #divClientLobby a.btn-change-live[data-live-type="vod"]::before {
            background: var(--vod-color);
        }

        #divClientLobby a.btn-change-live[data-live-type="redirect"]::before {
            background: var(--link-color);
        }

@media (max-width: 768px) {
    #divClientLobby a.btn-change-live {
        padding: 14px;
    }

        #divClientLobby a.btn-change-live h4 {
            font-size: .95rem;
        }

    .login-main-left {
        padding: 2rem 1.5rem;
        box-shadow: 0 20px 45px rgba(0,0,0,.2);
    }
}

/* ===============================
   LEGENDA DO LOBBY
=============================== */
#divClientLobby .lobby-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: .6rem;
    opacity: .9;
}

#divClientLobby .legend-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 500;
    color: #475569;
}

#divClientLobby .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#divClientLobby .legend-live .legend-dot {
    background: var(--live-color);
}

#divClientLobby .legend-vod .legend-dot {
    background: var(--vod-color);
}

#divClientLobby .legend-redirect .legend-dot {
    background: var(--link-color);
}

#divClientLobby .lobby-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

    #divClientLobby .lobby-header h1,
    #divClientLobby .lobby-header h2 {
        font-size: 1.6rem;
        font-weight: 500;
        color: #1f2937;
        margin-bottom: .3rem;
    }

    #divClientLobby .lobby-header p,
    #divClientLobby .lobby-header h3 {
        font-size: .95rem;
        font-weight: 400;
        color: #475569;
        margin-bottom: .8rem;
    }

#divClientLobby .lobby-separator {
    height: 1px;
    max-width: 420px;
    margin: 1.2rem auto 2rem;
    background: linear-gradient(to right, transparent, rgba(0,0,0,.15), transparent);
}

/* ==================================================
   CLIENT SIDEBAR
================================================== */
#client-sidebar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    padding: 1rem;
    height: calc(100vh - 120px);
    position: sticky;
    display: flex;
    flex-direction: column;
    max-width: 200px;
    overflow: auto;
}

    #client-sidebar h5 {
        font-size: .95rem;
        font-weight: 600;
        margin-bottom: .25rem;
    }

    #client-sidebar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        border-radius: 5px;
        background-color: #F5F5F5;
    }

    #client-sidebar::-webkit-scrollbar {
        width: 5px;
        background-color: #F5F5F5;
    }

    #client-sidebar::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
        background-color: #0066b3;
    }
    
/*
@media (max-width: 992px) {
    #client-sidebar {
        max-width: 100%;
    }
}*/

/*
@media (max-width: 992px) {
    #client-sidebar,
    #client-sidebar.hide {
        max-width: 100%;
    }
}
*/
.live-sidebar {
    background: rgba(255,255,255,.85);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

    .live-sidebar .btn {
        border-radius: 10px;
        font-weight: 500;
    }

.live-player-wrapper {
    border-radius: 18px;
    overflow: hidden;
}

.live-chat {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
/*
@media (max-width: 991px) {
    #client-sidebar {
        display: none !important;
    }

        #client-sidebar.mobile-open {
            display: block !important;
            position: fixed;
            inset: 0;
            background: #fff;
            z-index: 1000;
            border-radius: 0;
            height: 100vh;
        }

            #client-sidebar.mobile-open #divParallelLivesList,
            #client-sidebar.mobile-open #btnHideParallelRooms {
                display: block !important;
            }

            #client-sidebar.mobile-open #btnShowParallelRooms {
                display: none !important;
            }
}*/
/*
.btn-mobile-transmissions {
    display: none;
    bottom: 80px;
    z-index: 999;
    border-radius: 999px;
    padding: .6rem 1rem;
    font-size: .75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    width: 95%;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .btn-mobile-transmissions.has-parallel-lives {
        display: block;
    }
}

@media (min-width: 992px) {
    .btn-mobile-transmissions {
        display: none;
    }
}*/

/* ==================================================
   CHAT INPUT
================================================== */
.chat-input-wrapper {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 6px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    border: 1px solid #dee2e6;
}

.chat-textarea {
    border: none;
    resize: none;
    background: transparent;
    flex: 1;
    min-height: 38px;
    max-height: 120px;
    padding: 8px;
    outline: none;
}

#emoji-button-chat-box {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    padding: 0;
    opacity: .75;
}

    #emoji-button-chat-box:hover {
        opacity: 1;
    }

#liveChatQuestionPreviewArea {
    background: #eef2f7;
    border-left: 3px solid #0d6efd;
    font-size: 12px;
}

/* ==================================================
   PARALLEL LIVES SIDEBAR LIST
================================================== */
#divParallelLivesList {
    margin-top: .75rem;
    padding-right: .25rem;
    overflow-y: auto;
    flex: 1;
}

    #divParallelLivesList .btn-change-live {
        all: unset;
        display: block;
        background: #ffffff;
        border-radius: 12px;
        padding: .65rem .75rem .65rem .9rem;
        font-size: .75rem;
        line-height: 1.3;
        cursor: pointer;
        position: relative;
        box-shadow: 0 4px 14px rgba(0,0,0,.08);
        transition: transform .15s ease, box-shadow .15s ease;
    }

        #divParallelLivesList .btn-change-live:hover {
            transform: translateX(2px);
            box-shadow: 0 10px 25px rgba(0,0,0,.15);
        }

        #divParallelLivesList .btn-change-live::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 4px;
            border-radius: 4px;
        }

    #divParallelLivesList a.btn-change-live[data-live-type="vod"]::before {
        background: var(--vod-color);
    }

    #divParallelLivesList a.btn-change-live[data-live-type="redirect"]::before {
        background: var(--link-color);
    }

    #divParallelLivesList a.btn-change-live[data-live-type="live"]::before {
        background: var(--live-color);
    }

    #divParallelLivesList a.btn-change-live[data-live-type="live"] .badge {
        background: rgba(220,38,38,.12);
        color: var(--live-color);
    }

    #divParallelLivesList a.btn-change-live[data-live-type="vod"] .badge {
        background: rgba(37,99,235,.12);
        color: var(--vod-color);
    }

    #divParallelLivesList a.btn-change-live[data-live-type="redirect"] .badge {
        background: rgba(22,163,74,.12);
        color: var(--link-color);
    }

#btnShowParallelRooms {
    margin-top: 40vh;
}

    .sidebar-toggle i,
    .sidebar-toggle::before {
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
        font-size: 16px;
    }

    .sidebar-toggle:hover {
        box-shadow: inset -8px 0 14px rgba(0, 0, 0, 0.22);
        background: rgba(0, 0, 0, 0.03);
    }

/* ==================================================
   LANGUAGE SWITCHER
================================================== */
.language-bar .col {
    gap: 3em;
}

@media (max-width: 768px) {
    .language-bar-mobile {
        flex-wrap: wrap;
    }

    .language-switch {
        justify-content: center;
    }

    .language-bar .col {
        gap: 1em;
    }
}

.language-description {
    gap: 2em;
}

.language-switch {
    display: flex;
    background: #f2f6fb;
    border-radius: 999px;
    padding: 4px;
    box-shadow: inset 0 0 0 1px #d9e2ef;
}

    .language-switch button {
        flex: 1;
        border: none;
        background: transparent;
        border-radius: 999px;
        padding: 6px 10px;
        font-size: 13px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #152848;
        font-weight: 500;
        width: 100px;
    }

        .language-switch button.active {
            background: linear-gradient(135deg, #00aeef 0%, #0066b3 100%);
            color: #fff;
            box-shadow: 0 4px 10px rgba(27, 183, 216, 0.35);
        }
/*
            .language-switch button.active::after {
                content: "ðŸŽ§";
                margin-left: 6px;
            }
*/
        .language-switch button:not(.active):hover {
            background: rgba(21, 40, 72, 0.06);
        }

    .language-switch img {
        height: 18px;
    }

.translated-info {
    display: none;
}

@media (max-width: 1600px) {
    html {
        font-size: 15px;
    }

    .client-left-sidebar {
        max-width: 150px !important;
    }
}

@media (max-width: 1441px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 925px) {
    .client-left-sidebar {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .more-info-block {
        opacity: .85;
        font-size: .85rem;
    }
}

/* codex-chat-refresh:start */
.ds-client-chat-col.client-right-sidebar {
    height: 100% !important;
    width: 100% !important;
    max-width: 430px !important;
    min-width: 320px;
    margin: 0;
}

.ds-client-chat-col.client-right-sidebar .live-chat-box,
.ds-client-chat-col.client-right-sidebar .live-question-box {
    overflow-y: scroll;
    overflow-x: hidden;
    background: transparent;
    padding: 0.75rem 0.45rem 0.85rem 0.75rem;
    scrollbar-gutter: stable;
    scrollbar-width: auto;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-welcome,
.ds-client-chat-col.client-right-sidebar .live-chat-msg-welcome-question-box {
    margin: 0 0 0.75rem;
    padding: 0.65rem 0.8rem;
    border-radius: 14px;
    background: rgba(226, 232, 240, 0.75);
    color: #475569;
    font-size: 0.74rem;
    line-height: 1.4;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0.45rem;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg:first-child {
    padding-top: 0;
    margin-top: 0;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-photo,
.pinned-message .live-chat-msg-photo {
    display: none;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-body {
    position: relative;
    width: 100%;
    min-width: 0;
    gap: 0.25rem 0.35rem;
    padding: 0.55rem 2.1rem 0.5rem 0.7rem;
    border: 1px solid rgba(203, 213, 225, 0.92);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(148, 163, 184, 0.12);
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-body:hover {
    background: #FFFFFF;
    border-color: #BFDBFE;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-name {
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    color: #0F172A;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-content {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #334155;
    flex-basis: 100%;
    overflow-wrap: anywhere;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-date {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: 0;
    font-size: 0.62rem;
    color: #64748B;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg > .dropdown.dropdown-menu-reply-message {
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform: translateY(-1px);
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg:hover > .dropdown.dropdown-menu-reply-message,
.ds-client-chat-col.client-right-sidebar .live-chat-msg:focus-within > .dropdown.dropdown-menu-reply-message {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-reply-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(203, 213, 225, 0.92);
    border-radius: 999px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    opacity: 1;
    box-shadow: 0 8px 16px rgba(148, 163, 184, 0.16);
}

.dropdown-menu.dropdown-menu-reply-message {
    background-color: #FFFFFF !important;
    border: 1px solid #DBE4EF !important;
    border-radius: 12px !important;
    padding: 0.25rem !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.dropdown-item-menu-reply-message {
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    border-radius: 8px;
    padding: 0.4rem 0.65rem !important;
}

.dropdown-item-menu-reply-message:hover {
    background-color: #EFF6FF !important;
    color: #1D4ED8 !important;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg.live-chat-msg-answer {
    padding: 0.15rem;
    border-radius: 18px !important;
    border: 1px solid #BFDBFE !important;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.88), rgba(239, 246, 255, 0.35)) !important;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg.live-chat-msg-answer > .live-chat-msg-body {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(147, 197, 253, 0.85);
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-answer-body {
    margin: 0.15rem 0 0;
    padding: 0.45rem 0.55rem;
    border-radius: 11px;
    background: #EFF6FF;
    color: #1E3A8A;
    border: 1px solid #BFDBFE;
    font-size: 0.73rem;
    line-height: 1.35;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-answer .live-chat-msg-body .live-chat-msg-body {
    padding: 0 !important;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 0.2rem;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-moderator .live-chat-msg-body {
    background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 100%);
    border-color: #93C5FD;
}

.ds-client-chat-col.client-right-sidebar .live-chat-msg-moderator .live-chat-msg-content {
    color: #0F172A;
}

.change-color-live-chat {
    border-radius: 16px;
    padding: 0.15rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(14, 165, 233, 0.18));
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.25);
}

.pinned-message-container {
    position: sticky;
    top: 0;
    z-index: 4;
    padding-bottom: 0.55rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.72) 72%, rgba(248, 250, 252, 0) 100%);
}

.pinned-message {
    margin: 0;
    top: 0;
    padding: 0.75rem 0.85rem 0.85rem;
    border: 1px solid rgba(59, 130, 246, 0.24);
    border-radius: 18px;
    background: linear-gradient(135deg, #0F172A 0%, #1D4ED8 55%, #0EA5E9 100%);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.24);
    max-height: clamp(6.5rem, 18vh, 9rem);
}

.pinned-message .live-chat-msg-body {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.live-chat-pinned-name {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.35rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    font-size: 0.68rem;
}

.pinned-message .live-chat-msg-content {
    color: #E2E8F0;
}

.pinned-message .live-chat-msg-content a,
.pinned-message a {
    color: #FFFFFF;
}

.pinned-message-read-more {
    margin-left: auto;
    bottom: 0.6rem;
    right: 0.75rem;
    font-size: 0.64rem;
}

.message-image-helper-container {
    left: 0;
    right: 0;
    bottom: calc(100% + 0.75rem);
    max-width: none;
}

.message-image-helper {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(203, 213, 225, 0.95);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.message-image-helper a:first-of-type {
    margin: 0;
    padding: 0;
    border: none;
}

.chat-message,
.chat-image {
    max-width: 100%;
    border-radius: 12px;
}

.row-chat-content .nav-tabs .nav-link i {
    color: #64748B !important;
}

.row-chat-content .nav-tabs .nav-link.active i {
    color: #2563EB !important;
}

@media only screen and (max-width: 924px) {
    .ds-client-chat-col.client-right-sidebar {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .ds-client-chat-col.client-right-sidebar .live-chat-box,
    .ds-client-chat-col.client-right-sidebar .live-question-box {
        padding: 0.75rem 0.55rem 0.85rem 0.65rem;
    }

    .ds-client-chat-col.client-right-sidebar .live-chat-msg > .dropdown.dropdown-menu-reply-message {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .ds-client-chat-col.client-right-sidebar .live-chat-msg-body {
        padding-right: 2rem;
    }

    .message-image-helper {
        width: 100%;
    }

    .pinned-message {
        border-radius: 16px;
    }
}

@media only screen and (max-width: 575.98px) {
    .ds-client-chat-col.client-right-sidebar .live-chat-msg-body {
        padding: 0.5rem 1.95rem 0.45rem 0.65rem;
        border-radius: 13px;
    }

    .ds-client-chat-col.client-right-sidebar .live-chat-msg-content {
        font-size: 0.79rem;
    }
}
/* codex-chat-refresh:end */
