/* 1153 */
.dialog-newsletter-wrap {
	height: auto !important;
	display: flex;
	flex-direction: column !important;
}

.dialog-newsletter-content {
	height: auto;
	max-width: 100% !important;
	width: 100% !important;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0 !important;
	width: calc(100%/12*7) !important;
	max-width: calc(100%/12*7) !important;
	gap: calc(100%/7*1);
	margin-left: calc(100%/12*3) !important;
}

.dialog-newsletter-content > div {
	width: calc(100%/7*3);
}

.dialog-newsletter-wrap > div {
	position: relative !important;
	top: 0 !important;
}

.newsletter-entry {
	cursor: pointer;
	margin-bottom: 90px;
}

.newsletter-entry div {
	overflow: hidden;
}

.newsletter-entry div img {
	transform: scale(1);
	transition: all .3s ease-in-out;
}

.newsletter-entry:hover img {
	transform: scale(1.1);
}


.newsletter-entry h3 {
	font-size: 24px;
	padding: 15px 0 0;
	display: flex;
}

.newsletter-entry h3 em {
	font-style: normal;
	font-weight: 400;
	font-size: 0.8em;
	margin-left: 40px;
	opacity: 0.5;
}



.newsletter-holder-wrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	z-index:10000;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity .2s ease-in-out;
}

.newsletter-holder-wrap.show {
	visibility: visible;
	opacity:1;
}

.newsletter-holder {
	width: 95vw;
	height: calc(100vh - 5vw);
	background: rgba(255,255,255,1);
	z-index:10000;
	position: relative;
}

.newsletter-holder .embed-holder {
	width:100%;
	height:100%;
	z-index: 0;
	position: relative;
}


.newsletter-holder embed {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}

.btn-close-newsletter {
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	font-size: 0;
	top: 10px;
	right: 10px;
	z-index: 100000;

	&:before,
	&:after {
		content: ' ';
		display: block;
		width: 24px;
		height: 1px;
		background-color: #fff;
		position: absolute;
	}

	&:before {
		transform: rotate(45deg);
		left: 4px;
		top: 15px;
	}

	&:after {
		transform: rotate(-45deg);
		left: 4px;
		top: 15px;
	}
}


@media (max-width: 991px) {

	.dialog-newsletter-wrap {
	    padding-top: 120px !important;
	    padding-bottom: 0px !important;
	}


	.dialog-newsletter-content {
		flex-direction: column;
		gap: 0;
	}

	.dialog-newsletter-content > div {
		width: 100%;
	}
	    
}

@media (max-width: 767px) {

	.dialog-newsletter-wrap {
	    padding-top: 180px !important;
	    padding-bottom: 0px !important;
	}


	.dialog-newsletter-content {
		flex-direction: column;
		gap: 0;
		margin: 0 !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.dialog-newsletter-content > div {
		width: 100%;
	}
	    
}





