/*mobile version*/

body {
    background-color: rgb(9, 8, 8);
}
.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    /*! margin-right: -16px; */
    
}

#image{
    margin-top: 10px;
    width: 60px;;
    padding: 20px;
    font-weight: 400;
    padding-bottom: 5px;
    height: 40px;
    user-select: none;
    text-decoration:line-through;
    font-style: italic;
    font-size: x-large;
    border: 2px solid;
    margin: 10px;
    
     
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }

  ul.horizontal {
    list-style-type: none;
    margin: 3px;
    padding: 0px;
    overflow: hidden;
    background-color: #333;
    display: flex;
    border-radius: 5px;
  }
  ul.horizontal li a.active {
    background-color: rgb(37, 145, 112);
  }
  ul.horizontal li a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;

  }
.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: #030a18;
    color :#a9b3bd;
}

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

.input-field {
    background-color:rgb(17, 109, 81);
    border: 1px;
    border-radius: 15px;
}

.contact {
    background-color: #333;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    align-items: center;
    color: #f3f3f3;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid rgb(37, 145, 112); /* Blue */
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.form-contactpagina__inputelement {
    align-items: center;
    padding: 2px;
}

#message {
    width: 50%;
    height: 150px;
    box-sizing: border-box;
    resize: none;
}

.personalia {
    background-color: rgb(37, 145, 112);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
        /*! padding: 5px; */
    margin: 3px;
}

.profile {
    background-color: #333;
    margin: 3px;
    border-radius: 5px;
}

.person-logo {
    border: 4px solid black;
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 20%;
}

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

.profile-content__category-title {
    color: rgb(204, 212, 210);
}

hr {
    color: rgb(17, 109, 81);
}

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

.profile-content__element {
    display: flex;
    flex-direction: column;
    color: rgb(201, 195, 195);
}

.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__description {
    color: #a9b3bd;
}

.profile-content__project-description {
    color: #a9b3bd;
    font-size: 14px;
}
.profile-content__period {
    display: none;
}

.profile-content__institute {
    color: rgb(37, 145, 112);
    margin-top: 0px;
    font-size: 14px;
}

.profile-content__institute-project {
    color: rgb(37, 145, 112);
    font-size: 14px;
}

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

    .page {
        flex-direction: row;
    }

    .personalia {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        /*! padding: 5px; */
        margin: 3px;
    }

    .profile {
    margin: 3px;
    border-radius: 5px;
    }

    .contact {
        width: 100%;
        margin: 3px;
        border-radius: 5px;
    }

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

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

}


/*student uitwerking*/

