/*import*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*Fonts*/
    --theme-font-family: "Roboto", sans-serif;
    /*Navbar Colors*/
    --ob-nav-text-color: #212121;
    --ob-nav-bg-color: #fff;
    --ob-nav-list-active-bg-color: #e23a3e;
    /*color primary*/
    --theme-primary-50: #fce7e8;
    --theme-primary-100: #f6c4c5;
    --theme-primary-200: #f19d9f;
    --theme-primary-300: #eb7578;
    --theme-primary-400: #e6585b;
    --theme-primary-500: #e23a3e;
    --theme-primary-600: #df3438;
    --theme-primary-700: #da2d30;
    --theme-primary-800: #d62528;
    --theme-primary-900: #cf181b;
    --theme-primary-A100: #ffffff;
    --theme-primary-A200: #ffecef;
    --theme-primary-A400: #ffb9c4;
    --theme-primary-A700: #ff9fae;

    --theme-primary-contrast-50: #212121;
    --theme-primary-contrast-100: #212121;
    --theme-primary-contrast-200: #212121;
    --theme-primary-contrast-300: #212121;
    --theme-primary-contrast-400: #212121;
    --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: #212121;
    --theme-primary-contrast-A200: #212121;
    --theme-primary-contrast-A400: #212121;
    --theme-primary-contrast-A700: #212121;
}

/********* 
INDEX
1 - NAVBAR
2 - CARTELERA & CARDS
3 - HIDDEN ELEMENTS
4 - FOOTER
*********/

/********* 
1 - NAVBAR
*********/

/*borde del navbar*/
.mat-toolbar {
    background-color: var(--ob-nav-bg-color);
    border-bottom: 2px solid #e23a3e;
}

/*Button shooping car disabled*/
mat-toolbar.mat-toolbar button.mdc-button.mat-mdc-button.mat-mdc-button-disabled.mat-unthemed.mat-mdc-button-base {
    color: #7d7d7d61;
}

/*Ajuste logo*/
mat-toolbar.mat-toolbar.ob-top-bar img {
    max-height: 4rem;
    /* ajusta segÃºn tu barra */
    width: auto;
}

/********* 
2 - CARTELERA & CARDS
*********/

/*Fondo cartelera*/
body ob-page-events {
    background: url("https://client-dists-resources.s3.amazonaws.com/channels-client/elspetitsviatgers/img/bg.jpg") center/cover no-repeat;
    background-attachment: fixed;
}

/*Fondo card eventos*/
ob-page-events .ob-catalog-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 16px;
}

ob-page-events .main-container {
    background-color: #fff0;
}

/********* 
3 - HIDDEN ELEMENTS
*********/

/*Ocultar el precio desde en Cartelera*/
ob-page-events [data-testid="ob-catalog-card-min-price"] {
    display: none;
}

/********* 
4 - FOOTER
*********/

/*Footer*/
#desktop-footer {
    background-color: #fff;
    border-top: 2px solid #e23a3e;
}

/*Color links subfooter & copyright*/
ob-footer.main-footer,
ob-footer.main-footer a,
ob-footer.main-footer span.footer-copyright,
ob-footer.main-footer span.justify-end {
    color: #212121 !important;
}

/*Button language links subfooter*/
/*Language & icon */
ob-footer.main-footer span.mdc-button__label,
ob-footer.main-footer mat-icon.mat-icon {
    color: #212121 !important;
    font-weight: 400;
}

/*Border*/
ob-footer.main-footer ob-button>.mat-mdc-outlined-button {
    border: 1px solid#212121 !important;
}

/*Text powered by*/
ob-footer.main-footer section.items-center {
    color: #212121;
}