.favorite-heart-wrapper {
    text-align: right;
}
.favorite-icon-hidden {
    display: none;
}

.favorietencontainer {
    padding-bottom: 30px;
}
.favorietencontainer .favorieten-titelbox {
    margin-bottom: 30px;
}
.favorietencontainer .favorieten-titelbox h2.titel {
    float: left;
    width: 30%;
    margin: 0;
}
.favorietencontainer .favorieten-titelbox .mijngegevens-knoppenbox {
    float: right;
    width: 70%;
    text-align: right;
    padding-right: 0;
    padding-left: 0;
}

.favorietencontainer button.btn-primary {
    width: auto;
    float: right;
}

.favorietencontainer .favorieten-bestel,
.favorietencontainer .favorieten-verwijder {
    text-align: center;
}



/* -- Nieuwe table */
.favoriteTable {
    margin-bottom: 40px;
}

.favoriteTable .header {
    width: 100%;
    display: flex;
}
.favoriteTable .body {
    display: flex;
    flex-direction: column;
}
.favoriteTable .fav-row {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.favoriteTable .fav-row:nth-child(odd) {
    background: #f7f7f7;
}
.favoriteTable .fav-row:hover {
    background: #e2e2e2;
}
.favoriteTable .fav-order {
    width: 60px;
    display: block;
    border-right: 1px solid #ddd;
    height: 100%;
    text-align: center;
}
.favoriteTable .fav-aantal {
    width: 60px;
}
.favoriteTable .fav-aantal input[type="number"] {
    width: auto;
    border: 1px solid #ddd;
    max-width: 100%;
    padding: 5px 10px;
}
.favoriteTable .fav-delete {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.favoriteTable .fav-artikel {
    width: calc(100% - 160px);
    padding: 0 10px;
}
.favoriteTable .article-name {
    margin: 0;
    font-weight: bold;
}

@media (max-width: 576px) {
    .favoriteTable .header label {
        font-size: 10px;
    }
    .favoriteTable .fav-order {
        width: 40px;
    }
    .favoriteTable .fav-artikel {
        width: calc(100% - 120px);
    }
    .favoriteTable .fav-aantal {
        width: 40px;
    }
}