/*mobile version*/

body {
    background-color: #222020;
}

.page {
    max-width: 1250px;
    border-radius: 10px;
    margin: 20px auto 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #333030;
    font-family: Arial;
}

.personalia {
    background: url('../images/banner.jpg') no-repeat center;
    background-size: cover;
    border-radius: 10px;
    margin: 5px 20px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.personalia h1 {
    margin-top: 10px;
    margin-bottom: 1px;
}

.profile {
    width: 100%;
}

.profile h3 {
    color: rgba(39, 140, 39, 0.96);
    margin-top: 1px;
    margin-bottom: 1px;
}

.person-logo {
    border-radius: 50%;
    margin: 10px 0px 10px 0px;
    width: 20%;
    max-width: 150px;
    animation: glow 3s ease alternate;
}

.profile-content {
    background-color: white;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 15px;
}

.profile-personalia {
    background-color: white;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 14px;
}

.profile-content__category--hidden-mobile h4{
    margin-top: 2px;
    margin-bottom: 2px;
}

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

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

.profile-personalia__header-skills--hidden-mobile {
    display: none;
}

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

.profile-content__institute {
    color: rgba(39, 140, 39, 0.96);
    margin-top: 0px;
    font-size: 14px;
}

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

@media only screen and (min-width: 800px) {
    .personalia {
        max-height: 20vh;
        min-height: 200px;
    }

    .profile-personalia__divider {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .profile-personalia__header-personalia {
        width: 50%;
    }

    .profile-personalia__header-personalia hr{
        margin-right: 5px;
    }

    .profile-personalia__header-skills--hidden-mobile hr{
        width: 100%;
    }

    .profile-personalia__category {
        width: 50%;
    }

    .profile-personalia__skills {
        width: 50%;
    }

    .profile-personalia__header--hidden-computer {
        display: none;
    }

    .profile-personalia__header-skills--hidden-mobile {
        width: 50%;
    }

    .profile-personalia__header-skills--hidden-mobile {
        display: block;
    }

    /*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;
        justify-content: space-between;
    }
    
    .profile-content__category-subtitle {
        margin-bottom: 1px;
        margin-top: 1px;
    }

    .profile-personalia__header-divider {
        display: flex;
        flex-direction: row;
    }

    .profile-personalia__header-divider h3 {
        width: 50%;
    }

    .profile-content__category-title__hidden-mobile {
        display: flex;
        color: rgba(39, 140, 39, 0.96);
    }

    .profile-personalia__category-divider {
        display: none;
    }
}


/*student uitwerking*/

/* GDPR Form Styling */
.gdpr-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 10px auto;
    border: 2px solid white;
    border-radius: 15px 15px 15px 15px;
    background: #333030;
    color: white;
}

@media only screen and (min-width: 800px) {
    .gdpr-consent {
        width: 40%;
    }
}

.gdpr-consent__description {
    display: flex;
    justify-content: center;
}

.gdpr-consent__choice {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    width: 100%;
}

.gdpr-consent__choice > button {
    background-color: #333030;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid white;
    width: 100px;
    color: white;
}

.hide { display: none; }

.show { display: block; }