/*
 * Flowershelf
 *
 * Version: 1.1
 *  Author: Sara Potyscki (ThePot)
 * Website: http://www.thepot.site
 * License: Released under the MIT license [http://www.thepot.site/portfolio]
 *
 */
.flowershelf{
	position: relative;
}

.flowershelf:not(.loaded) *{
	visibility: hidden;
	height: 65px;
}
.flowershelf:not(.loaded):before {
	visibility: visible;
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  border-top: 6px solid #ec5d3f;
  border-right: 6px solid transparent;
  animation: spinner .6s linear infinite;
}

.flowershelf .flowershelf-row{
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.flowershelf .flowershelf-element{
	display: inline-block;
	white-space: normal;
	position: relative;
	background-color: #f1f1f1;
}

.flowershelf .flowershelf-element img{
	width: 100%;
	height: 100%;
	border: 0px;
	opacity: 0;
	-webkit-transition: opacity 0.30s ease-in-out;
	-moz-transition: opacity 0.30s ease-in-out;
	-ms-transition: opacity 0.30s ease-in-out;
	-o-transition: opacity 0.30s ease-in-out;
	transition: opacity 0.30s ease-in-out;
}

.flowershelf .flowershelf-element.loaded img{
	opacity: 1;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}
