.wishlist-table {
    width: 100%;
    position: relative;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0 24px;
    display: flex;
    flex-direction: column;
}

.wishlist-table tr {
    background: #FFFFFF;
    /* Gray 5 */
    border: 1.5px solid #E0E0E0;
    box-sizing: border-box;
    margin-bottom: 32px;
    display: grid;
    align-items: center;
    justify-content: space-around;
    grid-auto-flow: column;
}

.wishlist-table th,
td {
    text-align: start;
    padding: 5px;
}

.td-atributtes {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.td-atributtes p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    ont-family: Lato;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 130%;
    /* or 23px */
    letter-spacing: 0.02em;
    /* Kokopelli Black */
    color: #1D1D1B;
    width: 250px;
}

.td-details {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.td-details a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 193px;
    height: 54px;
    background: #FFFFFF;
    /* Gray 5 */
    border: 1.5px solid #1D1D1B;
    box-sizing: border-box;
    font-family: Inconsolata;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 25px;
    letter-spacing: 0.04em;
    /* Kokopelli Black */
    color: #1D1D1B;
}

.td-img {
    display: contents;
}

.wishlist-table.loading:after {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: #ffffff;
    opacity: 0.5;
    z-index: 5;
}

.wishlist-table.loading:before {
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    content: "";
    background-image: url('../images/loading.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 6;
}

.wishlist-table td {
    position: relative;
    /* ! Remove color! */
    height: 100%;
}

.wishlist-table a.details {
    background: #FFFFFF;
    /* Gray 5 */
    border: 1.5px solid #E0E0E0;
    box-sizing: border-box;
    width: 193px;
    height: 54px;
    /* Kokopelli Inconsolata 24 Bold */
    font-family: Inconsolata;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 25px;
    letter-spacing: 0.04em;
    /* Kokopelli Black */
    color: #1D1D1B;
    text-align: center;
}

.wishlist-table a.wishlist-remove {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../images/remove-table.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 6;
    border: none;
}

.wishlist-table td:hover>a.wishlist-remove {
    opacity: 0.5;
}

.wishlist-toggle {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    height: 24px;
    outline: none;
    border: none;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-family: Inconsolata;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 25px;
    letter-spacing: 0.04em;
    color: #1D1D1B;
}

.wishlist-toggle svg {
    height: 19px;
    margin-right: 16px;
}

.entry-summary .wishlist-toggle {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 8px;
}

.entry-summary .wishlist-title {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 8px;
}

.wishlist-toggle:focus {
    outline: none;
    border: none;
}

.wishlist-toggle svg {
    fill: #bdbdbd;
    transition: all 200ms ease-out;
}

.wishlist-toggle:hover svg,
.wishlist-toggle.active svg {
    fill: #000000;
}

.wishlist-toggle svg .loading,
.wishlist-toggle svg .check {
    opacity: 0;
}

.wishlist-toggle.active svg .check {
    opacity: 1;
}

.wishlist-toggle.active svg .heart {
    opacity: 0;
}

.wishlist-toggle.loading svg .loading,
.wishlist-table.loading:before {
    animation: loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 1;
}

.wishlist-toggle.loading svg .heart {
    opacity: 0;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}