/*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: #030303;
    --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;
    }
}

/*Galeria de imagenes*/
.viewer-container #channels-venue-viewer {
    display: none !important;
}

/*oculta footer*/
.channel-footer {
    display: none;
}
/*ocultar heder vip*/
.vip-tickets {
    display: none;
}

/*Mostrar img recinto en vista svg*/
.eventId-50216 .ob-svg-container {
    background-image: url('https://client-dists-resources.s3.eu-west-1.amazonaws.com/channels-client/activitats_circuit/assets/bg-venue.JPG');
    background-position: center, center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Esconder recinto en vista svg*/
.eventId-50216 svg.ob-venue {
    opacity: 0;
}

/*Header vip*/
.vip-tickets {
    display: flex !important;
    background: linear-gradient(90deg, #bdad94 0%, #9e8660 10%, #9e8660 50%, #9e8660 90%, #bdad94 100%);
    height: 3rem;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vip-tickets 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;
}

/*Animation*/
.vip-tickets::before {
    content: "";
    position: absolute;
    width: 200%;
    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 20s 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); }
}