/*import*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    /*Fonts*/
    --theme-font-family: "Roboto", sans-serif;
    /*// http://mcg.mbitson.com/#!?tundora=%23414141*/
    /*Navbar Colors*/
    --ob-nav-text-color: #fff;
    --ob-nav-bg-color: #e61414;
    /*color primary*/
    --theme-primary-50: #E9E9E9;
    --theme-primary-100: #BBBBBB;
    --theme-primary-200: #8D8D8D;
    --theme-primary-300: #5F5F5F;
    --theme-primary-400: #3D3D3D;
    --theme-primary-500: #1B1B1B;
    --theme-primary-600: #181818;
    --theme-primary-700: #141414;
    --theme-primary-800: #101010;
    --theme-primary-900: #080808;
    --theme-primary-A100: #FF5050;
    --theme-primary-A200: #FF1D1D;
    --theme-primary-A400: #E90000;
    --theme-primary-A700: #CF0000;
    --theme-primary-contrast-50: #000000;
    --theme-primary-contrast-100: #000000;
    --theme-primary-contrast-200: #000000;
    --theme-primary-contrast-300: #000000;
    --theme-primary-contrast-400: #FFFFFF;
    --theme-primary-contrast-500: #FFFFFF;
    --theme-primary-contrast-600: #FFFFFF;
    --theme-primary-contrast-700: #FFFFFF;
    --theme-primary-contrast-800: #FFFFFF;
    --theme-primary-contrast-900: #ffffff;
    --theme-primary-contrast-A100: #000000;
    --theme-primary-contrast-A200: #000000;
    --theme-primary-contrast-A400: #000000;
    --theme-primary-contrast-A700: #000000;
    /*Header*/
    --ob-channel-header-height: 80px;
}

/*FOOTER*/
.logo-sponsors {
    background-color: #1b1b1b;
    text-align: right;
    padding: 1rem 3rem 1rem;
}

.logo-sponsors img {
    margin-right: 1rem;
    width: 5rem;
}

/*Mobile*/
@media only screen and (max-width: 40.063em) {
    .channel-footer {
        display: none;
    }
}

/*oculta footer*/
.channel-footer {
    display: none;
}

/* ajustamos la altura del contenido de la selecciÃƒÆ’Ã‚Â³n grÃƒÆ’Ã‚Â¡fica en base a la altura extra del channel-header */
.main-container {
    --gr-sel-offset-top: calc(var(--ob-top-bar-height) + var(--channels-session-header-tiny-height) + var(--ob-channel-header-height)) !important;
}

@media (min-width: 640px) {
    .main-container {
        --gr-sel-offset-top: calc(var(--ob-top-bar-height) + var(--channels-session-header-img-height) + var(--ob-channel-header-height)) !important;
    }
}

.views-expanded {
    --gr-sel-tabs-panel-max-height: calc(100dvh - var(--channels-session-header-tiny-height) - var(--ob-channel-header-height)) !important;
}

/*Ocultar icono de donation*/
.donations-icon img {
    opacity: 0 !important;
    /* Oculta la imagen original */
}

/*Cambio de icono de icon*/
.donations-container img {
    width: 24px;
    height: 24px;
    content: url('https://client-dists-resources.s3.amazonaws.com/channels-client/tickets/assets/donacion-fundacio.svg') !important;
}

/*Banner VIP*/
.vip-banner-mgp {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    gap: 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 40%, #e61414 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* animacion */
.vip-banner-mgp::before {
    content: "";
    position: absolute;
    width: 300%;
    height: 700%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.07) 0px,
        rgba(255,255,255,0.07) 20px,
        rgba(0,0,0,0.15) 20px,
        rgba(0,0,0,0.15) 40px
    );
    animation: flagWave 10s linear infinite;
    opacity: 0.25;
    transform: rotate(5deg);
    z-index: 1;
}

/* flagwave */
@keyframes flagWave {
    0%   { transform: translateX(0) rotate(5deg); }
    100% { transform: translateX(-25%) rotate(5deg); }
}

/* titulo */
.vip-banner-mgp h2 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    z-index: 3;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px #000;
}

/* Boton */
.vip-btn-mgp {
    background: #e61414;
    color: #fff;
    padding: 0.7rem 1.6rem;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 3;
    border: 2px solid #ffffff33;
    transition: 0.25s;
    box-shadow: 0 0 12px rgba(225, 6, 0, 0.6);
}

.vip-btn-mgp:hover {
    background: #ff1c12;
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(225, 6, 0, 0.9);
}
