/*mobile version*/

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

.personalia {
    background-color: rgb(152, 45, 41);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    background-color: #faf8f8;
    width: 100%;
}

.person-name {
    color: #fff;
}

.person-logo {
    border: 4px solid #fff;
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 20%;
    animation: glow 3s ease alternate;
}

.profile-content {
    font-size: 20px;
}

.profile-content__category-title {
    color: #fff;
    display: flex;
    padding-top: 1rem;
    justify-content: center;
    align-items: center;
}

.profile-content__category {
    background-color: rgba(166,41,36, 1);
    border-radius: 12px;
}

.profile-content__description{
    padding-left: 20px;
}


.profile-content__category--hidden-mobile {
    display: none;
    background-color: rgba(166,41,36, 1);
    border-radius: 12px;
}

.profile-content__element {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.profile-content__element--hidden-mobile {
    display: flex;
    flex-direction: column;
    display: none;
}

.profile-content__title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.profile-content__period {
    display: none;
}

.profile-content__institute {
    color: #333;
    margin-top: 0px;
    font-size: 14px;
}


/* cookie popup content */
.cookie-concent {
    position: fixed;
    bottom: 0.7rem;
    width: 100vw;
    padding: 1rem;
    background-color: rgb(152, 45, 41);
    box-shadow:  0px 4px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.5s;
}

.cookie-concent > p {
    margin-top: 0;
    color: white;
}

.cookie-concent__options {
    display: flex;
    justify-content: space-around;
}

.button-success {
    color: #fff;
    border-radius: 100vmax;
    font-size: 1.15rem;
    padding: 0.25rem 0.75rem;
    background-color: #188732;
    border-color: #12802c;
}

.button-success:hover {
    color: #fff;
    background-color: #0f481b;
    border-color: #0f5f21;
}

.button-secondary {
    font-size: 1.15rem;
    border-radius: 100vmax;
    padding: 0.25rem 0.75rem;
    color: #fff;
    background-color: #393d42;
    border-color: #5b6269;
    transition: all 1s;
}

.button-secondary:hover {
    color: #fff;
    background-color: #4c5258;
    border-color: #43494e;
}

.cookie-concent-title{
    color: white;
    padding: 0;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}


@media only screen and (min-width: 800px) {

    .page {
        flex-direction: row;
    }

    .person-name{
        order: -1;
    }

    .profile-content__category--hidden-mobile{
        display: flex;
        flex-direction: column;
    }

    /*fix: anders als stipje zichtbaar*/
    .profile-content__category--hidden-mobile hr{
        width: 100%;
    }

    .profile-content__element--hidden-mobile {
        display: flex;
    }

    .profile-content__element-header{
        display: flex;
        gap: 3rem;
        justify-content: space-between;
    }

    .profile-content__period {
        font-size: 12px;
        color: #5c6166;
        display: flex;
    }

    .cookie-concent__options {
        justify-content: start;
        gap: 1.25rem;
    }

}

.profile-content-accordion {
    position: relative;
    display: block;
    background-color: white;
    border: 1px solid #e0e0e0;
}


.profile-content-accordion__item{
    display: block;
}

.profile-content-accordion .profile-content-accordion__content {
    display: block;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease, padding 0.3s linear;
}

.profile-content-accordion .profile-content-accordion__content p {
    padding: 20px;
    margin: 0;
}

.profile-content-accordion .profile-content-accordion__trigger {
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: all 0.1s;
}

.profile-content-accordion .profile-content-accordion__trigger:hover, .profile-content-accordion__trigger:focus {
    filter: brightness(1.2);
}


.profile-content-accordion .profile-content-accordion__title {
    position: relative;
    display: block;
    margin: 0;
    padding: 10px;
    font-size: 1rem;
    background-color: #900;
    color: white;
    border:  1px solid #900;
    width: 100%;
}