div.mesajlarDiv {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 10%;
    right: 3%;
    padding: 2%;
    border: 1px solid rgba(0, 181, 204, 1);
    background: rgba(100, 200, 245, 0.3);
    border-radius: 5px;
    animation: yokOlma 4s ease-in 1;
    animation-fill-mode: forwards;
    animation-delay: 8s;
    min-width: 50%;
    z-index: 5;
}

div.svgDiv {
    display: relative;
    background: blue;
}

div.svgDiv svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

@keyframes yokOlma {
    0% {
        opacity: 1;
        right: 3%;
    }

    50% {
        right: 3%;
    }

    100% {
        opacity: 0;
        right: -100%;
    }
}

ul {
    /* border: 1px solid red; */
}

ul#mesajlar li {
    width: 99%;
    padding: 5px 20px;
    list-style: none;
    margin-top: 2%;
}

.basari {
    background: #74db90;
}

.hata {
    background: #e67373;
}