.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);
    display: none;
    border-left: 3px solid #009CD6;
}

body {
    overflow-x: hidden;
}


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

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


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

}

#toastMessageDisclaimer {
    color: #009CD6;
}

#toastMessageDisclaimer:hover {
    text-decoration: underline;
}

.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::before {
    content: "×";
    color: white;
    font-weight: bold;
}

.ituCardNotification .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;

}

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

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