/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --theme-font-family: 'Roboto', sans-serif;
    /*color-theme*/
    --theme-primary-50: #F7E5E1;
    --theme-primary-100: #EBBDB4;
    --theme-primary-200: #DE9282;
    --theme-primary-300: #D1664F;
    --theme-primary-400: #C7452A;
    --theme-primary-500: #BD2404;
    --theme-primary-600: #B72003;
    --theme-primary-700: #AE1B03;
    --theme-primary-800: #A61602;
    --theme-primary-900: #980D01;
    --theme-primary-A100: #FFC6C3;
    --theme-primary-A200: #FF9490;
    --theme-primary-A400: #FF635D;
    --theme-primary-A700: #FF4B44;
    /*color-contrast*/
    --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;
}

/*=================================================================================================
    INDEX
    1) Appends an Apple Pay & Google Pay logo badge after the payment method label
==================================================================================================*/

/*------------------------------------------------------------------------------------------------
    1) Appends an Apple Pay & Google Pay logo badge after only the payment method redsys 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;
}