.programme {
    font-weight: bold;
}

/* Hide swoosh for the program page*/
.swoosh {
    display: none !important;
}

.header {
    font-size: min(16vw, 120px);
    display: flex;
    justify-content: center;
    height: min(25vw, 200px);
}

.blue {
    background-color: #0191B4;
    color: white;
}

.white {
    background-color: #ffffffd1;
    color: #003a67;
}

.schedule {
    display: flex;
}

.schedule-location, .time {
    flex: 1;
    background: rgba(255, 255, 255, 0.3);
    margin-left: 5px;
    padding-top: 15px;
    margin-right: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
}

.filled-slot, .empty-slot, .column-header {
    display: flex;
    margin-bottom: 5%;
    padding: 30px 20px;
    border-radius: 10px;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 19px;
    overflow: hidden;
}

.column-header {
    height: 75px;
    font-weight: bolder;
    font-size: 21px;
}

.filled-slot {
    cursor: pointer;
    text-decoration: underline;
}

.filled-slot:hover {
    filter: brightness(90%);
}

.shadow {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    display: flex;
    justify-content: center;
}

.popup {
    width: 80%;
    height: 65%;
    background: white;
    border-radius: 5px;
    margin-top: 10%;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 !important;
}

.closer {
    cursor: pointer;
    width: 25px;
    height: 25px;
    position: absolute;
    top: -10px;
    right: -10px;
    background: url("../img/closer.svg");
    background-size: contain;
    z-index: 1;
}

.popup .person {
    overflow: hidden;
    border-radius: 5px 0 0 5px;
}

.popup .person .image {
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.popup .person span {
    display: block;
    text-align: center;
    padding: 20px 10px;
    font-size: 23px;
}

.popup .bio {
    height: 100%;
    overflow-y: scroll;
    padding: 10px;
}

.popup .bio span {
    display: block;
}

.popup .description {
    margin-top: 10px;
}

.popup .description:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #003a67;
}

.popup .description:last-child {
    padding-bottom: 20px;
}

.popup .title {
    text-align: center;
    width: 100%;
    font-size: 23px;
}

#accordion {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

#accordion .card {
    margin-bottom: 10px;
}

#accordion .card-header {
    text-align: center;
    background-image: linear-gradient(120deg, #0191B4 40%, #D3DD18);
}

#accordion .filled-card {
    height: auto;
}

#accordion .filled-card .underlined, #accordion .empty-card .underlined {
    text-decoration: underline;
    color: #0191B4;
}

.desktop-schedule {
    display: flex;
}

.mobile-schedule {
    display: none;
}

.schedule-wrapper {
    padding: 50px 50px 150px;
    background-image: linear-gradient(120deg, #0191B4, #D3DD18);
}

@media screen and (max-width: 769px) {
    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: flex;
    }

    .schedule-wrapper {
        padding: 0;
    }

    .popup {
        height: 85%;
        position: absolute;
    }

    .popup .person {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .popup .person .image {
        width: 50%;
        padding-bottom: 50%;
        border-radius: 100%;
        background-position: center !important;
        background-size: contain !important;
    }

    .popup .bio {
        margin-top: 10px;
        padding-top: 0;
        overflow: hidden;
    }

    .popup .bio .title {
        font-size: 25px;
        position: sticky;
        top: 0;
    }
}

@media screen and (min-width: 769px) {
    .popup .person {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .popup .person .image {
        flex-grow: 1;
        background-position: center !important;
    }
}

@media screen and (max-width: 769px) {
    .popup .bio {
        height: 57%;
        overflow-y: scroll;
    }
}
