/*mobile version*/

body {
    margin: 0;
    padding: 0;
}
.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
}

p * {
    display: block;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 100px;
    margin-top: 50px ;
}

input[type="email"] {
    appearance: none;

    width: 100%;
    border: 1px solid #333;
    margin: 0;

    font-family: inherit;
    font-size: 90%;

    box-sizing: border-box;
}

input[type="submit"] {
    margin-top: 10px;
}

/* This is our style for the invalid fields */
input:invalid {
    border-color: #900;
    background-color: #fdd;
}

input:focus:invalid {
    outline: none;
}

/* This is the style of our error messages */
.error {
    width: 100%;
    padding: 0;

    font-size: 80%;
    color: white;
    background-color: #900;
    border-radius: 0 0 5px 5px;

    box-sizing: border-box;
}

.error.active {
    display: block;
    margin-bottom: 4px;
    padding: 0.3em;
}

.personalia {

    width: 50%;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #233142;
}

.background {
    background-color: #233142
}

.profile {

    width: 50%;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #455d7a;

}

.person-logo {
    border: 4px solid black;

    margin: 15px 0px 15px 0px;
    width: 30%;
    height: 30%;
    animation: alternate;
}

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

.profile-content__category-title {
    color: rgba(255, 255, 255, 0.96);

}

.profile-content__category--hidden-mobile {
    display: none;
}

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

.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: rgba(255, 255, 255, 0.96);
    margin-top: 0px;
    font-size: 14px;

}

@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;
        justify-content: space-between;
    }

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

}



/*student uitwerking*/

.gdpr-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    margin: 5px;
    border: 2px solid gray;
    border-radius: 15px 15px 15px 15px;
    background: #ffffff;
}

.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__button--accept {
    background-color: #228622;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
    cursor: pointer;
}

.gdpr-consent__button--accept:hover {
    background-color: #02ff02;
}

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
    background-color: #ff5653;
    cursor: pointer;
}

.gdpr-consent__button--reject:hover {
    background-color: #6c0101;
}


.hide{
    display: none;
}

.show{
    display: block;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
li {
    display: inline;
    float: left;

}

a {
    display: block;
    padding: 8px;
    background-color: #dddddd;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #e3e3e3;
}

li {
    float: left;
}

li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #f95959;
}

