/*mobile version*/

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

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

.personalia-content {
    padding: 15px;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.personalia-element {
    display: flex;
    flex-direction: column;
}

.personalia-content__detail {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.personalia-content__subdetail {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 2px;
    margin-top: 0px;
}

.personalia-content__titel {
    color: rgba(34, 41, 138, .98);
}

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

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

.person-name {
    color: black;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 2px;
    margin-top: 0px;
}

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

.profile-content__category-title {
    color: rgba(34, 41, 138, .98);
}

.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__skill {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 2px;
    margin-top: 6px;
}

.profile-content__period {
    display: none;
}

.profile-content__institute {
    color: rgba(34, 41, 138, .98);
    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*/
/*Opmaak GDPR*/
.cookies {
    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: #faf8f8;
}

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

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

.gdpr-consent__button--reject {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid gray;
}

.hide{
    display: none;
}

.show{
    display: block;
}


/*Contactpagina*/
.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    color: rgba(34, 41, 138, .98);
}

.form-contactpagina {
    background-color: #6786b53b;
    border-radius: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: -20px;
    margin-top: -15px;
    margin-bottom: 10px;
}

.form-contactpagina__inputelement{
    display: flex;
    flex-direction: row;
    margin: 15px 0px 15px 0px
}

.fx-col{
    flex-direction: column;
}

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

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

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

    box-sizing: border-box;
}

input[id="phonenumber"] {
    appearance: none;

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

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

    box-sizing: border-box;
}

input[id="subjectMessage"] {
    width: 100%;
    border: 1px solid #333;
    margin: 0;

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

    box-sizing: border-box;
}

textarea[id="message"] {
    width: 100%;
    border: 1px solid #333;
    margin: 0;

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

    box-sizing: border-box;
}

button[id="sendFormButton"] {
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid rgb(9, 95, 9);
    color: rgba(0, 0, 0);
    background-color: rgba(0, 128, 0, 0.5);
}

button:disabled {
    color: rgba(0, 0, 0, .3);
    background-color: #fdd ;
}

.captcha-span {
    font-size: 12px;
    color: red;
}

.form-inputField {
    padding: 4px;
    border-radius: 10px;
}

.button-container {
    margin-bottom: 5px;
    border-radius: 10px;
  }


/* This is our style for the invalid fields */
input:invalid {
    border: 1px solid #900;
    background-color: rgb(247, 226, 226);
}

input:focus:invalid {
    outline: none;
}

textarea:invalid {
    border-color: #900;
    background-color: rgb(247, 226, 226);
}

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

/* loader */
.loader {
    margin-right: 5px;
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

