html{
    background: #47ccff;
}

.programme{
    font-weight: bold;
}

.swoosh{
    background: url("../img/swooshes/programme.svg"), #47ccff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top -2px left;
    height: 13vw;
}

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

.subtitle{
    font-size: min(4.5vw, 38px);
    display: flex;
    justify-content: center;
    height: 100px;
}

.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;
}

.filled-slot, .empty-slot, .column-header{
    display: flex;
    margin-bottom: 5%;
    padding: 30px 20px;
    border-radius: 3px;
    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: 1031;
    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/icons/closer.svg");
    background-size: contain;
    z-index: 1;
}

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

.popup .person .image{
    background-size: cover !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;
}

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

#accordion .empty-card{
    height: 30px;
}

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

.desktop-schedule{
    display: flex;
}

.mobile-schedule{
    display: none;
}

.schedule-wrapper{
    padding: 50px 50px 150px;
}

@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;
    }
}