.button-row * {
	box-sizing: border-box;
}
.button-row .button-flex {
	display: flex;
	flex-wrap: wrap;
	margin: -10px 0 0 0;
} 
    /* add a corresponding positive top margin to all flex items (all direct children of the flex container) */
.button-row .button-flex > * {
    margin-top: 10px;
}

.button-row .button-flex .button{
	flex: 0 0;
	margin: 5px;
	position:relative;
	overflow: hidden;
	border-radius: 0px;
	height: auto;
	max-height: 100%;
	background: transparent;
		/* white-space: nowrap; */
	text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 800;
    text-shadow: 1px 1px 2px #000;
    letter-spacing: 1px;
	padding: 0;
	
}
.button-row .button-flex .rounded {
	border-radius: 15px;
}
.button-row .button-flex .round {
	border-radius: 50%;
}
.button-row .button-flex .button:before {
    content:'';
    float:left;
	display: block;
    padding-top:100%;
}

.button-row .button-flex .button .button-content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	position:relative;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
	padding: 10px 0;
	text-align: center;
}

.button-row .button-flex .button.zoom:hover .button-content  {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.button-row .button-flex .button .button-content p {

}


.button-row .button-flex .button .button-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

/* example for small screens */

@media (max-width: 900px) {
	.button-row .button-flex .button {
		flex: calc(50% - 20px) !important;
		margin:10px !important;
	}
}

@media (max-width: 320px) {
	.button-row .button-flex .button {
		flex: 100%  !important;
	}
}
