/*mobile version*/

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    height: 50%;
    flex-wrap: wrap;
}

.personalia {
    background-color: #7379bd;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.personalia li {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}


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

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

.person-name{
    font-size: 30px;
}

.list-style-type-none {
    list-style-type: none;
    padding: 0;
}

.list-skills li{
    margin-bottom: 10px;
}

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

.profile-content__category {
    margin-bottom: 40px;
}

.profile-content__category-title {
    color: rgba(36, 52, 154, 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(36, 52, 154, 0.68);
    margin-top: 0px;
    font-size: 14px;
}

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

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

.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: #95b1ea;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.gdpr-consent__button--accept:hover {
    background-color: #5a8aec;
    cursor: pointer;
}

.gdpr-consent__button--reject {
    background-color: #95b1ea;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(80, 78, 76, 0.98);
}

.gdpr-consent__button--reject:hover{
    background-color: #5a8aec;
    cursor: pointer;
}

.hide{
    display: none;
}

.show{
    display: block;
}

.button {
    font-size: 25px;
    background-color: #95b1ea;
    padding: 10px;
    border-radius: 60px;
    border: 4px solid #000000;
    margin-bottom: 20px;
}

.button:hover {
    background-color: #5a8aec;
    cursor: pointer;
}

.contact-form {
    padding: 10px;
    margin: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    display:block;
}

.contact-form__element{
    flex-direction: row;
    margin: 15px 0px 15px 0px;
    font-size: 20px;
}

.contact-form__element input{
    font-size: 20px;
}

.contact-form__element textarea{
    font-size: 20px;
}


/* 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;
}

.captcha-rebus {
    display: block;
    margin-bottom: 20px;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

    .page {
        flex-direction: row;
    }

    .person-name{
        order: -1;
        font-size: 50px;
    }

    .person-logo{
        margin-bottom: 30px;
        width: 15%;
    }

    .button{
        font-size: 30px;
    }

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


}