<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  */
/* Start for FAQ */
/*  */

div.faq_header {
    background-image: url(/z/billetreduc/img/faqs/faq_header_background.svg);
    height: 220px;
    background-position: center;
    background-size: cover;
    margin: 0 -80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.faq_header &gt; img {
    width: 55px;
    height: 55px;
    position: absolute;
    transform: translateY(-50px) rotate(-6.5deg);
    animation: faq_header_animation .3s ease-out 10ms 1;
    animation-delay: .8s;
}

@keyframes faq_header_animation  {
    0% {
        transform: translateY(-20px) rotate(-6.5deg);
    }

    100% {
        transform: translateY(-50px) rotate(-6.5deg);
    }
}

div.faq_header &gt; h1 {
    font-size: 48px;
    font-weight: 700;
    rotate: 1deg;
    padding: 0px 12px;
    background-color: #ff4130;
    color: white;
    font-family: 'OldschoolGroteskBold', sans-serif;
}

div.faq_body {
    padding: 48px 0 72px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1440px;
    margin: auto;
}

div.faq_body div.faq_category_header {
    background-image: url('/z/billetreduc/img/faqs/faq_category_bg1.svg');
    background-size: cover;
    height: max-content;
    border-radius: 8px;
    display: flex;
    padding: 24px 32px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid #0000001A;
    gap: 8px;
}

    div.faq_body div.faq_category_header::after {
        content: url('/z/billetreduc/img/faqs/category_arrow_up.svg');
        transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.92);
        opacity: 0.3;
        height: 20px;
    }

    div.faq_body div.faq_category_header:hover::after {
        opacity: 1;
    }

    div.faq_body div.faq_category_header.open::after {
        transform: rotate(-180deg);
        opacity: 1;
        height: 20px;
    }

div.faq_body div.faq_category_header &gt; h2 {
    text-transform: uppercase;
    font-size: 20px;
    color: #FF4130;
    position: relative;
    font-family: 'OldschoolGroteskBold', sans-serif;
    --stroke-color: white;
    --stroke-width: 3px;
    user-select: none;
    text-shadow: calc(var(--stroke-width) * 1) calc(var(--stroke-width) * 0) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.9) calc(var(--stroke-width) * 0.4) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.7) calc(var(--stroke-width) * 0.7) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.4) calc(var(--stroke-width) * 0.9) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0) calc(var(--stroke-width) * 1) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.4) calc(var(--stroke-width) * 0.9) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.7) calc(var(--stroke-width) * 0.7) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.9) calc(var(--stroke-width) * 0.4) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -1) calc(var(--stroke-width) * 0) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.9) calc(var(--stroke-width) * -0.4) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.7) calc(var(--stroke-width) * -0.7) 0
      var(--stroke-color),
    calc(var(--stroke-width) * -0.4) calc(var(--stroke-width) * -0.9) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0) calc(var(--stroke-width) * -1) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.4) calc(var(--stroke-width) * -0.9) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.7) calc(var(--stroke-width) * -0.7) 0
      var(--stroke-color),
    calc(var(--stroke-width) * 0.9) calc(var(--stroke-width) * -0.4) 0
      var(--stroke-color);
}

div.faq_body div.faq_category_body {
    flex-direction: column;
    gap: 10px;
    display: none;
    margin-top: 20px;
}

    div.faq_body div.faq_category_body.show {
        display: flex;
    }

div.faq_body div.faq_article {
    border: 1px solid #EBEBEB;
    background-color: #F7F7F7;
    border-radius: 8px;
}

