/* Loader */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.75);
	display: none;
	z-index: 200;
}
.loader-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	transform: translate(-50%,-50%);
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.loader-spinner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.loader-status {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: 50px;
	font-size: 1.2em;
	font-weight: lighter;
	color: #fff;
	text-align: center;
}

/* Popins */
.popins,
.popin {
	display: none;
}
.popins.active,
.popin.current {
	display: block;
}
.popin-overlay,
.popins:before {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	cursor: pointer;
}
.popins:before {
	content: "";
	background: rgba(0,0,0,0.75);
}
.popin {
	position: absolute;
	top: 3vw;
	left: 50%;
	z-index: 101;
	transform: translateX(-50%);
	width: 100%;
	max-width: 720px;
	padding: 60px;
	background: #fff;
}
.popin-content {
	padding: 20px 0;
}
/*.popin-action {
	margin-top: 10px;
}*/
.popin-action a {
	margin-right: 5px;
}
.popin-close {
	position: absolute;
	top: 20px;
	right: 20px;
}
.popin-close a {
	font-size: 1.2em;
	font-weight: lighter;
	color: #666;
	line-height: 32px;
	text-decoration: none;
}
.popin-close .icon:after {
	content: url(../images/svg/cancel.svg);
	width: 32px;
	height: 32px;
	display: inline-block;
	vertical-align: middle;
}

.popin_infoscookies {
	display: none;
}