.s-notifications {
    height: 0px;
    visibility: hidden;
}
.s-notifications .notification {
	opacity: 0;
	height: 0;
	visibility: hidden;
	background-color: #ffff60;
	-webkit-box-shadow: 0px 9px 33.5px 0px rgba(20,10,60,0.29);
	-moz-box-shadow: 0px 9px 33.5px 0px rgba(20,10,60,0.29);
	box-shadow: 0px 9px 33.5px 0px rgba(20,10,60,0.29);
	opacity: 0;
	transform: all linear 2s;
}
.s-notifications .notification.active {
	height: auto;
	opacity: 1;
	position: fixed;
	z-index: 98;
	bottom: 5%;
	display: flex;
	visibility: visible;
	justify-content: space-between;
	right: calc(24px / 2);
	width: 100%;
	max-width: 500px;
	border-radius: 8px;
	padding: 24px;
}

.s-notifications .content {
	display: flex;
	gap: 24px;
}
.s-notifications .image-wrapper {
	width: 35%;
	display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.s-notifications .image-wrapper img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.s-notifications .m-standard {
	width: 65%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.s-notifications .m-standard p.upsell {
	/* font-weight: 700;
	margin-bottom: 1rem;
	color: #000000;
	position: absolute;
	top: -1.5rem;
	left: -1.5rem; */
	display: none;
}

.s-notifications .m-standard p {
	margin: 0;
	padding: 0;
	line-height: 150%;
    font-size: 100%;
}

.s-notifications .m-standard p.title {
	color: #000000;
	font-weight: 700;
}
.s-notifications .m-standard p:not(.title,.upsell){
	/* margin-bottom: 0.4rem; */
	font-size: 90%;
}

.s-notifications .close{
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	color: #000000;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.6rem;
	font-family: ETmodules!important;
}

.s-notifications a.g-text-link {
	transition: all 300ms ease 0ms;
	line-height: 150%;
    font-size: 90%;
	display: inline-block;
	border: 1px solid #000000;
	border-radius: 4px;
	padding: 0.2em 0.7em;
    color: #000000;
    margin-top: 10px;
}

.s-notifications a.g-text-link:after {
	content: '$';
	font-family: ETmodules!important;
	color: #ff8c00;
    opacity: 1;
    margin-left: .3em;
    left: auto;
	position: relative;
	top: 2px;
}

.s-notifications a.g-text-link:hover {
	background-color: #000000;
    color: #ffffff;
}

.s-notifications a.g-text-link:hover:after {
	color: #ffffff;
}

@media only screen and (max-width: 900px) {
	.s-notifications .notification.active {
		bottom: calc(24px / 2);
		right: calc(24px / 2);
		left: calc(24px / 2);
		width: auto;
	}
	.s-notifications .image-wrapper {
		display: none;
	}
	.s-notifications .m-standard {
		width: 100%;
	}
}

