/*import*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --theme-font-family: "Poppins", sans-serif;
    /*Sidenav*/
    --ob-nav-text-color: #FFFFFF;
    --ob-nav-bg-color: #282828;

    /*Active button sidenav*/
    --ob-nav-list-active-text-color: #FFFFFF;
    --ob-nav-list-active-bg-color: #DB0004;

    /*Topbar*/
    --ob-custom-nav-bg-color: #22201f;
    --ob-custom-nav-text-color: #FFFFFF;

    /*color primary*/
    --theme-primary-50: #b2b2b2;
    --theme-primary-100: #b2b2b2;
    --theme-primary-200: #b2b2b2;
    --theme-primary-300: #8f8f8f;
    --theme-primary-400: #6a6a6a;
    --theme-primary-500: #DB0004;
    --theme-primary-600: #1f1f1f;
    --theme-primary-700: #161616;
    --theme-primary-800: #101010;
    --theme-primary-900: #090909;
    --theme-primary-A100: #c4c4c4;
    --theme-primary-A200: #9e9e9e;
    --theme-primary-A400: #717171;
    --theme-primary-A700: #3d3d3d;

    --theme-primary-contrast-50: #101010;
    --theme-primary-contrast-100: #101010;
    --theme-primary-contrast-200: #101010;
    --theme-primary-contrast-300: #090909;
    --theme-primary-contrast-400: #090909;
    --theme-primary-contrast-500: #f0f0f0;
    --theme-primary-contrast-600: #d6d6d6;
    --theme-primary-contrast-700: #b2b2b2;
    --theme-primary-contrast-800: #8f8f8f;
    --theme-primary-contrast-900: #6a6a6a;
    --theme-primary-contrast-A100: #282828;
    --theme-primary-contrast-A200: #161616;
    --theme-primary-contrast-A400: #090909;
    --theme-primary-contrast-A700: #3d3d3d;
}

/*=================================================================================================
    INDEX
    1) Titles
    2) Top Bar
    3) OB Footer
    4) Reorders event sections
    5) UI Bug Fix: Adjusts calendar cell spacing and price typography (Desde - 00.000,00 COP)
==================================================================================================*/

/*---------------------------------------------
    1) Titles
---------------------------------------------*/

/*Typos Titles*/
.title,
h1.title,
#eventInformation span,
.selection-title,
span.session-name,
.section-header span {
    font-family: "Playfair Display", serif;
}

/*---------------------------------------------
    2) Top Bar
---------------------------------------------*/
/*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: #b1b1b161;
}

/*---------------------------------------------
    3) OB Footer
---------------------------------------------*/

/*Dark version subfooter*/
/*Background subfooter*/
ob-footer.main-footer {
    background: #030301;
}

/*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,
ob-footer.main-footer button.ob-link {
    color: #fff !important;
}

/*Button language links subfooter*/
/*Language & icon */
ob-footer.main-footer span.mdc-button__label,
ob-footer.main-footer mat-icon.mat-icon {
    color: #fff !important;
}

/*Border*/
ob-footer.main-footer ob-button>.mat-mdc-outlined-button {
    border: 1px solid #fff !important;
}

/*Powered by*/
/*Logo Fever*/
ob-footer.main-footer img[src="assets/onebox.svg"] {
    filter: brightness(20) !important;
}

/*Text powered by*/
ob-footer.main-footer section.items-center {
    color: #fff;
}

/*---------------------------------------------
    4) Reorders event sections
---------------------------------------------*/

/*Sets the Sessions section as the first visual element*/
ob-page-event section.section[aria-labelledby="eventSessions"] {
    order: 1;
}

/* Sets the Information section as the second visual element*/
ob-page-event section.section[aria-labelledby="eventInformation"] {
    order: 2;
}

/*Changes the tab panel display to Flexbox to enable child reordering*/
ob-page-event mat-tab-nav-panel {
    display: flex;
    flex-direction: column;
}

/*---------------------------------------------------------------------------------------------
    5) UI Bug Fix: Adjusts calendar cell spacing and price typography (Desde - 00.000,00 COP)
----------------------------------------------------------------------------------------------*/

/*Reduces font size for 'price-from' label to fit within calendar cells*/
.ob-calendar .price-from {
    font-size: 9px;
}

/*Adjusts 'price-value' size for better legibility in tight spaces*/
.ob-calendar .price-value {
    font-size: 11px;
}

/*Fixes layout overflow in calendar body cells*/
.ob-calendar .mat-calendar-body-cell-container .mat-calendar-body-cell .mat-calendar-body-cell-content:has(~.price) {
    padding-bottom: 27px !important;
}

/*Mobile-only UI bug fix- These styles only apply to screens with a width of 768px or less*/

@media only screen and (max-width: 768px) {

    /*Adjusts 'price-value' size for better legibility in tight spaces*/
    .ob-calendar .price-value {
        font-size: 8px;
    }

    /*Fixes layout overflow in calendar body cells*/
    .ob-calendar .mat-calendar-body-cell-container .mat-calendar-body-cell .mat-calendar-body-cell-content:has(~.price) {
        padding-bottom: 10px !important;
    }
}