body{letter-spacing: -1px}
a{text-decoration: none}

.bildirim{
    position: fixed;
    right: 11px;
    left: 11px;
    bottom: 11px;
    z-index: 9999;
    overflow: hidden;
}
    
.bildirim > div {
    position: absolute;
    background: #000000db;
    min-height: 135px;
    animation: bildirimAnimasyonu 0.5s;
    color: white;
    padding: 23px;
    bottom: 0;
    border-radius: 9px;
    font-size: 15px;
    letter-spacing: normal !important;
    font-family: arial;
    width: 100%
}

.bildirim p{
    font-size: 21px;
    margin-bottom: 13px;   
}

@keyframes bildirimAnimasyonu {
    0% {
        margin-left: 503px;
        opacity: 0;
    }
    
    50% {
        background: red;
        opacity: 1;
    }
    
    100% {
        margin-left: 0;
    }
}

#ajaxLoader{
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 26%);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 21vh; /* 👈 */
    z-index: 9999;
}

.loader-card{
    background: rgba(255,255,255,.95);
    padding: 32px 48px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    min-width: 260px;
    animation: pop .25s ease-out;
}

@keyframes pop{
    from{
        transform: scale(.92);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

.formLoader {
    position: absolute;
    bottom: -7px;
    left: 0;
    height: 7px;
    background-color: red;
    width: 51%;
    animation: formLoaderAnimasyonu 1.5s linear infinite;
    box-shadow: 5px 5px 9px 0px #000000;
}

@keyframes formLoaderAnimasyonu {
    0% {
        left: -100%;  
    }
    
    100% {
        left: 100%;  
    }
}

.stunGrafikBox{
    width:100%;
    font-family:Arial;
}

.stunGrafikBaslik{
    margin-bottom:10px;
    /*font-weight:bold;*/
}

.stunGrafik{
    display:flex;
    align-items:flex-end;
    gap:15px;
    width:100%;
}

.stunItem{
    flex:1;
    text-align:center;
    display:flex;
    flex-direction:column;
    height:100%;
}

.stunCubuk{
    flex:1;
    width:100%;
    background:#eee;
    position:relative;
    display:flex;
    align-items:flex-end;
    border-radius:4px;
    overflow:hidden;
}

.stunDolgu{
    width:100%;
    transition:0.5s;
}

.stunDeger{
    font-size:12px;
    margin-bottom:5px;
}

.stunEtiket{
    margin-top:5px;
    font-size:12px;
}

