:root {
	--boxShadow: 0 0 5px 0 rgba(0, 0, 0, 0.22);
	--background: #1f1f24;
	--backgroundBlurred: rgba(31,31,36,0.54);
	--border: transparent;
	--titleColor: #ffffff;
	--textColor: #ffffff;
	--ctaColor: #ffffff;
	--titleFontSize: 15px;
	--textFontSize: 14px;
	--textLineHeight: 1.4;
	--textLetterSpacing: 0;
	--boxPadding: 12px 26px 12px 13px;
	--closeTop: 6px;
	--closeRight: 10px;
	--closeWidth: 10px;
}

.ct_pushNotification {
	position: fixed;
	background: transparent;
	z-index: 100;
	cursor: pointer;
	/* top: 13%; */
	/* right: -100%; */
	border-radius: 7px;
	opacity: 0;
	box-shadow: var(--boxShadow);
	width: 350px;
	max-width: 95%;
	overflow: hidden;
	background: var(--background);

	/*position on desktop*/
	right : 1%;
	left : auto;
	top : 115px;
	/* top : 270px; holiday */
	bottom : auto;
	transform: translateX(200%);
}

@media screen and (max-width: 767px) {
	.ct_pushNotification {
		border-radius: 5px;
		/* left: 0; */
		/* right: -100%; */
		/* top: 120px; */
		margin: 0 auto;
		/*position on mobile*/
		right : 0;
		left : 0;
		top : 120px;
		/* top : 270px; holiday */
		bottom : auto;
		transform: translateX(200%);
	}
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.ct_pushNotification--blurred {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		background: var(--backgroundBlurred);
	}
}

.ct_pushNotification__close {
	position: absolute;
	top: var(--closeTop);
	right: var(--closeRight);
	cursor: pointer;
}

.ct_pushNotification__close img {
	max-width: var(--closeWidth);
	height: auto;
}

.ct_pushNotification__content {
	padding: var(--boxPadding);
	border-radius: 7px;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	border: 2px solid var(--border);
	width: 100%;
}

.ct_pushNotification__content__logo {
	padding: 0px 10px 0 0;
}

.ct_pushNotification__content__logo img {
	max-width: 40px;
	height: auto;
}

.ct_pushNotification__content__text {
	flex-grow: 1;
}

.ct_pushNotification__content__text h3 {
	font-size: var(--titleFontSize);
	margin-bottom: 7px;
	line-height: 1;
	color: var(--titleColor);
	margin: 0;
	text-transform: uppercase;
	display: flex;
	flex-flow: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}

.ct_pushNotification__content__text h3 img {
	margin-right: 10px;
	max-width: 40px;
	height: auto;
}

.ct_pushNotification__content__text p {
	font-size: var(--textFontSize);
	line-height: var(--textLineHeight);
	letter-spacing: var(--textLetterSpacing);
	color: var(--textColor);
	margin-top: 10px;
	width: 100%;
}
.ct_pushNotification__content__text__cta {
	cursor: pointer;
	color: var(--ctaColor);
	font-size: var(--textFontSize);
	line-height: var(--textLineHeight);
	letter-spacing: var(--textLetterSpacing);
	font-weight: 600;
	text-decoration-line: underline;
	width: 100%;
}