.fff-made-with-love i {
	background: url(../images/heart-icon.svg) no-repeat;
	width: 15px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px;
	background-size: 12px;
	background-position: center top;
	transition: background-size 0.1s;
}

.fff-made-with-love:hover i {
	background-size: 15px;
}


.blox-cookie-notice {
	z-index:99999;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	text-align: center;
	background: rgba(255,255,255, 0.8);
	border-top: 1px solid rgba(0,0,0,0.2);
}

.blox-cookie-notice .blox-cookie-notice-msg {
	display: inline-block;
	margin-right: 20px;
}

.blox-cookie-notice .blox-cookie-notice-accept {
	padding: 10px;
	display: inline-block;
	background: #000;
	color: #fff;
	text-decoration: none;
}




/* Popup */

.-popup-element {
	position: fixed !important;
	opacity: 1 !important;
	top: 50% !important;
	left: 50% !important;
	z-index: 999 !important;
	display: block !important;
	background: #fff;
	transform: translateX(-50%) translateY(-50%) !important;
	padding: 20px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.-popup-background {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

.-popup-close {
	position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    font-size: 25px;
    line-height: 10px;
    padding: 15px;
}



/* Loading Ani */

.blox-loading-ani {
	display: block;
	width: 16px;
	height: 16px;
	border: 2px solid;
	border-color: #000 #000 #000 transparent;
	border-radius: 999px;
	opacity: 0.5;
	animation: blox-loading-ani infinite 2s;
	animation-timing-function: linear;
}
@keyframes blox-loading-ani {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }

}
