
#awm-list-kachel {
	display: flex;
	margin-top: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.awm-kachel {
	float: left;
	margin: 3rem 1rem 1rem 1rem;
	border: 0.25rem solid #fff;
	width: 23rem;
	height: 23rem;
	box-shadow: 2rem 1rem 8rem #888;
	box-shadow: 0rem 0rem 8rem #888;
    animation: 0.25s ease 0.25s normal forwards 1 fadeIn;
}
.awm-kachel:hover {
	border-color: #444;
	box-shadow: 2rem 1rem 8rem #444;
}
.awm-kachel .awm-kachel-case {
	position: relative;
	width: 23rem;
	height: 23rem;
    overflow: hidden;
}
.awm-kachel IMG {
	display: block;
	width: 23rem;
	height: 23rem;
}
.awm-kachel .awm-kachel-inner {
    position: absolute;
    top: 24rem;
    height: inherit;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    animation: 0.25s linear 0s normal none 1 slideDown;
}
.awm-kachel:hover .awm-kachel-inner {
    top: 0;
    XXpadding-top: 2rem;
    animation: 0.5s ease 0s normal none 1 slideUp;
}
.awm-kachel .awm-kachel-title {
	padding: 0 2rem;
}
.awm-kachel .awm-kachel-comment {
    margin-top: 5rem;
	padding: 0 2rem;
    opacity: 0;
    animation: 0.25s linear 0s normal none 1 fadeOut;
    animation: 0.5s linear 0s normal none 1 fadeOut;
}
.awm-kachel:hover .awm-kachel-comment {
    opacity: 1;
    animation: 0.5s ease 0s normal none 1 fadeIn;
}

@keyframes slideUp {
/*
    from { top: 110px; padding-top: 10px; }
    to   { top: 0;     padding-top: 2px; }
    from { top: 24rem; padding-top: 5rem; }
    to   { top: 0;     padding-top: 2rem; }
*/
    from { top: 24rem; }
    to   { top: 0;     }
}
@keyframes slideDown {
/*
    from { top: 0;     padding-top: 2px; }
    to   { top: 110px; padding-top: 10px; }
    from { top: 0;     padding-top: 2rem; }
    to   { top: 24rem; padding-top: 5rem; }
*/
    from { top: 0;     }
    to   { top: 24rem; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

