.mesaj{
    position: fixed;
    top: 100px;
    right: 10px;
    text-align: center;
    width: 40%;
    font-size: 14px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 30px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 30px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 30px -5px rgba(0,0,0,0.75);
    z-index: 100;
}

.error {
    padding: 20px;
    background-color: #c0392b;
    color: white;
}

.warning {
    padding: 20px;
    background-color: #f39c12;
    color: white;
}

.info {
    padding: 20px;
    background-color: #34495e;
    color: white;
}

.success {
    padding: 20px;
    background-color: #2ecc71;
    color: white;
}

.kapatbtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.kapatbtn:hover {
    color: black;
}

@media only screen and (max-width: 1024px) 
{
    .mesaj{
        right: 2%;
        left: 2%;
        text-align: center;
        width: 96%;
    }
}