#divAppPushNotificationIntroduction
{
    background-color:rgba(0, 0, 0, 0.75);
    display:none;
    height:100%;
    left:0%;
    opacity:0;
    position:fixed;
    top:0%;
    width:100%;
    z-index:20;
}

#divAppPushNotificationIntroduction.show
{
	animation:showPushNotificationIntroduction 0.25s;
	display:block;
	opacity:1;
}

#divAppPushNotificationIntroduction #divPushNotificationIntroductionPopup
{
    background-color:#6f46e3;
	background:linear-gradient(180deg, #6f46e3, #000000);
    border-radius:10px;
    box-shadow:inset 0px 20px 10px -20px rgba(255, 255, 255, 0.75), inset 0px -20px 10px -20px rgba(0, 0, 0, 0.75), 0px 0px 50px #000000;
	height:580px;
    left:50%;
    opacity:0;
	overflow:hidden;
	position:absolute;
	top:50%;
	transform:translate(-50%, -50%);
	width:520px;
}

#divAppPushNotificationIntroduction.show #divPushNotificationIntroductionPopup
{
	animation:showPushNotificationIntroduction 0.25s;
	opacity:1;
	position:relative;
}

#divPushNotificationIntroductionPopup #vidPopupBackground
{
    height:125%;
	left:5%;
	object-fit:cover;
	position:absolute;
    top:5%;
    width:125%;
    z-index:-1;
}

#divAppPushNotificationIntroduction #btnClosePopup
{
	cursor:pointer;
	height:40px;
	position:absolute;
	right:10px;
	top:10px;
	width:40px;
}

#divAppPushNotificationIntroduction #btnClosePopup:before
{
	background-color:#7f7f7f;
	content:"";
	height:2px;
	left:8px;
	position:absolute;
	top:20px;
	transform:rotate(45deg);
    transition:background-color 0.25s, box-shadow 0.25s;
	width:24px;
}

#divAppPushNotificationIntroduction #btnClosePopup:after
{
	background-color:#7f7f7f;
	content:"";
	height:2px;
	left:8px;
	position:absolute;
	top:20px;
	transform:rotate(-45deg);
    transition:background-color 0.25s, box-shadow 0.25s;
	width:24px;
}

#divAppPushNotificationIntroduction #btnClosePopup:hover:before, #divAppPushNotificationIntroduction #btnClosePopup:focus:before, #divAppPushNotificationIntroduction #btnClosePopup:hover:after, #divAppPushNotificationIntroduction #btnClosePopup:focus:after
{
    background-color:#fbd3ff;
    box-shadow:0px 0px 5px #e600ff;
}

#divAppPushNotificationIntroduction .imgHeading
{
	left:30px;
	position:relative;
	top:30px;
	width:calc(100% - 60px);
}

#divAppPushNotificationIntroduction .imgPushNotificationsIntroductionLogo
{
	height:20px;
}

#divAppPushNotificationIntroduction .spnNow
{
	color:#292a2f;
	font-size:10px;
	position:absolute;
	right:15px;
	top:8px;
}

#divAppPushNotificationIntroduction .divSubscribeText
{
	background-color:rgba(255, 255, 255, 0.75);
	border-radius:10px;
	box-shadow:0px 0px 30px rgb(0, 0, 0);
	color:rgb(60, 60, 60);
	font-size:16px;
	margin:50px;
	padding:20px 25px;
	position:relative;
}

#divAppPushNotificationIntroduction  .spnPlayText
{
	display:inline-block;
	font-weight:600;
	position:relative;
	transform:translate(5px, -5px);
}

#divAppPushNotificationIntroduction #btnEnablePushNotifications
{
	bottom:30px;
	left:50px;
	position:absolute;
	right:50px;
}

/* ANIMATION KEY FRAMES */
@keyframes showPushNotificationIntroduction
{
	0%   {opacity:0;}
	1%   {opacity:0;}
	100% {opacity:1;}
}

/* MEDIA QUERIES */
@media (max-height: 620px)
{
    #divAppPushNotificationIntroduction #divPushNotificationIntroductionPopup
    {
        height:calc(100% - 40px);
        overflow-y:auto;
        top:20px;
		transform:translate(-50%, 0%);
    }
}

@media (max-width: 560px)
{
    #divAppPushNotificationIntroduction #divPushNotificationIntroductionPopup
    {
        height:calc(100% - 40px);
        overflow-y:auto;
        top:20px;
		transform:translate(-50%, 0%);
		width:calc(100% - 40px);
    }

	#divPushNotificationIntroductionPopup #vidPopupBackground
	{
		height:150%;
		left:-15%;
		top:-15%;
		width:150%;
	}

	#divAppPushNotificationIntroduction .divSubscribeText
	{
		margin:50px 30px 0px;
		padding:15px 20px;
	}

	#divAppPushNotificationIntroduction #btnEnablePushNotifications
	{
		left:30px;
		position:absolute;
		right:30px;
	}
}