div.faq_body div.faq_article_header {
    padding: 24px 28px;
    height: max-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

    div.faq_body div.faq_article_header:after {
        content: url(/z/billetreduc/img/faqs/article_plus.svg);
        height: 24px;
    }

    div.faq_body div.faq_article_header.open:after {
        content: url(/z/billetreduc/img/faqs/article_minus.svg);
        height: 24px;
    }

    div.faq_body div.faq_article_header:hover {
        color: #FF4130;
    }

div.faq_body div.faq_article_header &gt; div.faq_article_header_text {
    display: flex;
    align-items: center;
    gap: 8px;
}

div.faq_body div.faq_article_header h3 {
    font-size: 16px;
    font-family: 'OldschoolGroteskMedium', sans-serif;
}

div.faq_body div.faq_article_body {
    padding: 24px 32px;
    border-top: 1px solid #EBEBEB;
    display: none;
    flex-direction: column;
    gap: 24px;
}

    div.faq_body div.faq_article_body.show {
        display: flex;
    }

div.faq_body div.faq_article_body &gt; div.faq_article_content &gt; ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

div.faq_body div.faq_article_body &gt; div.faq_article_content p {
    line-height: 21.5px;
}

div.faq_body div.faq_article_body &gt; div.faq_article_content a {
    color: #FF4130;
}

div.faq_body div.faq_article_body &gt; div.faq_article_content div.faq_article_images {
    display: flex;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
}

div.faq_body div.faq_article_body &gt; div.faq_article_content img {
    margin-top: 16px;
    border-radius: 8px;
    border: 1px solid #0000001A;
    max-width: 100%;
}

div.faq_body div.faq_article_body &gt; div.faq_article_content img.mobile {
    display: none;
}

div.faq_body div.faq_article_body &gt; div.faq_article_feedback {
    padding: 16px 24px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

div.faq_body div.faq_article_body &gt; div.faq_article_feedback &gt; a {
    padding: 6px 16px;
    border: 1px solid #D3D3D3;
    border-radius: 50px;
    text-decoration: none;
    color: black;
    line-height: 16px;
    cursor: pointer;
}

    div.faq_body div.faq_article_body &gt; div.faq_article_feedback &gt; a:hover {
        background-color: #DDDDDD;
    }

    div.faq_body div.faq_article_body &gt; div.faq_article_feedback &gt; a:active {
        border-color: black;
    }


div.modal.submit_feedback div.order_list_panel, div.modal.submit_feedback div.concern_list_panel {
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
    position: absolute;
    top: 48px;
    background: white;
    box-shadow: 0px 4px 23px 0px #0000001A;
    display: none;
    z-index: 3;
    max-height: 450px;
    overflow-y: scroll;
}

div.modal.submit_feedback ul#feedback_order_list, div.modal.submit_feedback ul#feedback_concern_list {
    padding: 0;
    list-style: none;
}

div.modal.submit_feedback ul#feedback_order_list &gt; li, ul#feedback_concern_list &gt; li {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
}

    div.modal.submit_feedback ul#feedback_order_list &gt; li:hover, ul#feedback_concern_list &gt; li:hover {
        background-color: #F7F7F7;
    }

div.modal.feedback_sent &gt; .modal_content {
    width: 480px;
}

div.modal.feedback_sent  .modal_body {
    padding: 32px 24px;
    gap: 16px;
    align-items: center;
    text-align: center;
}

div.modal.feedback_sent .modal_body &gt; div &gt; p {
    margin-top: 8px;
    color: #717171;
}

/*  */
/* End for FAQ */
/*  */

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

    div.faq_header {
        margin: 0 -12px;
        height: 150px;
    }

    div.faq_header &gt; img {
        width: 32px;
        height: 32px;
        transform: translateY(-28px) rotate(-6.5deg);
    }

    @keyframes faq_header_animation  {
        0% {
            transform: translateY(-10px) rotate(-6.5deg);
        }
    
        100% {
            transform: translateY(-28px) rotate(-6.5deg);
        }
    }
    
    div.faq_header &gt; h1 {
        font-size: 24px;
        font-weight: 500;
        padding: 4px 8px;
    }

    div.faq_body {
        padding: 24px 0 48px 0;
        gap: 8px;
    }

    div.faq_body div.faq_category_header {
        padding: 16px;
        margin-bottom: 8px;
    }

    div.faq_body div.faq_category_header &gt; h2 {
        font-size: 14px;
    }

    div.faq_body div.faq_article_header h3 {
        font-size: 14px;
    }

    div.faq_body div.faq_category_header &gt; span.stroke_header {
        font-size: 20px;
        line-height: 24px;
    }

    div.faq_body div.faq_category_body {
        gap: 8px;
        margin-top: 0;
    }

    div.faq_body div.faq_article_header {
        padding: 20px 16px;
    }

    div.faq_body div.faq_article_body {
        padding: 16px 16px;
        border-top: 1px solid #EBEBEB;
        gap: 16px;
    }

    div.faq_body div.faq_article_body &gt; div.faq_article_content img {
        display: none;
    }

    div.faq_body div.faq_article_body &gt; div.faq_article_content img.mobile {
        display: block;
    }

    div.faq_body div.faq_article_body &gt; div.faq_article_feedback {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    div.modal.feedback_sent &gt; .modal_content {
        width: calc(100% - 24px);
    }

}</pre></body></html>