body {

    margin: 0;
    background-color: #4e4e4e;
    color: white;
    visibility: hidden;
}


body.ready {
    visibility: visible;
    transition: visibility 10s;
}


.glassMorphic {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.img-wrapper {
    position: relative;
}

.plano {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    opacity: 0.7;
}

.gravada {
    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);
    opacity: 0.7;

}

.img-checked {
    position: absolute;
    top: 5px;
    left: 5px;
}

.contadorvideo {
    position: absolute;
    bottom: 0;
    right: 0;

    backdrop-filter: blur(10px);
    opacity: 0.5;
}

.contadorvideo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    margin: 0.2rem;
}


.alerta-topo {

    animation: pulse 1.8s infinite;
    z-index: 1000;
}

.texto-alerta {
    color: white;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgb(178, 178, 178);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }
}

/* @media (max-width: 600px) {
    .alerta-topo {
       
        font-size: 0.75rem;
    }
} */

.fullscreen-timer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Arial', sans-serif;
}

.bottombarMorphic {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.basePesquisa {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
}

.fullscreen {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: black;
    z-index: 9999;
}


.countdown-number {
    font-size: 40vw;
    font-weight: bold;
    animation: scaleUp 1s ease-in-out infinite;
}


.img-icon {
    position: absolute;
    right: 0;
    top: 0;
}

.img-icon_destaque {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 55px;
    opacity: 0.7;
}

.img-checked {
    position: absolute;

    left: 0;
}

.bread {}

.bread a {
    color: var(--mud-palette-primary);
    text-decoration: none;
}

video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    opacity: 0.6;
}

.chips_tags {
    position: absolute;
    bottom: 0;
    opacity: 0.7;
    left: 0;
}

.chips_tags p {
    font-size: 10px;
}

.shadow {
    text-shadow: rgb(68, 68, 68) 10px 5px 10px;
}

.video-container {
    display: flex;
    justify-content: center;
    /* centraliza horizontalmente */
    align-items: center;
    /* centraliza verticalmente */
    height: 100vh;
    /* ocupa toda a altura da tela */
    width: 100vw;
    /* ocupa toda a largura da tela */
}

.videoexibicao {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* centraliza */
    max-width: 100vw;
    max-height: 100vh;
}

.fontchips {
    position: absolute;
    bottom: 0;
    left: 0;
}
.fontchips p {
    font-size: 9px;
}

.basechips
{
    /*142 68 173*/
    background-color: rgba(227, 79, 103, 0.3);
}

.basechiphistoriavip
{
    /*142 68 173*/
    background-color: rgba(142, 68, 173, 0.3);
}


.video-container video {
    max-width: 100vw;
    /* não ultrapassa largura da tela */
    max-height: 90vh;
    /* não ultrapassa altura da tela */
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}