

/*mobile version*/

body {
    margin-top: 40px !important;
}

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

.personalia {
    background-color: var(--primary-color-light);
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

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

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

.person-name {
    margin-top: 5px;
    z-index: 9999;
}

.person-title {
    margin-bottom: 5px;
    z-index: 9999;
}

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

.profile-content__category-title {
    color: var(--primary-color);
}

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

.profile-content__category--hidden-desktop {
    display: flex;
}

.profile-content__element {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}
profile-content__element--hidden-desktop {
    display: flex;
}

.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: 10px;
}

.profile-content__period {
    display: none;
}

.profile-content__institute{
    color: var(--primary-color);
    margin-top: 0;
    font-size: 14px;
}

.profile-content__Persona, .profile-content__info{
    margin-top: 0;
    font-size: 14px;
}
.profile-content__Language{
    margin-top: 0;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.profile-content__Skills{
    margin-top: 0;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;

}

.profile-content__Skills img{
    width: 20px;
    height: 20px;
}

.profile-content__progress{
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.profile-content__progress-bar{
    background-color: var(--primary-color);
    height: 15px;
    border-radius: 5px;
}

.profile-content__progress-bar p{
    margin: 0;
    color: white;
    font-size: 12px;
    padding: 2px;
}

@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--hidden-desktop {
        display: flex;
        flex-direction: column;
        display: none;
    }

    .profile-content__category--hidden-desktop {
        display: flex;
        flex-direction: column;
        display: none;
    }

    .profile-content__element-header{
        display: flex;
        justify-content: space-between;
    }

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

}


