/*mobile version*/

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

.personalia {
    background-color: #e7e8ec;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.personalia-img-text{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.personalia .personalia-gegevens #icon{
    width: 30px; 
    height: 30px;
    fill: #06BEBE;  
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2%;
    margin-top: 0px;
}

.personalia .personalia-gegevens{
    align-items: center;
    justify-content: center;
}

.personalia .personalia-gegevens .personalia-img-text{
    display: flex;
    align-items: center;
    margin: 3%;
}

.contactbutton{
    width: 200px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-radius: 2em;
    background-image: linear-gradient(#06BEBE, #AF3CFE, #06BEBE);
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.button__text, .button__icon {
    padding: 0 24px;
}

.contactme{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vaardigheden{
    background-color: #e7e8ec;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.vaardigheden .personalia-gegevens #rating{
    width: 30px;
    height: 30px;
    fill: #06BEBE;
}

.vaardigheden .personalia-gegevens .personalia-img-text{
    display: flex;
    justify-content: center;
    align-items: center;
}

.vaardigheden .personalia-gegevens{
    display: flex;
    align-items: center;
    justify-content: center;
}

.vaardigheden-context{
    position: relative;
}

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

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

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

.profile-content__category-title {
    color: #06BEBE;
}

.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: #06BEBE;
    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-image: linear-gradient(lightblue, lightgreen);
}

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

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

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

.gdpr-consent__button--reject:hover{
    background-color: #5c6166;
}

.hide{
    display: none;
}

.show{
    display: block;
}



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

    .personalia .personalia-gegevens #icon{
        width: 30px; 
        height: 30px;
        fill: #06BEBE;  
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0px;
        margin-right: 60%;
        margin-left: 8svw;
    }

}


/*student uitwerking*/

