    /*import*/
    @import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

    :root {
        /*theme COLOR*/
        --theme-menu-text-color: #000;
        --theme-menu-bg-color: #000;
        /*NAVBAR COLORS*/
        --ob-nav-text-color: #000;
        --ob-nav-bg-color: #fff;
        /*Fonts*/
        --theme-text-2: #000;
        --theme-text-1: #000;
        --theme-font-family: "Inter", sans-serif;
        /*Primary colors*/
        --theme-primary-50: #e3f1f4;
        --theme-primary-100: #b8dbf2;
        --theme-primary-200: #8bc2de;
        --theme-primary-300: #5eaaca;
        --theme-primary-400: #3b97b1;
        --theme-primary-500: #157D9D;
        --theme-primary-600: #157A99;
        --theme-primary-700: #106a87;
        --theme-primary-800: #0c5a75;
        --theme-primary-900: #063e55;
        --theme-primary-A100: #a2e4ff;
        --theme-primary-A200: #6fd3ff;
        --theme-primary-A400: #3cc2ff;
        --theme-primary-A700: #22b9ff;
        --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;
        /*Obfooter: logo filter*/
        --ob-custom-logo-filter: brightness(20);
    }

    /*=================================================================================================
        INDEX
        1) Top Bar
        2) Ob Footer
        3) Appends an Apple Pay & Google Pay logo badge after the payment method label
    ==================================================================================================*/

    /*------------------------------------------------------------------------------------------------
        1) Top Bar
    -------------------------------------------------------------------------------------------------*/

    /*Ajuste logo navbar login*/
    mat-toolbar.mat-toolbar.ob-top-bar img {
        max-height: 4rem;
        width: auto;
    }

    /*------------------------------------------------------------------------------------------------
        2) Ob Footer
    -------------------------------------------------------------------------------------------------*/

    ob-footer.main-footer {
        background-color: #157D9D !important;
    }

    /*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: #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;
    }

    /*------------------------------------------------------------------------------------------------
        3) Appends an Apple Pay & Google Pay logo badge after the payment method label
    -------------------------------------------------------------------------------------------------*/

    .checkout ob-payment-methods mat-radio-button[id^="payment-method-redsys-"] .label-container>div::after {
        content: "";
        display: inline-block;
        width: 80px;
        height: 24px;
        background-image: url('https://client-dists-resources.s3.eu-west-1.amazonaws.com/channels-client/tarracoarena/assets/icons/appelpay_googlepay.png');
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 8px;
    }