/*mobile version*/
body {
    height: 100%;
    background-color: rgb(255, 255, 255);
  }


title {
    color:rgb(0, 0, 0);
}

.card {
    box-shadow: 0 4px 12px 0 rgb(0, 0, 0);
    background-image: linear-gradient(rgb(70, 212, 89),  rgb(141, 245, 228));
    width: 100%;

    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .title {
    color: black;
    font-size: 24px;
  }
  .status {
    color: black;
    font-size: 18px;
  }
  
  button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  a {
    text-decoration: none;
    font-size: 22px;
    color: black;
  }
  
  button:hover, a:hover {
    opacity: 0.7;
  }


.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}


.contact-box {

    margin-right: 15px;
    margin-left: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    column-width: 1200px;
    border-radius: 20px;
    background-color: white;
    outline-color: black;
    outline-width: 30px;
    align-items: stretch;

}

.background {

    background-image: linear-gradient(rgba(128, 214, 140, 0.7), rgba(131, 18, 18, 0.7));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.profile {
    box-shadow: 0 4px 12px 0 rgb(0, 0, 0);
    background-color: #faf8f8;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.person-logo {
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50%;
    margin: 15px 0px 15px 0px;
    width: 20%;
}


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

.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_text {
    font-size: 12px;
    margin-left: 5%;
    margin-right: 5%;
    color: black;
    background-color: white;
    border-radius: 16px;
    display: flex;
    text-align: center;
}

.profile-content_subtext {
    font-size: 8px;
    margin-left: 5%;
    color: #545454;
    display: flex;
    margin-top: -8px;
    text-align: center;
}

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

    .page {
        flex-direction: row;
    }

    .card  {
        width: 50%;
    }

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

}


.alert-failed {
    padding: 20px;
    background-color: #f44336;
    color: white;
    margin-bottom: 15px;
    }
.alert-success {
    padding: 20px;
    background-color: #4ff843; 
    color: rgb(0, 0, 0);
    margin-bottom: 15px;
    }

    /* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
    }

    /* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
    }

