.goodie-bag .popup {
	display: none;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}
.goodie-bag .popup .popup-content {
	width: 80%;
	max-width: 1400px;
	margin: 10% auto;
	padding: 0px 0px 50px 0px;
	background-color: #fefefe;
}
.goodie-bag .popup .popup-content .popup-head {
	display: flex;
	flex-direction: row;
	justify-content: end;
	background: white;
	padding: 40px 20px 0px 20px;
	border: none;
	position: relative;
}
.goodie-bag .popup .popup-content .popup-head .close {
	color: #000000;
	font-size: 70px;
	font-weight: 100;
	cursor: pointer;
	
	position: absolute;
	top:0px;
	right:0.25em;
	top:-0.6em;
}
.goodie-bag .popup .popup-content .popup-body .content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
	padding: 0px 40px;
}
.goodie-bag .popup .popup-content .popup-body .content .image {
	flex: 1 1 32%;
	display: flex;
	justify-content: center;
}
.goodie-bag .popup .popup-content .popup-body .content .info {
	flex: 1 1 66%;
}
.goodie-bag .popup .popup-content .popup-body .content .info .header{
	font-size: 36px;
	line-height: 1.1em;
	color: #174F81;
	font-weight: 900;
}
.goodie-bag .popup .popup-content .popup-body .content .info .company{
	font-size: 17px;
	font-weight: 700;
}
.goodie-bag .popup .popup-content .popup-body .content .info .description{
	padding: 15px 0px 15px 0px;
}
.goodie-bag .popup .popup-content .popup-body .content .info .attachment {
	text-align:right;
}
.goodie-bag .popup .popup-content .popup-body .content .info .attachment a{
	/*text-transform: uppercase;*/
	border-radius: 19px 19px 19px 19px;
	padding: 10px 33px;
	text-decoration: none;
	
	background-color: var( --e-global-color-342c69c ) !important;
	border-color: var( --e-global-color-342c69c ) !important;
	color: #ffffff !important;
	font-weight: 700;

	font-family: "Roboto DALK", sans-serif;
	font-size: 17px;
}

.goodie-bag .goodies {
	display: flex;
	flex-direction:row;
	flex-wrap: wrap;
	row-gap: 15px;
	column-gap: 15px;
	
	align-items: center;
	justify-content: center;
}
.goodie-bag .goodies .goodie {
	flex: 0 1 23%;
	min-width: 250px;
}
.goodie-bag .goodies .goodie .image {
	aspect-ratio: 500/300;
	overflow: hidden;
}
.goodie-bag .goodies .goodie .image picture {
	display: block;
	width: 100%;
	height: 100%;
}
.goodie-bag .goodies .goodie .image picture img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.goodie-bag .goodies .goodie .image img { 
	transform: scale(1);
	transition: all .5s;
}
.goodie-bag .goodies .goodie .image:hover img {
	transform: scale(1.1);
	transition: all .5s;
}