/*mobile version*/
button{
    background-color:rgba(39, 140, 39, 0.96);
    color: white;
    border: transparent;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1), 0 3px 10px 0 rgba(0,0,0,0.08);
    transition-duration: 0.4s;
    font-size: 16px;
    cursor: hand;


}

button:hover {
    background-color: #04AA6D; /* Green */
    color: white;
}

button:active{
    background-color: #5c6166;
}

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

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

.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: rgba(39, 140, 39, 0.96);
}

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

    width: 100%;
    padding: 10px;
    background-color:rgba(39, 140, 39, 0.96);
    color: white;
    border: transparent;
    border-radius: 5px;
}
.button_contact:hover {
    background-color: #45a049; /* New button color on hover */
}
.button_contact:active{
    background-color: #5c6166;
}

.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(39, 140, 39, 0.96);
    margin-top: 0px;
    font-size: 14px;
}
.profile-content__info {
    display: block;
    margin-top: 0px;
    font-size: 16px;
}
li{
    list-style: none;
    /* list-style: circle; */
    /* list-style: disc; */
    /* list-style: square; */
}

.profile-content__skills {
    display: block;
    margin-top: 0px;
    font-size: 16px;
}
.profile-content__skill {
    display: flex;
    margin-top: 0px;
    font-size: 16px;
    justify-content: space-between;
}
.profile-content__skillrating {
    display: flex;
    margin-top: 0px;
    font-size: 16px;
    justify-content: space-around;
}
.unchecked{
    color: white;
}
.checked {
    color: rgba(39, 140, 39, 0.96);
}
.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: white;
    font-family: Arial;

}

.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: rgba(39, 140, 39, 0.96);
    padding: 10px;
    border-radius: 4px;
    border: 1px transparent;
}
.gdpr-consent__button--reject {
    background-color: #bd4f4f;
    padding: 10px;
    border-radius: 4px;
    border: 1px transparent;
}

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

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


}


/*student uitwerking*/

