﻿/*	================================================
1.	Nav Menu for Anchors in First Page Promotion
	A DIV within the page sxPromotion.asp OR sxSotLightPromotion.asp
	================================================ */
/*
		box-shadow: 2px 3px 4px rgba(0,0,0,0.2), 1px 1px 2px rgba(0,0,0,0.4);
	
		background-image: repeating-linear-gradient(35deg, rgba(255,255,255,0.2), rgba(255,255,255,0.4) 10%);
		background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2), rgba(255,255,255,0.5) 10%);
		background-image: repeating-radial-gradient(circle 20% 20%, rgba(255,255,255,0.6), rgba(255,255,255,0.2), rgba(255,255,255,0.66));
		background-image: radial-gradient(circle, rgba(255,255,255,0.36), rgba(255,255,255,0.84),  rgba(255,255,255,0));
		background-image: linear-gradient(-45deg,rgba(255,255,255,0.2) 10%, rgba(255,255,255,0.9) 20%,rgba(255,255,255,0.4) 40%,rgba(255,255,255,0.9) 60%,rgba(255,255,255,0.4) 80%, rgba(255,255,255,0.9) 90%,rgba(255,255,255,0.2) 100%);
		background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5) 10%);
*/



.sxNavPromotionAnchors {
	position: absolute;
	top: 0;
	right: 0;
	background: #2ea3f2;
	padding: 0 3px 3px 3px;
	text-align: left;
	display: block;
	max-width: 360px;
	z-index: 11;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-right: 0;
	visibility: hidden;
}

.sxNavPromotionAnchors div {
	font-size: 2.5em;
	font-weight: normal;
	color: #fff;
	opacity: 0.8;
	cursor: pointer;
	padding: 3px 8px;
	line-height: 100%;
}

.sxNavPromotionAnchors ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	display: block;
}

.sxNavPromotionAnchors li {
	display: block;
	margin-top: 4px;
	padding: 0;
	background-color: #fff;
}

.sxNavPromotionAnchors li span {
	display: block;
	font-size: 1em;
	font-weight: 400;
	line-height: 125%;
	padding: 8px 5px;
	text-align: left;
	color: #333;
	cursor: pointer;
}

.sxNavPromotionAnchors li span:hover {
	color: #2ea3f2;
}

/*	================================================	
	2.	Styles For separate First Page promotions
		Obs! Start from Mobile devices
		Set between NAV and MAIN Elements
		display: Flex / inline-block;
	
	================================================
*/

.promotionBG {
	position: relative;
	background: transparent;
	padding: 0;
	margin: 50px 0;
}

.promotion {
	position: relative;
	padding: 0;
	margin: 0 auto;
}

.anchor {
	margin: 50px 0 8px 0;
	padding: 0 0 20px 0;
}

.anchor h1 {
	text-align: center;
	padding: 0;
	color: #fff;
	border-top: 4px #2ea3f2 solid;
	margin: 0 0 28px 0;
}

.anchor h1 span {
	display: inline-block;
	padding: 12px 25px 30px 25px;
	border-radius: 0 0 40% 40%;
	background: #2ea3f2;
	border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.anchor .textNormal {
	padding: 0 10%;
	text-align: center;
}


.promotion .bgColorAnchor {
	background: #fff;
}

.promotion .bgColorBlock {
	background: transparent;
}

.block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.block-card {
	display: flex;
	flex-direction: column;
	padding: 2%;
	margin: 2px;
	flex: 1 100%;
	background-color: #FFF;
	box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
}

.block-card figure {
	display: flex;
	flex-direction: column;
}

.block-card img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	max-width: 80%;
}

.block-card figcaption {
	font-size: 1em !important;
	font-style: normal !important;
}
.block-card .textNormal {
	padding: 0 2%;
}

.block-card .absolute-button {
	margin-top: auto;
	padding-top: 20px;
	text-align: center;
}

.block-card .absolute-button button {
	border: 1px solid rgba(255, 255, 255, 0.6);
}


.promotion form {
	margin-top: 12px;
}


@media (min-width: 600px) and (max-width: 1023px) {
	.promotion {
		padding-left: 2%;
		padding-right: 2%;
	}

	.block-card .textNormal {
		padding: 0 4%
	}

	.block-card {
		flex: 1 46%;
	}
}

@media only screen and (min-width:1024px) {
	.promotion .textFixed img {
		opacity: 1;
		transition: opacity 0.6s linear;
	}

	.promotion .textFixed {
		position: relative;
		cursor: pointer;
	}

	.promotion .textFixed figcaption {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding: 5px !important;
		opacity: 0;
		transition: opacity 0.4s linear;
	}

	.promotion .textFixed:hover img {
		opacity: 0;
	}

	.promotion .textFixed:hover figcaption {
		opacity: 1;
	}

	.promotion {
		max-width: 1280px;
		margin: 0 auto;
	}

	.anchor .textNormal {
		padding: 0 8%
	}

	.block-card {
		flex: 1 21%;
	}
}


@media only screen and (min-width: 1600px) {
	.promotion {
		max-width: 1366px;
	}

	.anchor .textNormal {
		padding: 0 20%
	}
	.block-card {
		flex: 1 16%;
	}
}

@media only screen and (min-width: 1920px) {
	.promotion {
		max-width: 1440px;
	}
}