/*
* FlexBox für WP Standard-Galerie
*/ 



div.gallery {display:flex; flex-flow:wrap; align-items:center /* start center end stretch */; justify-items:center /* start center end stretch */;}
.gallery-item {margin:0; margin-top:0 !important; transition:0.5s ease-in-out;}
.gallery-item img {width:100%; height:auto; border-radius:0;}

.gallery-columns-2 .gallery-item {flex:0 1 50%;}
.gallery-columns-3 .gallery-item {flex:0 1 33.33%;}
.gallery-columns-4 .gallery-item {flex:0 1 25%;}
.gallery-columns-5 .gallery-item {flex:0 1 20%;}



/* ################################################################################ */
/*  --------------------------------------------------------------------- His  Responsiveness --------------------------------------------------------------- */
/* ############################################################################### */



@media screen and (min-width:401px) and (max-width:900px) {
.gallery dl.gallery-item {flex:0 1 50%;}
}/* Ende @media screen */


@media screen and (max-width:400px) {
.gallery dl.gallery-item {flex:0 1 100%;}
}/* Ende @media screen */










/* Abstand */