.ituCardNotification{
    position: absolute;
    top: 140px !important;
    right: 30px;
    border-radius: 4px;
    background-color:#2f2f2f;
    color:white;
    width: 320px;
    padding: 1.5rem;
    box-shadow: 00 0 1.5rem #a9cad814;
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);

}

.ituCardNotification.active{
    transform: translateX(0%);
	
}

.ituCardNotification .ituCardNotificationContent{
    display: flex;
    align-items: center;
}


.ituCardNotificationContent .message{
    display: flex;
    flex-direction: column;
   
}

.message .text{
    font-size: 16px;
    font-weight: 400;
    color: white;
	margin-left: 0px !important;
}
.text-2 {
	font-size: 16px;
    font-weight: 400;
    color: white;
	margin-left: 0px !important;		
	text-decoration: underline;
		}
.ituCardNotification .close{
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;

}

.ituCardNotification .close:hover{
    opacity: 1;
}

.ituCardNotification .progress{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}

.ituCardNotification .progress:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #009cd6;
}

.progress.active:before{
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100%{
        right: 100%;
    }
}



.ituCardNotification.active ~ button{
    pointer-events: none;
}
