.notificacion-scroll {
    bottom: 20vh;
    left: 0;
    -webkit-box-align: center;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    position: fixed;
    text-align: left;
    width: 100%;
    z-index: 99000;
    height: auto;
    opacity: 1;
	cursor: pointer;
	display: none;
}

.notificacion-scroll.active {
    display: flex;
}

#notificacion-scroll-text {
    cursor: pointer;
    background-color: #2470ce;
    border: 2px solid #14509c;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgb(0 0 0/16%);
    color: #fff!important;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    font-family: -apple-system, arial, helvetica;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 auto;
    min-width: 230px;
    padding: 14px 30px;
    text-decoration: none;
}

.notificacion-text {
    position: fixed;
    bottom: 20vh;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    z-index: 99000;
    height: auto;
    opacity: 1;
	background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
	cursor: pointer;
}

.notification-background {
    display: none;
    position: fixed;
    top: 0;
    z-index: 99000;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    background: linear-gradient(transparent,#000);
    opacity: 0;
}

.notification-background.active {
    display: block;
    opacity: 0.75;
}

