/*import*/
/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    /*Fonts*/
    --theme-font-family: "Rubik", sans-serif;
    /*Navbar colors*/
    --ob-nav-text-color: #000000;
    --ob-nav-bg-color: #fff;
    /*color primary*/
    --theme-primary-50: #e0fff6;
    --theme-primary-100: #b3ffeb;
    --theme-primary-200: #80ffde;
    --theme-primary-300: #4dffd2;
    --theme-primary-400: #26ffca;
    --theme-primary-500: #7fffdd;
    --theme-primary-600: #00ffb5;
    --theme-primary-700: #00e6a2;
    --theme-primary-800: #00b377;
    --theme-primary-900: #00794d;
    --theme-primary-A100: #b3ffeb;
    --theme-primary-A200: #80ffde;
    --theme-primary-A400: #00794d;
    --theme-primary-A700: #005c3a;
    /*color contrast*/
    --theme-primary-contrast-50: #333333;
    --theme-primary-contrast-100: #333333;
    --theme-primary-contrast-200: #333333;
    --theme-primary-contrast-300: #333333;
    --theme-primary-contrast-400: #333333;
    --theme-primary-contrast-500: #333333;
    --theme-primary-contrast-600: #333333;
    --theme-primary-contrast-700: #333333;
    --theme-primary-contrast-800: #FFFFFF;
    --theme-primary-contrast-900: #FFFFFF;
    --theme-primary-contrast-A100: #333333;
    --theme-primary-contrast-A200: #333333;
    --theme-primary-contrast-A400: #FFFFFF;
    --theme-primary-contrast-A700: #FFFFFF;
}

/*==============================================================
    INDEX
    1) Top Bar
    2) OB Footer
    3) Custom footer
    4) Hidden elements
    5) Integration description event - WAH
================================================================*/

/*---------------------------------------------
    1) 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;
}

/*---------------------------------------------
    2) OB Footer
---------------------------------------------*/
/*Dark version subfooter*/
/*Background subfooter*/
ob-footer.main-footer {
    background-color: #7fffdd !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: #333333 !important;
}

/*Button language links subfooter*/
/*Language & icon */
ob-footer.main-footer span.mdc-button__label,
ob-footer.main-footer mat-icon.mat-icon {
    color: #333333 !important;
}

/*Border*/
ob-footer.main-footer ob-button>.mat-mdc-outlined-button {
    border: 1px solid#333333 !important;
}

/*Text powered by*/
ob-footer.main-footer section.items-center {
    color: #333333;
}

/*---------------------------------------------
    3) Custom footer
---------------------------------------------*/
.footers-container {
    background-color: #FFFFFF;
}

.custom-footer {
    position: relative;
    height: 249px;
    width: 100%;
}

.custom-footer img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

/*Mobile*/
@media only screen and (max-width: 40.063em) {
    .custom-footer {
        display: none;
    }
}

/*---------------------------------------------
    4) Hidden elements
---------------------------------------------*/

/*Esconder PRESHOW zona de precio ---EVENTO 45581 HOUDINI--*/
.eventId-45581 ob-pricezone-box.filter-pz.interactive:last-child {
    display: none;
}

/*---------------------------------------------
    5) Integration description event - WAH
---------------------------------------------*/
.custom-contact-block {
    width: 100%;
    text-align: left;
}

/*Titles*/
.title-custom-contact {
    font-weight: 700;
    line-height: 1.3;
    font-size: 1.2rem;
    font-family: "adineuePRO-Bold", sans-serif !important;
}

/*CTA container*/
.contact-cta-box {
    display: flex;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-bottom: 1.5rem;
}

/*Grey module (icon + text)*/
.contact-module-text {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex: 1;
}

/*Icon box*/
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 3px;
    padding: 8px;
    flex-shrink: 0;
}

/*Icon*/
.cta-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/*Text box*/
.text-box {
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 3px;
    padding: 7px 12px;
    flex: 1;
}

/*Text*/
.text-box p {
    margin: 0;
    line-height: 1.5;
}

/*CTA button*/
.cta-call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #CC1424;
    color: #fff;
    border-radius: 3px;
    padding: 12px 16px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-call-button:hover {
    background-color: #D54248;
}

/*CTA icon*/
.cta-icon-cta {
    width: 16px;
    height: 16px;
}

.contact-cta-box .text-box,
.contact-cta-box .icon-box {
    background-color: #FAE3E5;
}

/*Links*/
.contact-link {
    color: #CC1424;
}

/*Mobile*/
@media (max-width: 768px) {
    .contact-cta-box {
        flex-direction: column;
    }

    .cta-call-button {
        width: 100%;
        justify-content: center;
    }
}