/* WALLET POPUP */
#divAppUserAlerts
{
    background-color:rgba(0, 0, 0, 0.75);
    display:none;
    height:100%;
    left:0%;
    opacity:0;
    position:fixed;
    top:0%;
    width:100%;
    z-index:5;
}

#divAppUserAlerts.show
{
	animation-duration:0.25s;
	animation-name:showWallet;
	display:block;
	opacity:1;
}

#divAppUserAlerts .hide
{
    display: none !important;
}

#divAppUserAlerts #divUserAlertsPopup
{
    background-color:#1b1c20;
    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;
	left:50%;
    opacity:0;
	overflow:hidden;
	padding:30px;
	position:absolute;
	top:50%;
	transform:translate(-50%, -50%);
    transition:height 0.25s, padding 0.25s;
	width:480px;
}

#divAppUserAlerts.show #divUserAlertsPopup
{
    animation-duration:0.25s;
	animation-name:showWallet;
	opacity:1;
}

#divAppUserAlerts .h3PopupHeading
{
    height:40px;
	line-height:40px;
    margin-bottom:15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 20px);
}

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

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

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

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

#divAppUserAlerts #btnUserAlert
{
    margin-top:30px;
    width:100%;
}

#divAppUserAlerts #divContent img{
    max-width: 100%;
}

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

/* MEDIA QUERIES */
@media (max-height: 580px)
{
    /* WALLET POPUP */
    #divAppUserAlerts #divUserAlertsPopup
    {
        height:calc(100% - 100px);
        overflow-y:auto;
        top:20px;
        transform:translate(-50%, 0%);
    }
}

@media (max-width: 540px)
{
    /* WALLET POPUP */
    #divAppUserAlerts
    {
        display:block;
        opacity:1;
        transform:translate(-100%, 0%);
        transition:transform 0.25s;
    }

    #divAppUserAlerts.show
    {
        animation:none;
        transform:translate(0%, 0%);
    }

    #divAppUserAlerts #btnClosePopup
    {
        right:15px;
        top:15px;
    }

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

    #divAppUserAlerts #divUserAlertsPopup
    {
        box-shadow:none;
        border-radius:0px;
        height:calc(100% - 120px);
        left:0%;
        opacity:1;
        overflow-y:auto;
        padding:20px 20px 100px;
        top:0%;
        transform:translate(0%, 0%);
        width:calc(100% - 40px);
    }
}

@media (max-width: 420px)
{
    #divAppUserAlerts #btnClosePopup
    {
        right:10px;
        top:10px;
    }
}
