:root {
    --red-gradient: linear-gradient(90deg, rgba(200,0,0,1) 0%, rgba(238,0,0,1) 50%, rgba(200,0,0,1) 100%);
}

* {
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    height: 100dvh;
//width: 100dvw;
}

main {
    background-size: cover;
    height: calc(94dvh - 30px);
    width: 100dvw;
    background-position: 50% 0%;
    display: flex;
    justify-content: center;
    background-color: white;
    transition: opacity 0.25s ease-in-out;
}

.viewport {
    height: 100%;
    width: 100%;
    overflow: scroll;
}

.world {
    height: 100%;
    position: relative;
    //width: calc((94dvh - 30px) * 1.96198651134);
}

.world-img {
    object-fit: cover;
    max-height: 100%;
    min-width: 100%;
}

.pin {
    filter: drop-shadow(30px 10px 4px rgba(0, 0, 0, 0.3));
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: 50px;
    left: 50px;
}

.infos-page {
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/infos.png");
    background-size: cover;
    background-position: center;
    display: flex;
}

.infos-page .left-spacer {
    width: 63%;
    height: 100%;
}

.infos-page .right {
    width: 37%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.accordion {
    margin: 50px 20px 0 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}

.accordion-item-content {
    display: none;
}

.accordion-item-header {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    background: var(--red-gradient);
    padding: 10px 10px;
    cursor: pointer;
    -webkit-box-shadow: inset 0px -5px 22px 1px rgba(0,0,0,0.11);
    -moz-box-shadow: inset 0px -5px 22px 1px rgba(0,0,0,0.11);
    box-shadow: inset 0px -5px 22px 1px rgba(0,0,0,0.11);
}

.accordion-item:first-child .accordion-item-header {
    border-radius: 10px 10px 0 0;
}

.accordion-item:last-child .accordion-item-header {
    border-radius: 0 0 10px 10px;
}

.accordion-item:last-child.active .accordion-item-header {
    border-radius: 0 0 0 0;
}

.accordion-item:last-child .accordion-item-content {
    border-radius: 0 0 10px 10px;
}

.accordion-item-arrow {
    height: 15px;
    object-fit: contain;
    margin-right: 20px;
}

.accordion-item.active .accordion-item-content {
    display: block;
}

.accordion-item-content {
    background-color: white;
    padding: 15px;
}

.accordion-item-cta-box {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.accordion-item-cta {
    border: solid 1px #EE0000;
    border-radius: 1000px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
}

.accordion-item-cta-arrow {
    height: 15px;
    object-fit: contain;
    margin-right: 4px;
}

@media screen and (max-width: 1024px) {
    .infos-page {
        background-position: -100px;
    }

    .infos-page .left-spacer {
        width: 0;
    }

    .infos-page .right {
        width: 100%;
    }
}

.standard-page {
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/halloffame.png");
    background-size: cover;
    background-position: center;
}


.live-page {
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/auditorium.png");
    background-size: cover;
    background-position: center;
    display: flex;
    position: relative;
}

.play-button-audi {
    position: absolute;
    height: 150px;
    object-fit: contain;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    cursor: pointer;
}

.program-page {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.program {
    display: flex;
    height: 70%;
    width: 100%;
}

.prog-left-arrow, .prog-right-arrow {
    width: 200px;
    background-color: rgba(242, 242, 242, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-prog {
    flex-grow: 1;
    height: 100%;
    background-color: rgba(242, 242, 242, 1);
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 20px;
}

.main-prog > * {
    height: 100%;
}

.main-prog-deco {
    width: 15%;
    border-right: solid 2px white;
}

.main-prog-deco-img {
    height: 100%;
    object-fit: contain;
}

.main-prog-prog {
    width: 85%;
    position: relative;
    height: 100%;
}

.main-prog-content {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.main-prog-tabs {
    transform: translate(0, -100%);
    position: relative;
    width: calc(100% + 20px);
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.main-prog-tab {
    width: calc(99% / 3);
    padding: 10px 15px;
    border-radius: 15px 15px 0 0;
    background: var(--red-gradient);
    color: white;
    text-align: center;
    filter: saturate(25%) brightness(1.50);
    cursor: pointer;
}

.main-prog-tab.active {
    filter: unset;
}

.main-prog-bottombar {
    background: var(--red-gradient);
    height: 40px;
    width: calc(100% + 20px);
    border-radius: 0 0 15px 15px;
    position: absolute;
    bottom: -60px;
    left: 0;
}

.event {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 15px
}

.top-line {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    width: 100%;
}

.dots {
    margin:0 5px;
}

.event-title {
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
}

.event-description {
    font-style: italic;
    color: #EE0000;
    flex-shrink: 1;
}

.bigarrow {
    width: 45%;
    object-fit: contain;
    cursor: pointer;
}

.mirrored-x {
    transform: scaleX(-1);
}

.event-hour {
    display: none;
}

.event-hours {
    min-width: 165px;
}


@media screen and (max-width: 1024px){
    .prog-left-arrow, .prog-right-arrow {
        display: none;
    }

    .main-prog-deco {
        display: none;
    }

    .main-prog-prog {
        width: 100%;
    }

    .main-prog-content {
        margin-top: -20px;
        height: 90%;
    }

    .event-hour {
        width: 60px;
        display: block;
    }

    .event-hours {
        display: none;
    }

    .dots {
        display: none;
    }

    .event-title {
        width: calc(100% - 60px);
        padding-left: 20px;
    }
}






.faq {
    width: 70%;
    height: 100%;
    overflow-y: scroll;
    margin: 0 auto;
    padding: 40px 0;
}

.faq * {
    color: white;
}

.faq-section {
    margin-bottom: 45px;
}

.faq-section-title {
    background: var(--red-gradient);
    border-radius: 15px;
    padding: 15px;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 15px;
    width: fit-content;
}

.faq-question {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.faq-question-box {
    margin-bottom: 25px;
}

@media screen and (max-width: 1024px){
    .faq {
        width: 95%;
    }
}

.knowledge-center {
    width: 70%;
    margin: 0 auto;
    margin-top: 30px
}

.knowledge-center-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--red-gradient);
    color: white;
    padding: 7px 15px;
}

.knowledge-center-section-header-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.knowledge-center-section-header-controls {
    display: flex;
}

.knowledge-center-section-header-controls img {
    height: 20px;
    object-fit: contain;
    margin-left: 20px;
    cursor: pointer;
}

.knowledge-center-section-content {
    height: 250px;
    background-color: rgba(0,0,0, 0.6);
    width: 100%;
    overflow-x: scroll;
    display: flex;
    align-items: center;
    scroll-behavior: smooth;
}

.knowledge-center-document {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.knowledge-center-document:not(:last-child) {
    margin-right: 25px;
}

.kc-thumb {
    width: 90px;
    object-fit: contain;
    margin-bottom: 10px;
}

.kc-title {
    color: white;
    font-size: 0.7rem;
    text-align: center;
    font-family: 'Helvetica Neue LT Std Cn', sans-serif;
}

.kc-author {
    color: #AAAAAA;
    font-size: 0.7rem;
    text-align: center;
    font-family: 'Helvetica Neue LT Std Cn', sans-serif;
}

@media screen and (max-width: 1024px){
    .knowledge-center {
        width: 98%;
    }

    .knowledge-center-section-content {
        overflow-y: hidden;
    }
}


.live-modal {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
}

.live-modal iframe {
    width: calc(60dvh / 9 * 16);
    height: 60%;
}

.simple-message-box {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.smb-left textarea {
    width: 350px;
    height: 70px;
    resize: none;
    border-radius: 5px;
    padding: 5px;
    border: solid 1px #EE0000;
    margin-right: 20px;
}

.smb-left p {
    display: none;
}

.smb-right button {
    padding: 10px 15px;
    background: var(--red-gradient);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    border: solid 1px #EE0000;
    cursor: pointer;
}

.smb-right button:hover {
    color: #EE0000;
    background: white;
}

@media screen and (max-width: 1024px){
    .simple-message-box {
        flex-direction: column;
        margin-top: 15px;
    }

    .smb-right button {
        margin-top: 15px;
    }

    .smb-left textarea {
        margin-right: 0;
    }

    .live-modal iframe {
        width: 90dvw;
        height: calc(90dvw / 16 * 9);
    }
}

.speaker {
    display: flex;
    align-items: center;
    height: calc(100% / 3);
    color: white;
    padding: 5px 0;
}

.speaker-pic {
    height: 100%;
    object-fit: cover;
    border-left: solid 10px #EE0000;
}

.speaker-bio {
    height: 100%;
    padding: 15px;
    overflow-y: scroll;
    font-size: 0.8rem;
    color: white;
    flex-grow: 1;
    background-color: #EE0000;
}

.speaker-left {
    width: 30%;
    text-align: right;
    padding-right: 15px;
    overflow-y: scroll;
    max-height: 100%;
}

.speaker-left::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.speaker-left {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.speaker-title {
    font-size: 0.8rem;
}

.speaker-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.speaker-main {
    height: 100%;
    width: 70%;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.speakers-list {
    width: 70%;
    margin-left: 100px;
    height: 100%;
    overflow-y: scroll;
    mask-image: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 75%, rgba(0,0,0,1) 100%);
    mask-mode: alpha;
    position: relative;
}

.speakers-list::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.speakers-list {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.inactive .speaker-bio {
    display: none;
}

.inactive {
    opacity: 0.6;
}

.up-arrow {
    position: absolute;
    left: 70%;
    top: 16.5%;
    transform: translate(-50%, -50%);
    width: 80px;
    object-fit: contain;
    cursor: pointer;
    z-index: 10;
}

.down-arrow {
    position: absolute;
    left: 70%;
    bottom: 10.5%;
    transform: translate(-50%, -50%);
    width: 80px;
    object-fit: contain;
    cursor: pointer;
    z-index: 10;
}

@media screen and (max-width: 1024px){
    .speakers-list {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sp-up, .sp-down {
        display: none;
    }

    .down-arrow, .up-arrow {
        bottom: 50%;
        height: 20px;
    }

    .down-arrow {
        transform: rotate(-90deg);
        right: -5px;
        left: unset;
    }

    .up-arrow {
        transform: rotate(-90deg);
        left: -5px;
        top: unset;
    }

    .speaker {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 95%;
    }

    .speaker-pic {
        height: 30%;
        width: 50%;
        border: none;
        margin: 10px auto;
    }

    .speaker-bio {
        height: 70%;
        width: 100%;
        border-radius: 5px;
    }

    .speaker-main {
        flex-direction: column;
        height: 70%;
    }

    .speaker-left {
        width: 100%;
        text-align: center;
    }


    .back-button {
        height: 45px !important;
    }
}

.noti {
    transform: translate(-50%, 0);
    position: absolute;
    left: 50%;
    padding: 10px;
    border-radius: 5px;
    background-color: #EE0000;
    font-weight: bold;
}

#secours-frame, #end, #interlude {
    width: 60dvw;
    object-fit: contain;
}
